/* ===========================
   VARIABLES & RESET
   =========================== */
:root {
  /* Blues */
  --blue-900: #0b1d33;
  --blue-800: #102a4a;
  --blue-700: #163d6b;
  --blue-600: #1b5190;
  --blue-500: #2471b8;
  --blue-400: #4a94d0;
  --blue-300: #7bb5e0;
  --blue-200: #b0d4f1;
  --blue-100: #ddeaf7;
  --blue-50:  #f0f6fc;

  /* Teal / Greenish */
  --teal-700: #0f4f4f;
  --teal-600: #177a7a;
  --teal-500: #1fa3a3;
  --teal-400: #3ec4c4;
  --teal-300: #7dd9d9;
  --teal-200: #b2e8e8;
  --teal-100: #daf5f5;

  /* Gold */
  --gold-600: #9a7a2e;
  --gold-500: #c9a84c;
  --gold-400: #d4b96a;
  --gold-300: #e0cb8e;
  --gold-200: #eeddb5;
  --gold-100: #f7efda;

  /* Neutrals */
  --white:    #ffffff;
  --gray-50:  #f8fafb;
  --gray-100: #eef1f4;
  --gray-200: #d8dde3;
  --gray-400: #8e99a6;
  --gray-600: #4b5563;
  --gray-800: #1f2937;

  /* Functional */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --radius:       12px;
  --radius-sm:    8px;
  --shadow:       0 4px 24px rgba(11,29,51,.08);
  --shadow-lg:    0 12px 48px rgba(11,29,51,.12);
  --transition:   .3s ease;
}

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

html { 
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

.container {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.gold { color: var(--gold-500); }


/* ===========================
   HEADER
   =========================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  width: 100%;
  background: rgba(11,29,51,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .5px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.logo span { color: var(--gold-400); }

/* Hide logo when in Hero section */
.header.in-hero .logo {
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none;
}

.nav {
  display: flex;
  gap: 32px;
}
.nav a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .3px;
  transition: color var(--transition);
}
.nav a:hover { color: var(--gold-400); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ===========================
   HERO / BACKGROUND ESTATICO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Hero background */
.hero__background {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: 
    linear-gradient(135deg, rgba(11,29,51,0.92) 0%, rgba(15,79,79,0.85) 100%),
    url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?q=80&w=2000') center/cover no-repeat;
  /* Background genérico de área médica/saúde mental - sem licença (Unsplash) */
}

/* Hero overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(
    135deg,
    rgba(11,29,51,.78) 0%,
    rgba(15,79,79,.55) 100%
  );
}

/* Two-column grid */
.hero__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
}

.hero__text h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero__logo-text {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .5px;
  margin-bottom: 24px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero__logo-rm {
  color: var(--gold-400);
}

.hero__form-wrap {
  width: 100%;
}

.hero__subtitle {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

/* Hero highlights */
.hero-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.9);
  font-size: .92rem;
  font-weight: 500;
}

.hi-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold-400);
}

/* Form trust text */
.form-trust {
  text-align: center;
  margin-top: 12px;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}

/* Device-specific visibility */
.form-group--phone         { display: none; }
.form-trust--desktop       { display: none; }
.btn-icon-email            { display: none; }

.is-desktop .form-group--phone   { display: block; }
.is-desktop .form-trust--mobile  { display: none; }
.is-desktop .form-trust--desktop { display: block; }

