@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* =============================================
   ROOT — Design Tokens
   ============================================= */
:root {
  --navy:    #1F3654;
  --slate:   #5F748D;
  --sand:    #CFC4B2;
  --sand-lt: #E8E1D5;
  --off:     #F8F6F2;
  --gray-bg: #EEF1F4;
  --text:    #2F343A;
  --white:   #FFFFFF;

  --navy-5:  rgba(31,54,84,0.05);
  --navy-10: rgba(31,54,84,0.10);
  --navy-20: rgba(31,54,84,0.20);
  --sand-20: rgba(207,196,178,0.20);
  --sand-40: rgba(207,196,178,0.40);

  --wa-green:      #25D366;
  --wa-green-dark: #1EA854;

  --f-sans:  'Plus Jakarta Sans', sans-serif;
  --f-serif: 'Cormorant Garamond', serif;

  --ease:     cubic-bezier(0.25, 0.8, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:  0.18s var(--ease);
  --t-med:   0.35s var(--ease);
  --t-slow:  0.55s var(--ease-out);

  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-xl:   32px;
  --r-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(31,54,84,0.06);
  --shadow-md: 0 8px 24px rgba(31,54,84,0.09);
  --shadow-lg: 0 20px 50px rgba(31,54,84,0.12);
  --shadow-xl: 0 30px 70px rgba(31,54,84,0.15);
}

/* =============================================
   RESET
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img, video { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { text-decoration: none; }

body {
  font-family: var(--f-sans);
  color: var(--text);
  background: var(--off);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
.t-label {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
}

/* Headings: geometric, regular weight */
.t-display {
  font-family: var(--f-sans);
  font-weight: 400;
  line-height: 1.1;
  color: var(--navy);
}

/* Serif italic: no bold — weight 400 */
.t-display em,
.serif-italic {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--slate);
}

.t-display--lg { font-size: clamp(2.6rem, 5.5vw, 4.5rem); }
.t-display--md { font-size: clamp(2rem, 3.8vw, 3rem); }
.t-display--sm { font-size: clamp(1.5rem, 2.4vw, 2.2rem); }

.t-heading {
  font-family: var(--f-sans);
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
}

.t-body { font-size: clamp(0.95rem, 1.1vw, 1.05rem); font-weight: 400; line-height: 1.75; }
.t-body--sm { font-size: 0.88rem; line-height: 1.65; }
p, li, .testimony-card__quote, .doubt-card__q {
  text-wrap: pretty;
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.container--narrow { max-width: 800px; }

section { padding-block: clamp(80px, 10vw, 130px); }

/* =============================================
   REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =============================================
   BUTTONS — all CTAs use WhatsApp green
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--f-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  border-radius: var(--r-full);
  transition: transform var(--t-med), box-shadow var(--t-med), background var(--t-med), color var(--t-med);
  white-space: nowrap;
  cursor: pointer;
}
.btn .fa-whatsapp { font-size: 1.25em; line-height: 1; }

.btn--primary {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37,211,102,0.28);
}
.btn--primary:hover {
  background: var(--wa-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.38);
}

.btn--outline {
  background: transparent;
  color: var(--wa-green-dark);
  border: 2px solid var(--wa-green);
}
.btn--outline:hover {
  background: var(--wa-green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost-light {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn--ghost-light:hover {
  background: var(--wa-green);
  border-color: var(--wa-green);
  transform: translateY(-2px);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 18px var(--navy-20);
}
.btn--navy:hover {
  background: #172A44;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--navy-20);
}

.btn--sand {
  background: var(--sand);
  color: var(--navy);
  box-shadow: 0 4px 18px rgba(207,196,178,0.28);
}
.btn--sand:hover {
  background: #C4B7A3;
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(207,196,178,0.38);
}

.btn--lg { padding: 18px 40px; font-size: 0.98rem; }

/* =============================================
   HEADER
   ============================================= */
#main-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  padding-block: 18px;
  transition: background var(--t-med), padding var(--t-med), box-shadow var(--t-med);
}
#main-header.scrolled {
  background: rgba(248,246,242,0.93);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  padding-block: 12px;
  box-shadow: 0 1px 0 var(--navy-10), var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 18px; /* 13px * 1.4 = 18.2px */
  transition: gap var(--t-med);
}
.logo__img {
  width: 67px; /* 48px * 1.4 = 67.2px */
  height: 67px;
  border-radius: var(--r-full);
  object-fit: cover;
  border: 2px solid var(--sand);
  transition: border-color var(--t-fast), transform var(--t-fast), width var(--t-med), height var(--t-med);
}
.logo:hover .logo__img { border-color: var(--navy); transform: scale(1.04); }
.logo__text { display: flex; flex-direction: column; line-height: 1.2; }
.logo__name {
  font-size: 1.4rem; /* 1rem * 1.4 */
  font-weight: 700;
  color: var(--navy);
  transition: font-size var(--t-med);
}
.logo__crm {
  font-size: 1.01rem; /* 0.72rem * 1.4 = 1.008rem */
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.03em;
  margin-top: 2px;
  transition: font-size var(--t-med);
}

/* Scrolled header overrides */
#main-header.scrolled .logo {
  gap: 13px;
}
#main-header.scrolled .logo__img {
  width: 48px;
  height: 48px;
}
#main-header.scrolled .logo__name {
  font-size: 1rem;
}
#main-header.scrolled .logo__crm {
  font-size: 0.72rem;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  font-size: 0.875rem; font-weight: 500;
  color: var(--text); padding: 6px 12px;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  opacity: 0.75;
}
.nav__link:hover { color: var(--navy); background: var(--navy-5); opacity: 1; }

/* Top Bar Location Badge */
.header__location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--navy-5);
  border: 1px solid var(--sand);
  border-radius: var(--r-full);
  font-family: var(--f-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-med);
  margin-left: 10px;
}
.header__location:hover {
  background: var(--navy-10);
  border-color: var(--navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.header__location .location-pin {
  color: var(--sand);
  font-size: 0.95rem;
  animation: pin-bounce 2s ease-in-out infinite;
}
@keyframes pin-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; padding: 4px;
}
.menu-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--navy); border-radius: 2px;
  transition: var(--t-med); transform-origin: center;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

