:root {
  --bg: #ffffff;
  --primary: #8ec2dc;        /* Azul principal atualizado */
  --primary-hover: #74b1c9;  /* Hover mais escuro */
  --muted: #4b5563;
  --light: #f9fafb;
  --radius: 12px;
  --container: 1200px;
  font-family: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--bg); color: #111; line-height: 1.5; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 1rem; }

/* NAV */
.nav {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .40rem 0;
}
.brand img {
  height: 140px; /* logo maior */
  transition: transform .2s ease;
}
.brand img:hover { transform: scale(1.05); }
.menu { display: flex; gap: 1.5rem; }
.menu a {
  text-decoration: none;
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 500;
  transition: color .2s ease;
}
.menu a:hover { color: var(--primary); }
.menu-toggle { display: none; background: none; border: 0; font-size: 1.5rem; cursor: pointer; }

/* HERO */
.hero {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--light), transparent);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 2rem;
  align-items: center;
}
.hero h1 {
  font-size: 2.8rem;
  margin: 0 0 1rem;
  line-height: 1.2;
}
.eyebrow {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: .25rem;
  text-transform: uppercase;
  font-size: .9rem;
}
.lead { max-width: 45ch; margin-bottom: 1.5rem; color: var(--muted); }
.italics { font-style: italic; color: var(--primary); }
.hero-cta { display: flex; gap: 1rem; }
.btn {
  background: var(--primary);
  color: #fff;
  padding: .6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s ease;
}
.btn:hover { background: var(--primary-hover); }
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.hero-media img {
  width: 75%;
  border-radius: var(--radius);bom bom
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  background: transparent; /* garante que não haja fundo definido pelo CSS */
}

/* FOOTER */
.footer {
  background: #0b1724;
  color: #fff;
  padding: 2rem 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 2rem;
  margin-bottom: 1rem;
}
.footer-brand img {
  height: 130px; /* logo maior */
  margin-bottom: .75rem;
}
.footer p { color: rgba(255,255,255,0.85); font-size: .95rem; }
.footer-links h5 {
  font-size: 1rem;
  margin-bottom: .5rem;
  color: #fff;
}
.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .3rem; }
.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem; /* espaço entre ícone e texto */
}
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  text-align: center;
  padding-top: .75rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: .85rem;
  color: rgba(255,255,255,0.7);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-cta { justify-content: center; }
  .menu {
    position: absolute;
    top: 70px; right: 1rem;
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    flex-direction: column;
    display: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  }
  .menu.open { display: flex; }
  .menu-toggle { display: inline-block; }
}

.section {
  padding: 4rem 0;
  text-align: center;
}
.section-title {
  font-size: 2rem;
  margin-bottom: .5rem;
  color: var(--primary);
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform .2s ease;
}
.card:hover {
  transform: translateY(-4px);
}
.card-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.card h2 {
  font-size: 1.4rem;
  margin-bottom: .5rem;
}
.card p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* MISSÃO & VISÃO */
.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem auto;
}
.mv-card {
  padding: 2rem;
  border-radius: var(--radius);
  color: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}
.mv-card h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.mission {
  background: var(--primary);
}
.vision {
  background: #0b1724;
}

/* QUEM SOU */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  align-items: center;
  margin: 3rem auto;
}
.about-text p {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}
.about-img img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-img {
    margin-top: 1.5rem;
  }
}

/* SERVIÇOS EM ESTILO DE CARDS DESTACADOS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem auto;
}

.service-card.highlight {
  padding: 2rem;
  border-radius: var(--radius);
  color: #fff;
  text-align: center;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
  transition: transform .2s ease;
}

.service-card.highlight i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card.highlight h2 {
  margin-bottom: .75rem;
  font-size: 1.4rem;
}

.service-card.highlight p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Alternar cores entre cards para destaque */
.service-card.highlight {
  background: var(--primary);
}
.service-card.highlight.alt {
  background: #0b1724;
}

/* Hover */
.service-card.highlight:hover {
  transform: translateY(-5px);
}

/* CONTATO */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: .8rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  align-self: flex-start;
}

.contact-whatsapp {
  background: #f9fafb;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 6px 14px rgba(0,0,0,0.05);
}