/* Mobile: sempre WhatsApp */
.is-mobile .btn-icon-whatsapp { display: inline; }
.is-mobile .btn-icon-email { display: none; }
.is-mobile .btn--whatsapp { background: #25D366; }
.is-mobile .btn--whatsapp:hover { background: #1ebe5a; }
.is-mobile .btn--email { background: #25D366; }
.is-mobile .btn--email:hover { background: #1ebe5a; }

/* Desktop: por padrão Email, mas pode ser alterado via JS */
.is-desktop .btn-icon-whatsapp { display: none; }
.is-desktop .btn-icon-email { display: inline; }

/* Quando desktop tem classe btn--whatsapp, mostra ícone WhatsApp */
.is-desktop .btn--whatsapp .btn-icon-whatsapp { display: inline; }
.is-desktop .btn--whatsapp .btn-icon-email { display: none; }

/* Quando desktop tem classe btn--email, mostra ícone Email */
.is-desktop .btn--email .btn-icon-email { display: inline; }
.is-desktop .btn--email .btn-icon-whatsapp { display: none; }

/* Hero Form */
.hero-form {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 28px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  color: rgba(255,255,255,.9);
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.form-group label small { opacity: .6; }

.form-label {
  display: block;
  color: rgba(255,255,255,.9);
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--gray-800);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal-400);
  box-shadow: 0 0 0 3px rgba(62,196,196,.25);
}
.form-group textarea { resize: vertical; }

/* Contact method options - only visible on desktop */
.form-group--contact-method {
  display: none;
}

.is-desktop .form-group--contact-method {
  display: block;
}

.contact-options {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.contact-option {
  flex: 1;
  cursor: pointer;
  position: relative;
}

.contact-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.contact-option-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-option-content svg {
  flex-shrink: 0;
}

.contact-option input[type="radio"]:checked + .contact-option-content {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--teal-400);
  color: var(--blue-800);
  box-shadow: 0 0 0 3px rgba(62, 196, 196, 0.2);
}

.contact-option:hover .contact-option-content {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.contact-option input[type="radio"]:checked + .contact-option-content:hover {
  background: rgba(255, 255, 255, 1);
}


/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 14px 28px;
  transition: var(--transition);
}

.btn--whatsapp {
  width: 100%;
  background: #25D366;
  color: var(--white);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.btn--whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}

.btn--email {
  width: 100%;
  background: var(--blue-600);
  color: var(--white);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.btn--email:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(27,81,144,.35);
}

.btn--cta {
  background: var(--gold-500);
  color: var(--white);
  font-size: 1.1rem;
  padding: 16px 40px;
  border-radius: var(--radius);
}
.btn--cta:hover {
  background: var(--gold-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.3);
}

.btn--secondary {
  background: var(--teal-500);
  color: var(--white);
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius);
}
.btn--secondary:hover {
  background: var(--teal-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(31,163,163,.3);
}


/* ===========================
   SECTIONS (general)
   =========================== */
.section {
  padding: 100px 0;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  text-align: center;
  margin-bottom: 16px;
  color: var(--blue-800);
}

.section__intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
  color: var(--gray-600);
  font-size: 1.05rem;
}


/* ===========================
   SOBRE
   =========================== */
.sobre { background: var(--gray-50); }

.sobre-destaques {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.destaque-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold-400);
  transition: transform var(--transition), box-shadow var(--transition);
}
.destaque-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.destaque-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.destaque-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--blue-700);
  margin-bottom: 8px;
}

.destaque-card p {
  color: var(--gray-600);
  font-size: .92rem;
  line-height: 1.6;
}


/* ===========================
   CLÍNICAS PARCEIRAS
   =========================== */
.clinicas { background: var(--white); }

.clinicas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.clinica-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-200);
}
.clinica-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.clinica-image-slider {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--gray-100);
}

.slider-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease-in-out;
}

.slider-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-800);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
  left: 12px;
}

.slider-btn-next {
  right: 12px;
}

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.slider-dot.active {
  background: var(--white);
  width: 24px;
  border-radius: 4px;
}

.clinica-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--gray-100);
}
.clinica-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.clinica-card:hover .clinica-image img {
  transform: scale(1.05);
}

.clinica-content {
  padding: 28px;
}

.clinica-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--blue-800);
  margin-bottom: 10px;
}

.clinica-location {
  font-size: .95rem;
  color: var(--gray-600);
  margin-bottom: 14px;
  font-weight: 500;
}

.clinica-description {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.clinica-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.clinica-features li {
  padding: 8px 0;
  color: var(--gray-700);
  font-size: .95rem;
  border-bottom: 1px solid var(--gray-100);
}
.clinica-features li:last-child {
  border-bottom: none;
}

.clinicas-cta {
  text-align: center;
  padding: 40px 20px;
  background: var(--blue-50);
  border-radius: var(--radius);
}

.clinicas-cta p {
  font-size: 1.05rem;
  color: var(--gray-700);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


/* ===========================
   DIFERENCIAIS — Features Grid
   =========================== */
.diferenciais { background: var(--gray-50); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--teal-400);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--blue-700);
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--gray-600);
  font-size: .92rem;
  line-height: 1.6;
}


/* ===========================
   EQUIPE — Team Grid
   =========================== */
.equipe { background: var(--white); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.team-card {
  text-align: center;
  background: var(--blue-50);
  border-radius: var(--radius);
  padding: 36px 24px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-avatar {
  width: 120px; height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold-400);
}
.team-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--blue-800);
  margin-bottom: 4px;
}

.team-role {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal-600);
  margin-bottom: 12px;
}

.team-card p {
  color: var(--gray-600);
  font-size: .9rem;
}