@media (max-width: 960px) {
  .menu-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 0 -100% 0 auto;
    width: min(320px, 85vw);
    flex-direction: column; align-items: flex-start; gap: 4px;
    padding: 100px 28px 40px;
    background: var(--off);
    box-shadow: -20px 0 60px var(--navy-10);
    transition: right var(--t-slow);
    overflow-y: auto;
  }
  .nav.active { right: 0; }
  .nav__link { font-size: 1.1rem; padding: 10px 6px; width: 100%; opacity: 1; }
  .header__location {
    margin-left: 0;
    margin-top: 16px;
    width: 100%;
    justify-content: center;
  }
}

/* =============================================
   HERO — light background, photo right (full height), soft gradient
   ============================================= */
.hero {
  position: relative;
  background: var(--off);
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Full-height photo anchored to the right */
.hero__photo {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  display: block;
  pointer-events: none;
  user-select: none;
  /* Fade the photo's own left edge — eliminates hard border regardless of viewport */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 8%, rgba(0,0,0,1) 20%);
          mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 8%, rgba(0,0,0,1) 20%);
}

/* Soft gradient — left opaque (matches bg), fades to transparent right */
.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--off)                     0%,
    var(--off)                     30%,
    rgba(248, 246, 242, 0.88)      44%,
    rgba(248, 246, 242, 0.55)      56%,
    rgba(248, 246, 242, 0.18)      68%,
    rgba(248, 246, 242, 0)         80%
  );
  pointer-events: none;
  z-index: 2;
}

.hero__container {
  position: relative;
  z-index: 3;
}

/* ── Spotlight reveal ── */
.hero__spotlight {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  will-change: -webkit-mask-image, mask-image;
}

/* Matches hero__photo geometry exactly: right-anchored, full height, left-fade mask */
.hero__spotlight-img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  display: block;
  pointer-events: none;
  filter: url(#hero-duotone);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 8%, rgba(0,0,0,1) 20%);
          mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 8%, rgba(0,0,0,1) 20%);
}

.hero__content {
  max-width: 590px;
  padding-top: clamp(55px, 6.5vw, 85px);
  padding-bottom: clamp(35px, 4.5vw, 55px);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero__eyebrow-line { width: 32px; height: 1px; background: var(--sand); }

.hero__title {
  margin-bottom: 24px;
  /* Cap font size so h1 never breaks past 3 lines on desktop */
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
}
.hero__title em {
  font-size: 1.25em;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  vertical-align: baseline;
}

/* Dark text on light bg */
.hero .t-display        { color: var(--navy); }
.hero .t-display em     { color: var(--slate); }

.hero__lead {
  font-size: clamp(0.98rem, 1.1vw, 1.05rem);
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  opacity: 0.8;
  max-width: 500px;
  margin-bottom: 32px;
}

.hero__checklist {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 36px;
}
.hero__checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}
.hero__check-dot {
  width: 20px; height: 20px;
  border-radius: var(--r-full);
  background: rgba(37,211,102,0.1);
  border: 1.5px solid rgba(37,211,102,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--wa-green-dark);
  font-size: 0.58rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }

.hero__meta {
  font-size: 0.78rem; font-weight: 500;
  color: var(--slate);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.hero__meta-sep { width: 3px; height: 3px; background: var(--sand); border-radius: 50%; flex-shrink: 0; }

@media (max-width: 768px) {
  .hero__photo { display: none; }
  .hero__gradient { display: none; }
  .hero__spotlight { display: none; }
  .hero { background: var(--off); }
}

/* =============================================
   STRIP — Trust bar
   ============================================= */
.strip { background: var(--navy); overflow: hidden; }

.strip__inner {
  display: flex;
  align-items: stretch;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.strip__item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background var(--t-med);
}
.strip__item:last-child { border-right: none; }
.strip__item:hover { background: rgba(255,255,255,0.04); }

/* Serif italic, regular weight (no bold) */
.strip__num {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.6rem, 4vw, 3.5rem);
  color: var(--sand);
  line-height: 1;
  margin-bottom: 6px;
}

.strip__lbl {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 680px) {
  .strip__inner { flex-wrap: wrap; }
  .strip__item { flex: 1 1 50%; border-bottom: 1px solid rgba(255,255,255,0.07); }
}


/* =============================================
   STRUGGLE / O CICLO DA OBESIDADE
   ============================================= */
.struggle {
  background: var(--white);
}

.struggle__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.struggle__card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: clamp(30px, 4vw, 50px);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.struggle__card::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207,196,178,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.struggle__card-title {
  font-family: var(--f-sans);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 30px;
  color: var(--white);
}

.struggle__card-title em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--sand);
}

.struggle__timeline {
  display: grid;
  gap: 24px;
  margin-bottom: 34px;
}

.struggle__step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.struggle__step-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.struggle__step-content {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.struggle__step-content strong {
  color: var(--white);
  font-weight: 600;
}

.struggle__card-question {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
}

.struggle__card-question p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
}

.struggle__card-question strong {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--sand);
}

.struggle__verdict {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 24px;
}

.struggle__explanation {
  display: grid;
  gap: 18px;
  margin-bottom: 36px;
}

.struggle__explanation p {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.75;
  opacity: 0.85;
}

.struggle__explanation p strong {
  color: var(--navy);
  font-weight: 600;
}

.struggle__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 900px) {
  .struggle__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}


/* =============================================
   SECTION HEADER
   ============================================= */
.section-header { margin-bottom: clamp(48px, 6vw, 80px); }
.section-header--center { text-align: center; }