.contact-whatsapp h3 {
  margin-bottom: 1rem;
}

.contact-whatsapp p {
  margin-bottom: 1.5rem;
  color: var(--muted);
}

/* Responsivo */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-whatsapp {
    margin-top: 2rem;
  }
}

#contato {
     padding: 40px 20px;
     background: #f9f9f9;
   }

   .contact-options {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 30px;
     max-width: 900px;
     margin: 0 auto;
     text-align: center;
   }

   .contact-box {
     background: #fff;
     padding: 30px 20px;
     border-radius: 10px;
     box-shadow: 0 2px 6px rgba(0,0,0,0.1);
   }

   .contact-box h3 {
     margin-bottom: 10px;
     font-size: 22px;
   }

   .contact-box p {
     margin-bottom: 20px;
     color: #555;
   }

   .btn {
     display: inline-block;
     padding: 12px 25px;
     border-radius: 6px;
     text-decoration: none;
     font-size: 18px;
     transition: background 0.3s, color 0.3s;
   }

   .btn-email {
     background: #333;
     color: #fff;
   }

   .btn-email:hover {
     background: #555;
   }

   .btn-whatsapp {
     background: #25d366;
     color: #fff;
   }

   .btn-whatsapp:hover {
     background: #1ebf5a;
   }

   @media(max-width: 768px) {
     .contact-options {
       grid-template-columns: 1fr;
     }
   }

   /* HERO refinado */
.hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, #eaf6fb 0%, #ffffff 100%);
}
.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0b1724;
}
.hero-text .eyebrow {
  display: block;
  font-size: 1rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: .5rem;
}
.trust-text {
  margin-top: 1rem;
  font-size: .95rem;
  color: #4b5563;
  display: flex;
  align-items: center;
  gap: .4rem;
}

/* Prova social */
.proof {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}
.proof h2 {
  font-size: 1.8rem;
  margin-bottom: .5rem;
}
.proof h2 span {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}
.proof p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* CTA final */
.cta-section {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #0b1724 0%, #1d2b3c 100%);
  color: #fff;
}
.cta-section h2 {
  font-size: 2rem;
  margin-bottom: .5rem;
}
.cta-section p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.btn-big {
  background: var(--primary);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn-big:hover {
  background: var(--primary-hover);
  transform: scale(1.03);
}

/* Botão principal */
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-hover);
}
.caption {
  margin-top: .75rem;
  font-size: .9rem;
  color: #555;
}

/* --- Ajustes do Hero / Grid Responsivo --- */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;  /* passa para uma coluna só */
    text-align: center;
  }
  .hero-media {
    margin-top: 2rem;
  }
  .hero-cta {
    justify-content: center;
  }
}

/* Limitar a largura da imagem para não esticar demais */
.hero-media img {
  width: 100%;
  max-width: 350px;
  height: auto;
  object-fit: cover;
}

/* --- Botões e CTA alinhamento --- */
.hero-cta {
  display: flex;
  gap: 1rem;
}
@media (max-width: 500px) {
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }
}

/* --- Seção de “Prova Social” / “Proof” --- */
.proof {
  padding: 3rem 1rem;  /* dar espaçamento nas laterais */
}
@media (max-width: 768px) {
  .proof h2 {
    font-size: 1.5rem;
  }
  .proof p {
    font-size: 1rem;
  }
}

/* --- Tratamentos / Serviços --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* --- Seção final de CTA --- */
.cta-section {
  padding: 3rem 1rem;
}
.cta-section h2 {
  font-size: 1.8rem;
}
.cta-section p {
  font-size: 1rem;
}
.btn-big {
  display: inline-block;
  margin-top: 1rem;
}

/* --- Footer / Rodapé --- */
.footer-grid {
  gap: 1.5rem;
  padding-bottom: 1rem;
}
.footer-links ul {
  padding: 0;
}
.footer-links ul li {
  margin-bottom: .5rem;
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-links {
    margin-top: 1.5rem;
  }
}

/* --- Garantir que nenhum elemento ultrapasse o container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
  overflow: hidden; /* evita que elementos “escapem” das bordas em casos extremos */
}
