* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, Arial, sans-serif;
  background: #f5f5f7;
  color: #222;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

:root {
  --orange: #ff7a00;
  --orange-dark: #e66300;
  --radius: 18px;
  --shadow: 0 10px 28px rgba(0,0,0,0.10);
  --max-width: 1100px;
}


.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}


header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}

.topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 0;
}

.logo-area img {
  height: 25px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: #555;
  font-size: .9rem;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: .2s;
}

nav a:hover::after {
  width: 100%;
}


section {
  padding: 2.5rem 0;
}

.sec-titulo {
  font-size: 1.4rem;
  margin-bottom: .4rem;
}

.sec-subtitulo {
  font-size: .9rem;
  color: #555;
  margin-bottom: 1.4rem;
}

#banner {
  background: linear-gradient(135deg, #fff, #f1f1f6);
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid #ddd;
}

.banner-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 850px) {
  .banner-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

.banner-text h1 {
  font-size: clamp(2rem, 2.8vw + 1.4rem, 2.8rem);
  margin-bottom: .8rem;
}

.banner-text h1 span {
  color: var(--orange);
}

.banner-text p {
  max-width: 32rem;
  font-size: .95rem;
  color: #555;
  margin-bottom: 1.4rem;
}

.banner-cta {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

.banner-extra {
  font-size: .8rem;
  color: #666;
}


.btn {
  padding: .6rem 1.4rem;
  font-size: .9rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  border: none;
  display: inline-block;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-outline {
  border: 1px solid #bbb;
  color: #555;
}


#destaques {
  background: #f1f1f6;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.destaques-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 850px) {
  .destaques-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


.card-link {
  display: block;
}


.destaque-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}


.card-link:hover .destaque-card {
  transform: translateY(-6px);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.15),
    0 0 0 2px rgba(255,122,0,0.30);
}


.card-link:active .destaque-card {
  transform: scale(0.98);
}


.destaque-img {
  width: 100%;
  aspect-ratio: 14 / 8;
  overflow: hidden;
}

.destaque-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.destaque-titulo {
  padding: .6rem 1rem .2rem;
  font-weight: 600;
}

.destaque-texto {
  padding: 0 1rem 1rem;
  font-size: .9rem;
  color: #555;
}


.cards-grid {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 850px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card-servico {
  background: #fff;
  padding: 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-servico h3 {
  margin: .4rem 0;
  font-size: 1rem;
}

.card-servico p {
  font-size: .85rem;
  color: #555;
}

.tag {
  background: #fff3e8;
  color: #9b4a00;
  padding: .2rem .6rem;
  border-radius: 999px;
  font-size: .75rem;
}


#contato {
  background: #f1f1f6;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.contato-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .contato-grid {
    grid-template-columns: 1.3fr 1fr;
  }
}

.contato-card {
  background: #fff;
  padding: 1.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contato-linha {
  margin-bottom: .4rem;
  font-size: .9rem;
}

.contato-linha strong {
  width: 90px;
  display: inline-block;
  color: #333;
}


#sobre p {
  font-size: .95rem;
  color: #555;
  max-width: 650px;
}


footer {
  padding: 1.2rem 0;
  text-align: center;
  font-size: .85rem;
  color: #666;
}