.section-header__label { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.section-header__line  { width: 28px; height: 1px; background: var(--sand); }
.section-header__title { margin-bottom: 16px; }
.section-header__lead  { max-width: 560px; font-weight: 400; opacity: 0.78; }
.section-header--center .section-header__lead { margin-inline: auto; }

/* =============================================
   IMC CALCULATOR
   ============================================= */
.imc { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.imc::before {
  content: '';
  position: absolute; right: -10%; top: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(95,116,141,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.imc__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.imc__info-title { font-size: clamp(1.8rem,3.2vw,2.8rem); line-height: 1.15; margin-bottom: 22px; color: var(--white); }
.imc__info-body  { line-height: 1.75; color: rgba(255,255,255,0.7); }

.imc__card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.imc__card-title {
  font-size: 1rem; font-weight: 700; color: var(--white);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
}
.imc__card-icon {
  width: 34px; height: 34px; background: rgba(255, 255, 255, 0.08); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--sand); font-size: 0.9rem; flex-shrink: 0;
}

.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7); margin-bottom: 8px;
}
.field__wrap { position: relative; }
.field input {
  width: 100%;
  padding: 15px 54px 15px 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-md);
  font-family: var(--f-sans); font-size: 1.1rem; font-weight: 500;
  color: var(--white); background: rgba(255, 255, 255, 0.05);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  outline: none;
}
.field input:focus {
  border-color: var(--sand); background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(207, 196, 178, 0.2);
}
.field input::placeholder { color: rgba(255, 255, 255, 0.25); font-weight: 400; }
.field__unit {
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6); pointer-events: none;
}

.imc__submit { width: 100%; padding: 16px; margin-top: 8px; font-size: 0.95rem; border-radius: var(--r-md); }

.imc__result {
  margin-top: 24px; padding: 24px;
  border-radius: var(--r-md); background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: none;
  animation: slideUp 0.4s var(--ease-out) forwards;
}
.imc__result.active { display: block; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.imc__result-num {
  font-family: var(--f-sans); font-size: 2.8rem; font-weight: 700;
  color: var(--white); line-height: 1; margin-bottom: 8px;
}
.imc__badge {
  display: inline-block; padding: 4px 14px;
  border-radius: var(--r-full);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 14px;
}
.imc-abaixo    { background: #EBF5FC; color: #1A5E9A; }
.imc-normal    { background: #EBF7EF; color: #1A7A46; }
.imc-sobrepeso { background: #FDF4E7; color: #B05F00; }
.imc-ob1       { background: #FDECEC; color: #C02020; }
.imc-ob2       { background: #FADDDD; color: #A31A1A; }
.imc-ob3       { background: var(--navy); color: var(--sand); }

.imc__result-msg { font-size: 0.9rem; line-height: 1.65; color: rgba(255,255,255,0.8); margin-bottom: 18px; }

@media (max-width: 860px) { .imc__grid { grid-template-columns: 1fr; } }

/* =============================================
   DOUBT CARDS
   ============================================= */
.doubts { background: var(--off); }

.doubts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

@media (max-width: 640px) {
  .doubts__grid { grid-template-columns: 1fr; }
}

.doubt-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 34px 30px; border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t-med), transform var(--t-med), box-shadow var(--t-med);
  position: relative; overflow: hidden;
}
.doubt-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--wa-green) 0%, var(--slate) 100%);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-med);
}
.doubt-card:hover::before { transform: scaleX(1); }
.doubt-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sand-20); }

.doubt-card__q {
  font-family: var(--f-serif);
  font-style: italic; font-weight: 400;
  font-size: 1.25rem; color: var(--navy);
  line-height: 1.35; margin-bottom: 14px;
}
.doubt-card__a { font-size: 0.9rem; line-height: 1.65; opacity: 0.75; }

.factors { text-align: center; max-width: 640px; margin-inline: auto; }
.factors__title { font-size: 0.95rem; font-weight: 500; opacity: 0.65; margin-bottom: 18px; }
.factors__tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 34px; }
.factors__tag {
  padding: 8px 18px; border-radius: var(--r-full);
  background: var(--gray-bg); border: 1px solid var(--sand-lt);
  font-size: 0.84rem; font-weight: 500; color: var(--navy);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.factors__tag:hover { background: var(--sand-lt); border-color: var(--sand); }

/* =============================================
   TREATMENTS
   ============================================= */
.treatments { background: var(--gray-bg); }

.treatments__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-bottom: 48px;
}

.treat-card {
  background: var(--white); border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.treat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }

.treat-card__img-wrap { position: relative; height: 270px; overflow: hidden; }
.treat-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.treat-card:hover .treat-card__img { transform: scale(1.07); }
.treat-card__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(31,54,84,0.05) 0%, rgba(31,54,84,0.6) 100%); }
.treat-card__tag {
  position: absolute; top: 20px; left: 20px;
  padding: 6px 14px; border-radius: var(--r-full);
  background: rgba(248,246,242,0.15); border: 1px solid rgba(248,246,242,0.25);
  backdrop-filter: blur(12px);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white);
}
.treat-card__body { padding: clamp(24px, 3vw, 38px); flex: 1; display: flex; flex-direction: column; }
.treat-card__title { font-size: clamp(1.05rem, 1.8vw, 1.35rem); font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.3; }
.treat-card__title em {
  display: block;
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--slate);
  font-size: 1.6em;
  margin-top: 6px;
  line-height: 1.15;
}
.treat-card__lead  { font-size: 0.9rem; opacity: 0.72; margin-bottom: 20px; line-height: 1.6; }
.treat-card__list  { list-style: none; display: grid; gap: 10px; flex: 1; }
.treat-card__list li { font-size: 0.9rem; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.treat-card__bullet {
  width: 18px; height: 18px; border-radius: var(--r-full);
  background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.35);
  flex-shrink: 0; margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.52rem; color: var(--wa-green-dark);
}
.treat-card__cta {
  margin-top: 24px;
  align-self: flex-start;
}
@media (max-width: 560px) {
  .treat-card__cta {
    width: 100%;
    justify-content: center;
  }
}