.team-card--featured {
  background: linear-gradient(135deg, var(--blue-100) 0%, var(--teal-100) 100%);
  border: 2px solid var(--gold-300);
}


/* ===========================
   VERSÍCULO
   =========================== */
.versiculo {
  background: var(--blue-50);
  padding: 80px 0;
}

.versiculo__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.versiculo__inner blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-style: italic;
  color: var(--blue-700);
  line-height: 1.6;
  margin-bottom: 16px;
}

.versiculo__inner cite {
  font-style: normal;
  font-weight: 600;
  color: var(--gold-600);
  font-size: 1rem;
}


/* ===========================
   DEPOIMENTOS
   =========================== */
.depoimentos { background: var(--gray-50); }

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.depoimento-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--teal-400);
  transition: transform var(--transition), box-shadow var(--transition);
}
.depoimento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.depoimento-texto {
  font-style: italic;
  font-size: 1rem;
  color: var(--gray-800);
  line-height: 1.7;
  margin-bottom: 16px;
}

.depoimento-autor {
  font-weight: 600;
  font-size: .85rem;
  color: var(--gold-600);
}


/* ===========================
   CTA
   =========================== */
.cta {
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--teal-700) 100%);
  text-align: center;
}

.cta__inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta__inner p {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 36px;
}


/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--blue-900);
  padding: 28px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__inner p {
  color: rgba(255,255,255,.5);
  font-size: .85rem;
}

.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold-400); }


/* ===========================
   FAB WHATSAPP
   =========================== */
.fab-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  opacity: 0;
  transform: scale(0.6);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .2s ease;
}

/* Ícones do FAB */
.fab-icon-chat { display: none; }

.is-desktop .fab-whatsapp {
  background: var(--blue-600);
  box-shadow: 0 4px 16px rgba(27,81,144,.4);
}

.is-desktop .fab-icon-whatsapp { display: none; }
.is-desktop .fab-icon-chat { display: block; }

.fab-whatsapp.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.fab-whatsapp:hover {
  background: #1ebe5a;
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
}

.is-desktop .fab-whatsapp:hover {
  background: var(--blue-700);
  box-shadow: 0 6px 24px rgba(27,81,144,.5);
}


/* ===========================
   SCROLL REVEAL ANIMATION
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}


/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero__form-wrap {
    max-width: 480px;
  }
  
  .clinicas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    width: 100vw;
    max-width: 100%;
  }

  .nav {
    position: fixed;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: rgba(11,29,51,.95);
    backdrop-filter: blur(12px);
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
  }
  .nav.open { max-height: 260px; }
  .nav a {
    padding: 16px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  .nav-toggle { display: flex; }

  /* Hero — let content define height, not viewport */
  .hero {
    min-height: auto;
    position: relative;
    width: 100%;
    left: 0;
    right: 0;
  }

  .hero__background {
    top: 0;
  }

  .hero__overlay {
    position: relative;
    inset: auto;
    padding: 90px 0 48px;
    z-index: 2;
    width: 100%;
  }

  /* Filtro opaco sobre o background */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(11,29,51,.85) 0%,
      rgba(15,79,79,.75) 100%
    );
    z-index: 1;
  }

  .hero__grid {
    gap: 24px;
    width: 100%;
  }
  
  .clinica-image-slider {
    height: 200px;
  }

  .hero__text { 
    width: 100%;
  }

  .hero__text h1 { font-size: 1.6rem; }
  .hero__subtitle { font-size: .92rem; }

  .hero__form-wrap {
    max-width: 100%;
    width: 100%;
  }

  .hero-form { 
    padding: 20px;
    width: 100%;
  }

  .section { padding: 64px 0; }

  .features-grid { grid-template-columns: 1fr; }
  .sobre-destaques { grid-template-columns: 1fr; }
  .clinicas-grid { grid-template-columns: 1fr; }
  .depoimentos-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .section__title { font-size: 1.4rem; }
  .section__intro { font-size: .92rem; margin-bottom: 36px; }

  .cta__inner h2 { font-size: 1.4rem; }
  .cta__inner p { font-size: .95rem; }

  .versiculo { padding: 56px 0; }
  .versiculo__inner blockquote { font-size: 1rem; }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  body {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .team-grid { grid-template-columns: 1fr; }
  .hero-highlights { flex-direction: column; gap: 8px; }
  .hero__text h1 { font-size: 1.4rem; }
  .container { 
    padding: 0 16px;
    width: 100%;
    max-width: 100%;
  }

  .btn--cta { padding: 14px 28px; font-size: 1rem; }
}