.treatments__blockquote {
  background: var(--navy); border-radius: var(--r-lg);
  padding: clamp(36px,5vw,54px) clamp(28px,6vw,64px);
  text-align: center; position: relative; overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.treatments__blockquote::before {
  display: none;
}
.treatments__blockquote-text {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--sand-lt);
  line-height: 1.6;
  max-width: 820px;
  position: relative;
  z-index: 1;
}
.treatments__blockquote-sub {
  font-family: var(--f-sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 640px;
  position: relative;
  z-index: 1;
}
.treatments__blockquote-link {
  color: var(--sand);
  font-family: var(--f-sans);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: underline;
  transition: color var(--t-fast);
  position: relative;
  z-index: 1;
}
.treatments__blockquote-link:hover {
  color: var(--white);
}

@media (max-width: 860px) { .treatments__grid { grid-template-columns: 1fr; } }

/* =============================================
   IMPACT
   ============================================= */
.impact { background: var(--off); }

.impact__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.impact-card {
  padding: 34px 28px; border-radius: var(--r-lg);
  background: var(--white); border: 1px solid var(--sand-20);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.impact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.impact-card__icon {
  width: 46px; height: 46px; border-radius: var(--r-md); background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--sand); font-size: 1.1rem; margin-bottom: 20px;
}
.impact-card__title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.impact-card__list  { list-style: none; display: grid; gap: 10px; }
.impact-card__list li {
  font-size: 0.88rem; padding-left: 16px; position: relative;
  line-height: 1.5; opacity: 0.78;
}
.impact-card__list li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--sand);
}

@media (max-width: 860px) { .impact__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .impact__grid { grid-template-columns: 1fr; } }
.impact__cta {
  margin-top: clamp(40px, 6vw, 64px);
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.impact__cta-text {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 2px;
}
.impact__cta-sub {
  font-size: 0.95rem;
  color: var(--slate);
  font-weight: 500;
  margin-bottom: 8px;
}

/* =============================================
   ABOUT
   ============================================= */
.about { background: var(--gray-bg); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 7vw, 96px); align-items: center;
}

.about__img-wrap { position: relative; }
.about__img-main {
  aspect-ratio: 3/4; border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--shadow-xl);
}
.about__img-main img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform var(--t-slow);
}
.about__img-main:hover img { transform: scale(1.04); }

.about__badge {
  position: absolute; bottom: 28px; right: -16px;
  background: var(--navy); color: var(--white);
  padding: 14px 20px; border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; line-height: 1.4;
}
.about__badge-sub { display: block; font-size: 0.68rem; font-weight: 400; opacity: 0.65; margin-top: 3px; letter-spacing: 0.06em; }

.about__content  { padding-bottom: 24px; }
.about__content h2 { margin-bottom: 22px; }
.about__text     { display: grid; gap: 14px; margin-bottom: 30px; }
.about__text p   { font-size: 1rem; line-height: 1.75; opacity: 0.82; }

.about__credentials {
  list-style: none; display: grid; gap: 12px;
  padding: 26px; background: var(--off);
  border-radius: var(--r-lg); border: 1px solid var(--sand-20); margin-bottom: 30px;
}
.about__cred-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; line-height: 1.5; font-weight: 500; }
.about__cred-icon {
  width: 27px; height: 27px; border-radius: var(--r-sm);
  background: var(--white); border: 1px solid var(--sand-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; color: var(--navy); flex-shrink: 0; margin-top: 1px;
}

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__img-main { max-width: 460px; margin-inline: auto; }
  .about__badge { right: 10px; bottom: 10px; }
}

/* =============================================
   ROBOTIC SURGERY (CIRURGIA ROBÓTICA)
   ============================================= */
.robotic {
  background: var(--navy);
  color: var(--white);
}

.robotic__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.robotic__content {
  padding-bottom: 24px;
}

.robotic__content h2 {
  margin-bottom: 22px;
}

.robotic__text {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.robotic__text p {
  font-size: 1rem;
  line-height: 1.75;
  opacity: 0.85;
}

.robotic__benefits {
  display: grid;
  gap: 16px;
  margin-top: 10px;
}

.robotic__benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.robotic__benefit-item strong {
  color: var(--sand);
  display: block;
  margin-bottom: 2px;
}

.robotic__benefit-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--sand);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Images grid layout */
.robotic__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.robotic__img-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  background: var(--navy-20);
}

.robotic__img-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.4) 0%, transparent 40%);
  opacity: 0;
  transition: opacity var(--t-fast);
  pointer-events: none;
}

.robotic__img-card:hover::after {
  opacity: 1;
}

.robotic__img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow);
}

.robotic__img-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.robotic__img-card:hover img {
  transform: scale(1.05);
}

.robotic__img-card--1 {
  grid-row: span 2;
  height: 100%;
  min-height: 480px;
}

.robotic__img-card--2 {
  aspect-ratio: 4/3;
}

.robotic__img-card--3 {
  aspect-ratio: 4/3;
}

@media (max-width: 900px) {
  .robotic__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .robotic__images {
    max-width: 600px;
    margin-inline: auto;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .robotic__images {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .robotic__img-card--1 {
    grid-column: span 2;
    grid-row: span 1;
    min-height: auto;
    aspect-ratio: 16/9;
  }
  .robotic__img-card--2,
  .robotic__img-card--3 {
    aspect-ratio: 4/3;
  }
}

/* =============================================
   LIGHTBOX GALLERY
   ============================================= */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__content {
  position: relative;
  max-width: 90%;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
  object-fit: contain;
  animation: lightboxFadeIn 0.3s var(--ease-out);
}

@keyframes lightboxFadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--t-fast), transform var(--t-fast);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
  z-index: 1002;
}

.lightbox__arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.05);
}

.lightbox__arrow--prev {
  left: 24px;
}

.lightbox__arrow--next {
  right: 24px;
}

.lightbox__caption {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  max-width: 80%;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  opacity: 0.85;
}

.lightbox__counter {
  position: absolute;
  top: 24px;
  left: 24px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.7;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: var(--r-full);
}

@media (max-width: 768px) {
  .lightbox__arrow {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  .lightbox__arrow--prev {
    left: 12px;
  }
  .lightbox__arrow--next {
    right: 12px;
  }
  .lightbox__close {
    top: 12px;
    right: 12px;
  }
  .lightbox__counter {
    top: 20px;
    left: 20px;
  }
  .lightbox__caption {
    bottom: 24px;
    font-size: 0.85rem;
  }
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: var(--off); }

.carousel { position: relative; overflow: hidden; }
.carousel__track {
  display: flex;
  transition: transform 0.6s var(--ease-out);
}
.carousel__slide {
  flex: 0 0 100%;
  padding-inline: 12px;
  display: flex;
  align-items: flex-start;
}
@media (min-width: 769px) {
  .carousel__slide {
    flex: 0 0 50%;
  }
}

.testimony-card {
  width: 100%;
  background: var(--white); border-radius: var(--r-xl);
  padding: clamp(30px, 4vw, 44px); text-align: left;
  box-shadow: var(--shadow-md); border: 1px solid var(--sand-20);
  position: relative; overflow: hidden;
  display: flex;
  flex-direction: column;
}
.testimony-card__mark {
  font-family: var(--f-serif); font-size: 12rem;
  color: var(--sand); opacity: 0.1;
  position: absolute; top: -20px; left: 24px; line-height: 1; pointer-events: none;
}
.testimony-card__stars { color: #F5A623; font-size: 1rem; letter-spacing: 3px; margin-bottom: 18px; }
.testimony-card__quote {
  font-family: var(--f-sans);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.1vw, 0.98rem);
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.testimony-card__quote p {
  margin-bottom: 12px;
}
.testimony-card__quote p:last-child {
  margin-bottom: 0;
}
.testimony-card__lead-text {
  margin-bottom: 0;
}
.testimony-card__full-text {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease), margin-top 0.3s var(--ease);
}
.testimony-card.expanded .testimony-card__full-text {
  max-height: 800px;
  opacity: 1;
  margin-top: 12px;
}
.btn-read-more {
  background: none;
  border: none;
  color: var(--navy);
  font-family: var(--f-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0;
  margin-top: 6px;
  margin-bottom: 8px;
  cursor: pointer;
  align-self: flex-start;
  transition: color var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-read-more:hover {
  color: var(--slate);
}
.btn-read-more::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.72rem;
  display: inline-block;
  transition: transform var(--t-fast);
}
.testimony-card.expanded .btn-read-more::after {
  transform: rotate(180deg);
}
.testimony-card__author {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--navy);
  text-transform: none;
  letter-spacing: 0;
  margin-top: 14px;
  display: block;
}

/* Custom Testimony CTA Card */
.testimony-card--cta {
  background: var(--navy);
  border-color: var(--navy);
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding-block: clamp(36px, 5vw, 60px);
}
.testimony-card--cta .testimony-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.testimony-card--cta h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.testimony-card--cta p {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 280px;
}

/* Controls */
.carousel__controls-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 36px;
}
.carousel__arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--sand);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-med);
  box-shadow: var(--shadow-md);
}
.carousel__arrow:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.carousel__arrow:active {
  transform: translateY(0);
}
.carousel__arrow:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.carousel__dots { display: flex; justify-content: center; gap: 8px; }
.carousel__dot {
  width: 8px; height: 8px; border-radius: var(--r-full);
  background: var(--sand); border: none; cursor: pointer;
  transition: width var(--t-med), background var(--t-med);
}
.carousel__dot.active { width: 28px; background: var(--navy); }

/* =============================================
   INSURANCE PLANS — logo marquee, original colors
   ============================================= */
.convenios { background: var(--white); }

.plans__marquee {
  overflow: hidden;
  margin-block: 52px;
  /* Sharp edges — sem fade, sem espaço entre o primeiro e o último */
}

.plans__row {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.plans__row + .plans__row { margin-top: 28px; }

.plans__track {
  display: flex;
  align-items: center;
  gap: 96px;
  width: max-content;
  padding-block: 8px;
  animation: marquee-left 38s linear infinite;
}

.plans__track--reverse { animation: marquee-right 38s linear infinite; }

.plans__row:hover .plans__track { animation-play-state: paused; }

@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.plan-logo {
  height: 108px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity var(--t-med), transform var(--t-med);
}
.plan-logo:hover { opacity: 1; transform: scale(1.06); }

/* =============================================
   LOCATION
   ============================================= */
.location { background: var(--gray-bg); }

.location__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}

.location__info p { font-size: 0.98rem; line-height: 1.75; opacity: 0.8; margin-bottom: 14px; }

.location__visual {
  position: relative; border-radius: var(--r-xl);
  overflow: hidden; min-height: 500px; box-shadow: var(--shadow-xl);
}
.location__visual-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform var(--t-slow);
}
.location__visual:hover .location__visual-img { transform: scale(1.04); }
.location__visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 70%, rgba(31,54,84,0.22) 100%);
  pointer-events: none;
}

@media (max-width: 860px) {
  .location__grid { grid-template-columns: 1fr; }
  .location__visual { min-height: 416px; } /* 320px * 1.3 = 416px */
}

/* =============================================
   FAQ
   ============================================= */
.faq { background: var(--off); }

.faq__list { max-width: 800px; margin-inline: auto; display: grid; gap: 10px; }

.faq__item {
  background: var(--white); border-radius: var(--r-md);
  border: 1px solid var(--sand-20); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.faq__item.active { border-color: var(--sand); box-shadow: var(--shadow-md); }

.faq__trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 20px; padding: 22px 26px; background: none; border: none; text-align: left;
}
.faq__q { font-size: 0.97rem; font-weight: 600; color: var(--navy); line-height: 1.4; }
.faq__icon {
  width: 28px; height: 28px; border-radius: var(--r-full);
  border: 1.5px solid var(--sand);
  display: flex; align-items: center; justify-content: center;
  color: var(--slate); font-size: 0.62rem; flex-shrink: 0;
  transition: transform var(--t-med), background var(--t-med), color var(--t-med), border-color var(--t-med);
}
.faq__item.active .faq__icon { transform: rotate(45deg); background: var(--navy); color: var(--white); border-color: var(--navy); }

.faq__body { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease-out); }
.faq__a { padding: 0 26px 14px; font-size: 0.92rem; line-height: 1.7; opacity: 0.76; }
.faq__cta {
  padding: 0 26px 22px;
  font-size: 0.88rem;
  line-height: 1.6;
  opacity: 0.9;
  color: var(--slate);
}
.faq__cta a {
  color: var(--wa-green-dark);
  font-weight: 700;
  text-decoration: underline;
  transition: color var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.faq__cta a:hover {
  color: var(--navy);
}

/* =============================================
   OTHER CARE — Outros Atendimentos
   ============================================= */
.other-care { background: var(--off); }

.other-care__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

@media (max-width: 1024px) {
  .other-care__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .other-care__grid {
    grid-template-columns: 1fr;
  }
}

.other-care__card {
  display: flex;
  align-items: stretch;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--sand-20);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 30px);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}

.other-care__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--sand);
}

.other-care__icon {
  align-self: flex-start;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  font-size: 1.1rem;
  margin-top: 2px;
  transition: background var(--t-med);
}

.other-care__card:hover .other-care__icon {
  background: var(--slate);
}

.other-care__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.other-care__title {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--navy);
  margin-bottom: 7px;
  line-height: 1.3;
}

.other-care__desc {
  font-size: 0.87rem;
  line-height: 1.65;
  color: var(--text);
  opacity: 0.75;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: var(--navy); position: relative; overflow: hidden; text-align: center;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 15% 50%, rgba(95,116,141,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(207,196,178,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section__inner { position: relative; z-index: 1; }
.cta-section__title   { font-size: clamp(2rem, 4vw, 3.5rem); color: var(--white); margin-bottom: 20px; }
.cta-section__lead    { max-width: 540px; margin-inline: auto; color: rgba(255,255,255,0.62); font-size: 1.02rem; line-height: 1.75; margin-bottom: 40px; }
.cta-section__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.cta-section__phone {
  font-family: var(--f-sans);
  font-weight: 700;
  font-style: normal;
  font-size: 1.6rem;
  color: var(--sand);
  text-decoration: none;
  transition: all var(--t-fast);
  margin-top: 4px;
}
.cta-section__phone:hover {
  opacity: 0.85;
  color: var(--white);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #111C27;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-block: 48px 32px;
}
.footer__main {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}
.footer__logo { display: flex; align-items: center; gap: 14px; }
.footer__logo-img { width: 46px; height: 46px; border-radius: var(--r-full); border: 2px solid var(--sand); object-fit: cover; }
.footer__logo-text h3 { font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.footer__logo-text p  { font-size: 0.72rem; color: var(--sand); margin-top: 3px; letter-spacing: 0.04em; }
.footer__tagline {
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: rgba(207,196,178,0.7); max-width: 320px; line-height: 1.45;
}
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.76rem; color: rgba(255,255,255,0.26);
}

/* =============================================
   WHATSAPP FAB
   ============================================= */
.wa-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 800;
  pointer-events: none;
}

.wa-fab,
.wa-bubble {
  pointer-events: auto;
}

.wa-fab {
  width: 58px;
  height: 58px;
  background: var(--wa-green);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform var(--t-med), box-shadow var(--t-med), background var(--t-med);
  animation: wa-pulse 2.5s ease-out infinite;
}

.wa-fab:hover {
  background: var(--wa-green-dark);
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.5);
  animation: none;
}

.wa-bubble {
  background: var(--white);
  color: var(--navy);
  font-family: var(--f-sans);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--sand-20);
  white-space: nowrap;
  position: relative;
  opacity: 0;
  transform: translateX(10px);
  animation: wa-bubble-fade 0.5s ease-out 1.5s forwards;
}

.wa-bubble::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--white);
  border-right: 1px solid var(--sand-20);
  border-top: 1px solid var(--sand-20);
}

@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  60%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@keyframes wa-bubble-fade {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 560px) {
  .wa-container {
    bottom: 18px;
    right: 18px;
    gap: 8px;
  }
  .wa-fab {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .wa-bubble {
    font-size: 0.72rem;
    padding: 6px 12px;
  }
}

/* =============================================
   HELPERS
   ============================================= */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ============================================================
   VESICULA PAGE CUSTOM STYLES
   ============================================================ */

/* Consultation Section Rebuild from Scratch */
.consultation {
  background: var(--gray-bg);
  padding: 100px 0;
}
.consultation__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.consultation__step {
  background: var(--white);
  padding: 40px 35px;
  border-radius: var(--r-lg);
  border: 1px solid var(--sand-20);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.consultation__step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--sand-40);
}
.consultation__number {
  font-family: var(--f-sans);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 18px;
}
.consultation__text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}
.consultation__footer {
  margin-top: 60px;
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}
.consultation__footer-text {
  font-size: 1.25rem;
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .consultation__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .consultation__steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .consultation {
    padding: 70px 0;
  }
}

/* Full Width Image Banner */
.full-width-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 520px;
  background: var(--navy);
}
.full-banner__wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.full-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.full-banner__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(31,54,84,0.15) 0%, rgba(31,54,84,0.45) 100%);
}
@media (max-width: 768px) {
  .full-width-banner {
    height: 340px;
  }
}

/* Por que procurar um especialista large titles */
#por-que-especialista .doubt-card__q {
  font-size: 1.55rem;
  font-weight: 700;
  font-style: normal;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

/* Urgência Section Standing Out (Orange-Red background) */
#urgencia.imc {
  background: #7A2F22; /* Burnt Terracotta / Emergency Red */
}
#urgencia.imc .imc__info-body {
  color: rgba(255, 255, 255, 0.85);
}
#urgencia-card.imc__card {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.btn--urgencia {
  background: var(--wa-green);
  color: var(--white);
  border: 1px solid var(--wa-green);
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.btn--urgencia:hover {
  background: var(--wa-green-dark);
  border-color: var(--wa-green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* Custom Recommendations Section (VESICULA PAGE) */
.recommendations {
  background: var(--off);
  color: var(--text);
  padding: 100px 0;
}
.recommendations .section-header__title {
  color: var(--navy);
}
.recommendations .section-header__lead {
  color: var(--slate);
}
.recommendations h2 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: #7A2F22; /* Terracotta red highlight */
  font-size: 1.25em; /* Proportional visual compensation */
  line-height: 1;
  display: inline-block;
  vertical-align: baseline;
}
.recommendations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.recommendations__card {
  background: var(--white);
  border: 1px solid var(--sand-20);
  border-radius: var(--r-lg);
  padding: 35px 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform var(--t-med), border-color var(--t-med), background-color var(--t-med), box-shadow var(--t-med);
}
.recommendations__card:hover {
  transform: translateY(-6px);
  border-color: var(--sand-40);
  box-shadow: var(--shadow-md);
}
.recommendations__card-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
  background: rgba(31, 54, 84, 0.05);
  border: 1px solid rgba(31, 54, 84, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.recommendations__card-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}
.recommendations__card-text strong {
  color: var(--navy);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}
.recommendations__footer-text {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.5;
}
.recommendations__footer-text strong {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.45rem;
  color: #7A2F22; /* Terracotta red highlight */
  display: block;
  margin-top: 8px;
}

/* Custom Decision Section (VESICULA PAGE) */
.decision {
  position: relative;
  background: var(--white);
  padding: 100px 0;
  display: flex;
  align-items: center;
  min-height: 520px;
  overflow: hidden;
}
.decision__container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 1200px;
  position: relative;
  z-index: 2;
}
.decision__content-col {
  width: 50%;
  padding-right: 40px;
  text-align: left;
}
.decision__title {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 30px;
  text-align: left;
}
.decision__content {
  display: grid;
  gap: 20px;
}
.decision__content p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.75;
  opacity: 0.85;
}
.decision__content p strong {
  color: var(--navy);
  font-weight: 600;
}
.decision__image-side {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
  z-index: 1;
}
.decision__img-side {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
  display: block;
}

/* Custom button hover for Vesicula page hero */
.hero__actions .btn--outline:hover {
  background: #7A2F22;
  border-color: #7A2F22;
  color: var(--white);
}

/* Red custom bubble for WhatsApp FAB on vesicula page */
.wa-container .wa-bubble--red {
  background: #7A2F22;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(122, 47, 34, 0.35);
}
.wa-container .wa-bubble--red::after {
  background: #7A2F22;
  border-right-color: rgba(255, 255, 255, 0.15);
  border-top-color: rgba(255, 255, 255, 0.15);
}

/* Red color for H1 em in Hero for Vesicula page */
.page-vesicula .hero__title em {
  color: #7A2F22;
}

/* Other care custom links and read more styles */
a.other-care__card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.other-care__more {
  display: inline-block;
  margin-top: auto; /* Push to the bottom of the card body */
  padding-top: 16px;
  font-family: var(--f-sans); /* Use sans-serif font */
  font-size: 13px;
  color: var(--sand);
  font-weight: 600;
  transition: color var(--t-fast);
}
.other-care__card:hover .other-care__more {
  color: var(--navy);
}

@media (max-width: 991px) {
  .recommendations__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .decision {
    display: block;
    padding: 75px 0 0 0;
  }
  .decision__content-col {
    width: 100%;
    padding-right: 0;
    margin-bottom: 50px;
    text-align: center;
  }
  .decision__title {
    text-align: center;
  }
  .decision__image-side {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 380px;
  }
}
@media (max-width: 640px) {
  .recommendations__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .recommendations {
    padding: 75px 0;
  }
  .decision__image-side {
    height: 280px;
  }
}

/* Custom default button outline for page-vesicula Hero */
.page-vesicula .hero__actions .btn--outline {
  color: #7A2F22;
  border-color: #7A2F22;
}

/* Hide WhatsApp FAB container initially on vesicula page */
.page-vesicula .wa-container {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.page-vesicula .wa-container.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Red color for H1 em in Hero for Hernia page */
.page-hernia .hero__title em {
  color: #7A2F22;
}

/* Custom default button outline for page-hernia Hero */
.page-hernia .hero__actions .btn--outline {
  color: #7A2F22;
  border-color: #7A2F22;
}

/* Custom button hover for Hernia page hero */
.page-hernia .hero__actions .btn--outline:hover {
  background: #7A2F22;
  border-color: #7A2F22;
  color: var(--white);
}

/* Hide WhatsApp FAB container initially on hernia page */
.page-hernia .wa-container {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.page-hernia .wa-container.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/*
 * Tag Stamina — Visível e alinhada à base da última seção.
 * Sem posicionamento negativo, sem overflow oculto.
 */
.stamina-footer-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-color: transparent;
  padding: 0;
  margin: 0;
}
.stamina-badge-link {
  width: fit-content;
  max-width: 90%;
  background-color: #252525;
  border-radius: 14px 14px 0 0;
  border: none;
  padding: 10px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  box-shadow: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
.stamina-badge-logo {
  height: 11px;
  width: auto;
  display: block;
  transform: translateY(-2px);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
.stamina-badge-link:hover {
  background-color: #2e2e2e;
  color: #ffffff;
}
.stamina-badge-link:hover .stamina-badge-logo {
  transform: translateY(-2px) scale(1.05);
}/* Overrides para a página de Hérnia e Diástase */
.em-slate {
  color: var(--slate) !important;
}

/* Fundo azul escuro para o Hero da página de Hérnia */
.page-hernia .hero {
  background: var(--navy);
}

/* Gradiente do Hero adaptado para o fundo escuro azul */
.page-hernia .hero__gradient {
  background: linear-gradient(
    to right,
    var(--navy)                     0%,
    var(--navy)                     30%,
    rgba(31, 54, 84, 0.88)          44%,
    rgba(31, 54, 84, 0.55)          56%,
    rgba(31, 54, 84, 0.18)          68%,
    rgba(31, 54, 84, 0)             80%
  );
}

/* Alinha a base da imagem da Hero com o limite inferior da seção, eliminando faixas brancas */
.page-hernia .hero__photo {
  top: auto;
  bottom: -2px;
  height: calc(100% + 2px);
  object-fit: cover;
  object-position: bottom right;
}

/* Cores e contraste do texto do Hero no fundo azul escuro */
.page-hernia .hero__eyebrow .t-label {
  color: var(--sand);
}

.page-hernia .hero__title {
  color: var(--white);
}

/* Destaques em tom de areia para contraste e harmonia */
.page-hernia .hero__title em,
.page-hernia .hero__title em.em-slate {
  color: var(--sand) !important;
}

.page-hernia .hero__lead {
  color: var(--sand-lt);
  opacity: 0.9;
}

.page-hernia .hero__checklist li {
  color: var(--white);
}

.page-hernia .hero__meta {
  color: var(--sand-lt);
}

/* Botões do Hero na página de Hérnia */
.page-hernia .hero__actions .btn--outline {
  color: var(--sand);
  border-color: var(--sand);
}

.page-hernia .hero__actions .btn--outline:hover {
  background: var(--sand);
  color: var(--navy);
  border-color: var(--sand);
}

/* Quando o cabeçalho NÃO está scrolled na página de Hérnia (fundo do Hero escuro) */
.page-hernia #main-header:not(.scrolled) .logo__name {
  color: var(--white);
}
.page-hernia #main-header:not(.scrolled) .logo__crm {
  color: var(--sand-lt);
}
.page-hernia #main-header:not(.scrolled) .nav__link {
  color: var(--white);
  opacity: 0.85;
}
.page-hernia #main-header:not(.scrolled) .nav__link:hover {
  color: var(--sand);
  background: rgba(255, 255, 255, 0.08);
}
.page-hernia #main-header:not(.scrolled) .header__location {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.page-hernia #main-header:not(.scrolled) .header__location:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--sand);
}
.page-hernia #main-header:not(.scrolled) .menu-toggle span {
  background: var(--white);
}

/* Ajustes da segunda seção (Strip de Indicadores) */
.page-hernia .strip {
  background: var(--sand);
}

.page-hernia .strip__num {
  color: var(--navy);
}

.page-hernia .strip__lbl {
  color: rgba(31, 54, 84, 0.85);
}

.page-hernia .strip__item {
  border-right-color: rgba(31, 54, 84, 0.15);
}

.page-hernia .strip__item:hover {
  background: rgba(31, 54, 84, 0.04);
}

@media (max-width: 960px) {
  .page-hernia .strip__item {
    border-right: none;
    border-bottom: 1px solid rgba(31, 54, 84, 0.15);
  }
}

/* Quando Procurar um Cirurgião */
.page-hernia #quando-procurar .decision__img-side {
  /* Desloca a foto para cima dentro da máscara para revelar a parte inferior que estava oculta */
  object-position: center 80%;
}

.page-hernia #tratamentos .recommendations__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.page-hernia #tratamentos .recommendations__card {
  flex: 0 1 calc(33.333% - 20px);
  min-width: 320px;
}
@media (max-width: 991px) {
  .page-hernia #tratamentos .recommendations__card {
    flex: 0 1 calc(50% - 15px);
  }
}
@media (max-width: 768px) {
  .page-hernia #tratamentos .recommendations__card {
    flex: 0 1 100%;
  }
}

.page-hernia #correcao-diastase {
  background: var(--navy);
  color: var(--white);
}

.page-hernia #correcao-diastase .section-header__title {
  color: var(--white);
}

/* Deixa o título "Diástase abdominal" na cor branca, sobrescrevendo a cor vermelha padrão */
.page-hernia #correcao-diastase .section-header__title em {
  color: var(--white) !important;
}

.page-hernia #correcao-diastase .section-header__lead {
  color: var(--sand-lt);
}

.page-hernia #correcao-diastase .t-label {
  color: var(--sand);
}

.page-hernia #correcao-diastase .text-center .t-body {
  color: var(--white);
}

.page-hernia #correcao-diastase .recommendations__footer-text {
  color: var(--sand-lt);
}

/* Layout de duas colunas para a seção de Diástase Abdominal */
.diastase-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-top: 50px;
}

.diastase-layout__img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.diastase-layout__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.diastase-layout__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.diastase-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.diastase-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.diastase-item__title {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.diastase-item__desc {
  color: var(--sand-lt);
  opacity: 0.9;
  font-size: 0.96rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .diastase-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .diastase-layout__img {
    aspect-ratio: 1 / 1;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Evita quebra intermediária indesejada na expressão "Hérnias e Diástase Abdominal" */
@media (min-width: 769px) {
  .page-hernia .hero__title-nowrap {
    white-space: nowrap;
  }
}
@media (min-width: 1200px) {
  .page-hernia .hero__content {
    max-width: 700px;
  }
}

/* ============================================================
   MOBILE HERO TRANSITION (Only visible on mobile screens)
   ============================================================ */
.mobile-hero-trans {
  display: none;
}

@media (max-width: 768px) {
  .mobile-hero-trans {
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  .mobile-hero-trans__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  
  /* Apply duotone to the index page mobile transition image */
  .index-mobile-hero .mobile-hero-trans__img {
    filter: url(#hero-duotone);
  }

  /* Align hernia transition photo by its bottom */
  .hernia-mobile-hero .mobile-hero-trans__img {
    object-position: bottom;
  }
}

