/* ═══════════════════════════════════════════
   GRUPO MRX — Clean Design System (Mapfre-inspired)
   Paleta: Navy #043973 | Blue #0073E6 | Green #106345 | Teal #1D5F89
   Design: Clean, white, spacious, rounded cards
   ═══════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --navy:     #043973;
  --blue:     #0073E6;
  --green:    #106345;
  --teal:     #1D5F89;
  --ice:      #E9F9FF;
  --white:    #FFFFFF;
  --off-white:#F7FAFC;
  --gray-50:  #F0F4F8;
  --gray-100: #E2E8F0;
  --gray-200: #CBD5E0;
  --gray-400: #A0AEC0;
  --gray-600: #718096;
  --gray-800: #2D3748;
  --gray-900: #1A202C;
  --accent:   #0073E6;
  --font-serif: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  --font-sans:  'Inter', -apple-system, sans-serif;
  --header-h: 80px;
  --container: 1200px;
  --ease: cubic-bezier(.22,1,.36,1);
  --radius: 20px;
  --radius-lg: 28px;
  --radius-sm: 14px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
select, input, textarea { font-family: inherit; font-size: 1rem; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .02em;
  padding: .75rem 1.75rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: all .3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  letter-spacing: .01em;
}
.btn--primary:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,115,230,.2);
}
.btn--accent {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--accent:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn--outline-light:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--sm { padding: .55rem 1.15rem; font-size: .8rem; }
.btn--lg { padding: .9rem 2rem; font-size: .88rem; }
.btn--full { width: 100%; justify-content: center; }
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: transparent;
  padding-left: .5rem; padding-right: .5rem;
}
.btn--ghost:hover { color: var(--blue); background: var(--ice); }
.btn--ghost-light {
  background: transparent;
  color: rgba(255,255,255,.8);
  border-color: transparent;
  padding-left: .5rem; padding-right: .5rem;
}
.btn--ghost-light:hover { color: var(--white); background: rgba(255,255,255,.1); }

/* ── SECTION SHARED ── */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section__header { max-width: 600px; margin-bottom: 3rem; }
.section__header--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__eyebrow {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .6rem;
}
.section__header--center .section__eyebrow { justify-content: center; }
.section__eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy);
  letter-spacing: -.02em;
}
.section__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section__desc {
  margin-top: .75rem;
  color: var(--gray-600);
  font-size: 1rem;
  max-width: 520px;
}

/* ══════════════════════════════════════
   HEADER — Clean white
   ══════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  height: var(--header-h);
  border-bottom: 1px solid var(--gray-100);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease), background .35s var(--ease);
}
.header--hidden { transform: translateY(-100%); }
.header--scrolled {
  height: 64px;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header__logo { display: flex; align-items: center; }
.header__logo-img {
  height: 68px;
  width: auto;
  transition: height .3s var(--ease);
}
.header--scrolled .header__logo-img { height: 50px; }
.header__nav { display: flex; gap: clamp(.75rem, 2vw, 1.75rem); }
.nav-link {
  font-size: .84rem;
  font-weight: 600;
  color: var(--gray-600);
  position: relative;
  padding: .25rem 0;
  transition: color .3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width .3s var(--ease);
}
.nav-link:hover { color: var(--navy); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--navy); font-weight: 700; }
.nav-link.active::after { width: 100%; }
.header__actions { display: flex; align-items: center; gap: .75rem; }
.header__phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-600);
  padding: .4rem .8rem;
  border-radius: 999px;
  border: 1.5px solid var(--gray-100);
  transition: all .3s;
  white-space: nowrap;
}
.header__phone i { font-size: .72rem; color: var(--blue); }
.header__phone:hover {
  background: var(--ice);
  border-color: var(--blue);
  color: var(--navy);
}
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px; width: 26px; padding: 4px 0;
}
.header__burger span {
  display: block; height: 2px;
  background: var(--navy);
  transition: all .3s;
}

/* ══════════════════════════════════════
   HERO — Clean cards layout (Mapfre-style)
   ══════════════════════════════════════ */
.hero {
  background: var(--white);
  padding: calc(var(--header-h) + 2.5rem) 0 0;
}
.hero__inner {
  display: block;
  width: 100%;
}

/* Main hero card (slider + text overlay) */
.hero__main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 600px;
  background: var(--gray-50);
  box-shadow: 0 2px 30px rgba(4,57,115,.07);
}
.hero__slider {
  position: absolute;
  inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero__slide--active { opacity: 1; }

/* Gradient overlay — rich dark vignette so text floats cleanly */
.hero__main::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1; /* above slides, below body text */
  background:
    linear-gradient(
      to top,
      rgba(2,8,30,.90) 0%,
      rgba(4,20,60,.72) 32%,
      rgba(4,20,60,.30) 62%,
      transparent 100%
    ),
    linear-gradient(
      to right,
      rgba(2,8,30,.40) 0%,
      transparent 55%
    );
}

/* Transparent hero body — pure text/buttons over the gradient */
.hero__main-body {
  position: absolute;
  bottom: 0; left: 0;
  z-index: 2;
  padding: 2.5rem 3rem 2.25rem;
  max-width: 560px;
}
.hero__eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: .65rem;
  min-height: 1.2em;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hero__eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--blue);
  flex-shrink: 0;
  border-radius: 1px;
}
@keyframes eyebrow-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: .7rem;
  min-height: 3.6em;
  letter-spacing: -.02em;
  text-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.hero__title em {
  font-style: normal;
  color: var(--ice);
  -webkit-text-fill-color: var(--ice);
}
.hero__sub {
  font-size: .92rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 1.35rem;
  line-height: 1.75;
  min-height: 2em;
}

/* Hero CTA row */
.hero__actions {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}
.hero__btn-wa {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .75rem 1.4rem;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.3);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .82rem;
  transition: all .3s var(--ease);
  white-space: nowrap;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__btn-wa i { color: #5ef07a; font-size: 1rem; }
.hero__btn-wa:hover {
  background: rgba(37,211,102,.18);
  border-color: rgba(37,211,102,.6);
}

/* Hero trust strip */
.hero__trust {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-top: .9rem;
  border-top: 1px solid rgba(255,255,255,.18);
  flex-wrap: wrap;
}
.hero__trust-stars {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.hero__trust-stars i { color: #F6AD55; font-size: .72rem; }
.hero__trust-score {
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
  margin-left: .25rem;
}
.hero__trust-sep {
  width: 1px; height: 14px;
  background: rgba(255,255,255,.25);
  flex-shrink: 0;
}
.hero__trust-stat {
  font-size: .74rem;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}
.hero__trust-stat strong {
  color: var(--white);
  font-weight: 700;
}

/* ══════════════════════════════════════
   SVG SECTION DIVIDERS
   ══════════════════════════════════════ */
.sdiv {
  display: block;
  overflow: hidden;
  line-height: 0;
  margin: -2px 0;
  pointer-events: none;
}
.sdiv svg {
  display: block;
  width: 100%;
  height: auto;
}
.sdiv--white    { background: var(--white); }
.sdiv--offwhite { background: var(--off-white); }
.sdiv--navy     { background: var(--navy); }
.sdiv--ice      { background: var(--ice); }

/* Hero dots */
.hero__dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: .4rem;
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.5);
  background: transparent;
  cursor: pointer;
  transition: all .3s;
}
.hero__dot--active {
  background: var(--white);
  border-color: var(--white);
  width: 24px;
  border-radius: 4px;
}

/* Side cards */
.hero__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}
.hero__side-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--off-white);
  flex: 1;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(4,57,115,.05);
}
.hero__side-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}
.hero__side-body {
  padding: 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__side-body p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: .5rem;
}
.hero__side-body strong { color: var(--navy); }
.hero__side-card--dark {
  background: var(--navy);
}
.hero__side-card--dark .hero__side-body p {
  color: rgba(255,255,255,.75);
}
.hero__side-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: .5rem;
}

/* ══════════════════════════════════════
   PILLS BAR (Mapfre "Cote o preço" style)
   ══════════════════════════════════════ */
.pills-bar {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 1.25rem 0;
}
.pills-bar__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.pills-bar__label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  line-height: 1.4;
}
.pills-bar__pills {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}
.pills-bar__pill {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.25rem;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.pills-bar__pill i { font-size: 1.1rem; color: var(--blue); }
.pills-bar__pill:hover {
  border-color: var(--blue);
  background: var(--ice);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,115,230,.1);
}
/* Especialidades da casa: Vida e Assistência Funeral */
.pills-bar__pill--focus {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.pills-bar__pill--focus i { color: var(--white); }
.pills-bar__pill--focus:hover {
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: 0 4px 14px rgba(4,57,115,.28);
}

/* ══════════════════════════════════════
   PARTNERS
   ══════════════════════════════════════ */
.partners {
  padding: 2.5rem 0;
  background: var(--white);
}
.partners__label {
  text-align: center;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gray-400);
  margin-bottom: 1.25rem;
}
.partners__track {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.partners__logos {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: scrollPartners 30s linear infinite;
  width: max-content;
}
.partner-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-logo img {
  height: 30px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(.4);
  transition: all .4s var(--ease);
}
.partner-logo img:hover { filter: grayscale(0%) opacity(1); }
/* Compensate for logos that render smaller — give them more height */
.partner-logo--lg img  { height: 42px !important; }
.partner-logo--xl img  { height: 52px !important; }
.partner-text {
  font-size: .72rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}
@keyframes scrollPartners {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   PRODUCTS — Image-top card style (Zurich-inspired)
   ══════════════════════════════════════ */
.products { background: var(--off-white); }
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.product-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: 0 2px 16px rgba(4,57,115,.05);
  transition: all .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: 0 12px 40px rgba(4,57,115,.12);
  transform: translateY(-5px);
  border-color: transparent;
}
.product-card__img {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.product-card:hover .product-card__img img { transform: scale(1.04); }
.product-card__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
  background: var(--blue);
  color: var(--white);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 999px;
}
.product-card__body {
  padding: 1.75rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__title {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
  line-height: 1.3;
  letter-spacing: -.01em;
}
.product-card__desc {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 1.4rem;
}
.product-card__foot {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}
.product-card__link {
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: .35rem;
  transition: gap .25s, color .25s;
  white-space: nowrap;
}
.product-card__link:hover { color: var(--blue); gap: .55rem; }
.product-card__link--light { color: rgba(255,255,255,.8); }
.product-card__link--light:hover { color: var(--white); }

/* Featured (navy) card */
.product-card--featured {
  background: var(--navy);
  border-color: var(--navy);
}
.product-card--featured .product-card__title { color: var(--white); }
.product-card--featured .product-card__desc { color: rgba(255,255,255,.7); }

/* Pill button */
.btn--pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 999px;
  padding: .65rem 1.4rem;
  font-size: .82rem;
  font-weight: 600;
  border: none;
  letter-spacing: .01em;
  transition: all .3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn--pill i { font-size: .68rem; }
.btn--pill:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,115,230,.25);
}
.btn--pill-light {
  background: var(--white);
  color: var(--navy);
}
.btn--pill-light:hover {
  background: var(--ice);
  color: var(--blue);
  box-shadow: none;
}

/* ══════════════════════════════════════
   PROCESS — Clean horizontal scroll (improved)
   ══════════════════════════════════════ */
/* Process — section heading visible on all screens */
.process {
  background: var(--white);
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.process__scroll {
  overflow-x: auto;
  padding-bottom: 2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.process__scroll::-webkit-scrollbar { display: none; }
.process__track {
  display: flex;
  position: relative;
  align-items: flex-start;
  justify-content: space-between;
  min-width: 860px;
  padding: 1rem 2rem 0;
  gap: 0;
}
.process__hline {
  position: absolute;
  top: calc(1rem + 20px + 35px);
  left: calc(10% + 35px);
  right: calc(10% + 35px);
  height: 0;
  border-top: 2px dashed var(--gray-200);
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 1;
  padding: 0 .5rem;
  gap: 0;
}
.process-step__num {
  font-family: var(--font-serif);
  font-size: .7rem;
  font-weight: 800;
  color: var(--blue);
  background: var(--ice);
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .6rem;
  letter-spacing: .02em;
}
.process-step__circle {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--blue);
  transition: all .35s var(--ease);
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
  flex-shrink: 0;
}
.process-step__circle--accent {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(4,57,115,.2);
}
.process-step:hover .process-step__circle {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,115,230,.12);
}
.process-step__bottom {
  text-align: center;
  margin-top: 1rem;
  padding: 0 .25rem;
}
.process-step__bottom h3 {
  font-family: var(--font-serif);
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .3rem;
  line-height: 1.3;
}
.process-step__bottom p {
  font-size: .78rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   ABOUT — Clean image + text card (Mapfre "Avançamos" style)
   ══════════════════════════════════════ */
.about { background: var(--white); }
.about__row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  align-items: stretch;
}
.about__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about__img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}
.about__img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(4,57,115,.8), transparent);
}
.about__img-stat {
  display: flex;
  flex-direction: column;
}
.about__img-stat .stat__row {
  display: flex;
  align-items: baseline;
  gap: .15rem;
}
.about__img-stat .stat__number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.about__img-stat .stat__plus {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--ice);
}
.about__img-stat .stat__label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: rgba(255,255,255,.7);
}
.about__text-card {
  background: var(--off-white);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 3rem 3rem 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about__desc {
  color: var(--gray-600);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about__desc--light {
  color: var(--blue);
  font-size: .88rem;
  margin-bottom: 1.5rem;
}

/* ══════════════════════════════════════
   DIFFERENTIALS — Clean and simple
   ══════════════════════════════════════ */
.differentials { background: var(--off-white); }
.diff-stats {
  display: flex;
  justify-content: stretch;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
}
.diff-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .4rem;
}
.diff-stat__num {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  white-space: nowrap;
}
.diff-stat__suf {
  font-family: var(--font-serif);
  font-size: .75em;
  color: var(--blue);
}
.diff-stat__label {
  font-size: .68rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.5;
}
.diff-stat__sep {
  width: 1px; height: 50px;
  background: var(--gray-100);
  flex-shrink: 0;
  margin: 0 1rem;
}
.differentials__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.diff-feat {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  transition: all .3s var(--ease);
}
.diff-feat:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,115,230,.08);
}
.diff-feat__icon {
  width: 48px; height: 48px;
  background: transparent;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all .3s var(--ease);
}
.diff-feat:hover .diff-feat__icon {
  background: var(--blue);
}
.diff-feat__icon i {
  font-size: 1.2rem;
  color: var(--blue);
  transition: color .3s;
}
.diff-feat:hover .diff-feat__icon i { color: var(--white); }
.diff-feat h3 {
  font-family: var(--font-serif);
  font-size: .98rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.3;
}
.diff-feat p {
  font-size: .82rem;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ══════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════ */
.testimonials { background: var(--white); }

/* Testimonials dark — Porto-inspired cinematic navy section */
.testimonials--dark { background: var(--navy); }
.testimonials--dark .section__eyebrow {
  color: rgba(255,255,255,.55);
}
.testimonials--dark .section__eyebrow::before {
  background: rgba(255,255,255,.3);
}
.testimonials--dark .section__title { color: var(--white); }
.testimonials--dark .testimonial-card {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.1);
}
.testimonials--dark .testimonial-card:hover {
  background: rgba(255,255,255,.12);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.testimonials--dark .testimonial-card__text {
  color: rgba(255,255,255,.82);
}
.testimonials--dark .testimonial-card__avatar { background: var(--blue); }
.testimonials--dark .testimonial-card__author strong { color: var(--white); }
.testimonials--dark .testimonial-card__author span { color: rgba(255,255,255,.45); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  padding: 1.75rem;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: all .35s var(--ease);
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
  transform: translateY(-2px);
}
.testimonial-card__stars {
  display: flex;
  gap: .15rem;
  margin-bottom: .75rem;
}
.testimonial-card__stars i { color: #F6AD55; font-size: .82rem; }
.testimonial-card__text {
  font-size: .92rem;
  font-style: italic;
  color: var(--gray-800);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.testimonial-card__avatar {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  border-radius: 50%;
}
.testimonial-card__author strong {
  display: block;
  font-size: .82rem;
  color: var(--navy);
}
.testimonial-card__author span {
  font-size: .72rem;
  color: var(--gray-400);
}

/* ══════════════════════════════════════
   HIGHLIGHTS — Bento Grid with images
   ══════════════════════════════════════ */
.highlights { background: var(--off-white); }
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 1.25rem;
}
.highlight-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius-lg);
}
.highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.highlight-card:hover img { transform: scale(1.04); }
.highlight-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(4,57,115,.85) 0%, rgba(4,57,115,.2) 60%, transparent 100%);
  color: var(--white);
}
.highlight-card__tag {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ice);
  background: rgba(0,115,230,.4);
  padding: .15rem .5rem;
  border-radius: var(--radius-sm);
  margin-bottom: .4rem;
}
.highlight-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .2rem;
}
.highlight-card__body p {
  font-size: .8rem;
  opacity: .85;
  line-height: 1.5;
}
.highlight-card--wide { grid-column: span 2; }

/* ══════════════════════════════════════
   CTA MID — Clean centered
   ══════════════════════════════════════ */
.cta-mid {
  position: relative;
  overflow: clip;
  background: #010b20;
}
.cta-mid__bg {
  position: absolute;
  inset: -80px 0;
  background: url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?w=1400&q=80') center / cover no-repeat;
  filter: brightness(.32);
  will-change: transform;
  z-index: 0;
}
.cta-mid .container { position: relative; z-index: 1; }
.cta-mid__inner {
  max-width: 680px;
  text-align: center;
  margin: 0 auto;
}
.cta-mid__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: .75rem;
}
.cta-mid__text {
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  margin-bottom: 1.75rem;
  line-height: 1.8;
}
.cta-mid__actions {
  display: flex;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.cta-mid .section__eyebrow { color: rgba(255,255,255,.6); }
.cta-mid .section__eyebrow::before { background: rgba(255,255,255,.5); }
.cta-mid .btn--outline {
  border-color: rgba(255,255,255,.55);
  color: var(--white);
}
.cta-mid .btn--outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  color: var(--white);
}

/* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */
.contact { background: var(--off-white); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.contact__title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: .75rem;
}
.contact__text {
  color: var(--gray-600);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-detail {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}
.contact-detail i {
  font-size: 1rem;
  color: var(--blue);
  margin-top: .2rem;
  width: 18px;
  text-align: center;
}
.contact-detail strong {
  display: block;
  font-size: .82rem;
  color: var(--navy);
  margin-bottom: .1rem;
}
.contact-detail p {
  font-size: .82rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.contact-detail a { color: var(--blue); font-weight: 500; }
.contact-detail a:hover { text-decoration: underline; }

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(4,57,115,.06);
}
.contact-form__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
}
.contact-form__hint {
  font-size: .82rem;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
.form-group { margin-bottom: .85rem; }
.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .3rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--gray-100);
  background: var(--off-white);
  color: var(--gray-800);
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-family: var(--font-sans);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--gray-200);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,115,230,.08);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 72px; }
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23043973' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.contact-form__privacy {
  margin-top: .75rem;
  font-size: .72rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: .35rem;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding-top: clamp(2rem, 4vw, 3rem);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand { max-width: 280px; }
.footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: .75rem;
}
.footer__logo-img {
  height: 48px;
  width: auto;
  margin-bottom: .75rem;
  filter: brightness(0) invert(1);
}
.footer__brand p {
  font-size: .82rem;
  line-height: 1.7;
  margin-bottom: .75rem;
}
.footer__social {
  display: flex;
  gap: .6rem;
}
.footer__social a {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: rgba(255,255,255,.6);
  transition: all .3s;
}
.footer__social a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.footer__links h4 {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .85rem;
}
.footer__links a,
.footer__links p {
  display: block;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-bottom: .4rem;
  transition: color .3s;
}
.footer__links a:hover { color: var(--white); }
.footer__bottom { padding: 1.25rem 0; }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p { font-size: .78rem; }
.footer__bottom a {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}
.footer__bottom a:hover { color: var(--white); }

/* ══════════════════════════════════════
   MOBILE NAV
   ══════════════════════════════════════ */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  visibility: hidden;
}
.mobile-nav.open {
  pointer-events: auto;
  visibility: visible;
}
.mobile-nav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4,57,115,.35);
  opacity: 0;
  transition: opacity .35s;
}
.mobile-nav.open .mobile-nav__overlay { opacity: 1; }
.mobile-nav__panel {
  position: absolute;
  top: 0; right: 0;
  width: min(85vw, 340px);
  height: 100%;
  background: var(--white);
  padding: 2rem;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-nav.open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__close {
  align-self: flex-end;
  font-size: 1.3rem;
  color: var(--gray-600);
}
.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.mobile-nav__links a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  padding: .4rem 0;
  border-bottom: 1px solid var(--gray-100);
}

/* ══════════════════════════════════════
   FAQ ACCORDION — Porto-inspired
   ══════════════════════════════════════ */
.faq-section { background: var(--off-white); }

/* 2-column layout: accordion left, info right */
.faq-section__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 5rem;
  align-items: start;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.faq-item {
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq-item.open {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(0,115,230,.08);
}
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: transparent;
  text-align: left;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: background .2s;
  border: none;
}
.faq-item__question:hover { background: var(--off-white); }
.faq-item.open .faq-item__question { background: var(--off-white); }
.faq-item__icon {
  width: 30px; height: 30px;
  background: transparent;
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s var(--ease);
}
.faq-item__icon i { font-size: .72rem; transition: transform .3s var(--ease); }
.faq-item.open .faq-item__icon { background: var(--blue); color: var(--white); }
.faq-item.open .faq-item__icon i { transform: rotate(45deg); }
.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .38s var(--ease);
}
.faq-item.open .faq-item__answer { grid-template-rows: 1fr; }
.faq-item__answer-inner { overflow: hidden; }
.faq-item__answer p {
  padding: .25rem 1.5rem 1.35rem;
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.85;
}

/* FAQ aside (right column) */
.faq-section__aside {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}
.faq-aside__desc {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-top: .75rem;
  margin-bottom: 2rem;
}
.faq-aside__perks {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.faq-aside__perk {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.faq-aside__perk-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  background: transparent;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--blue);
}
.faq-aside__perk strong {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .1rem;
}
.faq-aside__perk span {
  font-size: .78rem;
  color: var(--gray-600);
}
.faq-aside__cta {
  width: 100%;
  justify-content: center;
}

/* ══════════════════════════════════════
   MOBILE CTA BAR — Suhai-inspired
   ══════════════════════════════════════ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 950;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: .65rem 1rem;
  padding-bottom: calc(.65rem + env(safe-area-inset-bottom));
  gap: .65rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.07);
}
.mobile-cta-bar__call,
.mobile-cta-bar__whatsapp {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .01em;
  transition: all .25s var(--ease);
}
.mobile-cta-bar__call {
  background: var(--off-white);
  color: var(--navy);
  border: 1.5px solid var(--gray-100);
}
.mobile-cta-bar__call:hover { background: var(--gray-100); }
.mobile-cta-bar__whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 2px 10px rgba(37,211,102,.3);
}
.mobile-cta-bar__whatsapp:hover { background: #1db954; }

/* ══════════════════════════════════════
   WHATSAPP FLOAT — Suhai enhanced + pulse
   ══════════════════════════════════════ */
@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: .55; }
  80%  { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 58px; height: 58px;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  z-index: 900;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(37,211,102,.35);
  transition: all .3s var(--ease);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulse-ring 2.5s var(--ease) infinite;
  z-index: -1;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
}
.whatsapp-float:hover::before { animation-play-state: paused; }

/* ══════════════════════════════════════
   PRODUCT MODAL
   ══════════════════════════════════════ */
/* ══════════════════════════════════════
   PRODUCT MODAL
   ══════════════════════════════════════ */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  pointer-events: none;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.product-modal.open {
  pointer-events: auto;
  visibility: visible;
}
.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2,8,30,.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .35s;
}
.product-modal.open .product-modal__backdrop { opacity: 1; }

/* Box */
.product-modal__box {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  max-width: 540px;
  width: 100%;
  max-height: 92vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0,0,0,.28), 0 0 0 1px rgba(255,255,255,.06);
  transform: scale(.92) translateY(24px);
  opacity: 0;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.product-modal.open .product-modal__box {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Close button */
.product-modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 10;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 1.5px solid rgba(255,255,255,.28);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  backdrop-filter: blur(4px);
  transition: all .2s;
}
.product-modal__close:hover {
  background: rgba(255,255,255,.32);
  transform: scale(1.1);
}

/* Content panes */
.product-modal__content { display: none; flex-direction: column; overflow: hidden; }
.product-modal__content.active { display: flex; }

/* Header banner */
.product-modal__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem 2rem 1.75rem;
  position: relative;
  overflow: hidden;
}
.product-modal__header::after {
  content: '';
  position: absolute;
  right: -50px; top: -50px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  pointer-events: none;
}
.pm-header--health  { background: linear-gradient(135deg, #02193e 0%, #023e8a 100%); }
.pm-header--auto    { background: linear-gradient(135deg, #02193e 0%, #004fa3 60%, #0366d6 100%); }
.pm-header--vida    { background: linear-gradient(135deg, #02193e 0%, #1a4675 55%, #0f7a8f 100%); }
.pm-header--funeral { background: linear-gradient(135deg, #02193e 0%, #24365c 55%, #5c6b8a 100%); }
.pm-header--consorcios { background: linear-gradient(135deg, #02193e 0%, #4a1a75 55%, #7c3aed 100%); }

.product-modal__header-icon {
  position: relative; z-index: 1;
  width: 60px; height: 60px;
  min-width: 60px;
  border-radius: 16px;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  backdrop-filter: blur(4px);
}
.product-modal__header-text { position: relative; z-index: 1; }
.product-modal__tag {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: .3rem;
}
.product-modal__header-text h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}

/* Scrollable body */
.product-modal__body {
  padding: 1.75rem 2rem 2rem;
  overflow-y: auto;
  flex: 1;
}

/* Lead text */
.product-modal__lead {
  font-size: .925rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1.4rem;
  padding: .85rem 1rem;
  background: var(--ice);
  border-radius: var(--radius);
  border-left: 3px solid var(--blue);
}

/* Stats row */
.product-modal__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem;
  margin-bottom: 1.5rem;
}
.product-modal__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: .8rem .5rem;
  background: #f6f8fb;
  border-radius: 10px;
  border: 1px solid rgba(0,56,130,.08);
}
.product-modal__stat strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.product-modal__stat span {
  font-size: .68rem;
  color: #9ca3af;
  margin-top: .2rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Feature list */
.product-modal__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1.35rem;
}
.product-modal__list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .9rem;
  color: var(--gray-800);
  line-height: 1.5;
  padding: .45rem .6rem;
  border-radius: 8px;
  transition: background .15s;
}
.product-modal__list li:hover { background: var(--ice); }
.product-modal__list i {
  color: var(--green);
  font-size: .9rem;
  margin-top: .13rem;
  flex-shrink: 0;
}

/* Partner chips */
.product-modal__partners {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  margin-bottom: 1.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid #eaecf0;
}
.product-modal__partners-label {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #9ca3af;
  margin-right: .15rem;
}
.product-modal__chip {
  font-size: .74rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--ice);
  border: 1px solid rgba(0,56,130,.12);
  border-radius: 100px;
  padding: .22rem .7rem;
}

/* CTA buttons */
.product-modal__cta { display: flex; gap: .65rem; flex-wrap: wrap; }
.btn--wa-outline {
  background: transparent;
  border: 2px solid #25d366;
  color: #128c4e;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  transition: all .2s;
}
.btn--wa-outline:hover { background: #25d366; color: var(--white); }
.btn--wa-outline i { font-size: 1.1rem; }

/* ══════════════════════════════════════
   REVEAL ANIMATIONS
   ══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal--delay-1 { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .24s; }
.reveal--delay-3 { transition-delay: .36s; }
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet (≤1024px)
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Header */
  .header__nav { display: none; }
  .header__burger { display: flex; }
  .header__actions .btn { display: none; }
  .header__phone { display: none; }

  /* Hero — full width single column */
  .hero__inner { display: block; width: 100%; }
  .hero__main { min-height: 400px; border-radius: var(--radius-lg); }
  .hero__main-body { max-width: 480px; padding: 2rem 2.25rem 1.75rem; }

  /* Pills */
  .pills-bar__inner { gap: .85rem; flex-wrap: wrap; }
  .pills-bar__label { font-size: .82rem; }

  /* Sections */
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .about__row { grid-template-columns: 1fr; }
  .about__text-card {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 2.5rem 2rem;
  }
  .about__img-wrap {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-height: 340px;
  }
  .about__img-wrap img { min-height: 280px; max-height: 340px; }
  .differentials__cards { grid-template-columns: repeat(2, 1fr); }
  .diff-stats {
    flex-wrap: wrap;
    gap: .75rem;
    padding: 1.5rem;
    justify-content: flex-start;
  }
  .diff-stat { min-width: calc(50% - 1rem); align-items: flex-start; text-align: left; }
  .diff-stat__sep { display: none; }
  .highlights__grid { grid-template-columns: 1fr 1fr; }
  .highlight-card--wide { grid-column: span 2; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: span 2; }
  .faq-list { gap: .4rem; }

  /* FAQ collapsa para 1 coluna em tablet */
  .faq-section__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-section__aside { position: static; }
  .faq-section__inner .faq-section__aside { order: -1; }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile (≤768px)
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --header-h: 68px; }

  /* Hero — full-screen no mobile */
  .hero {
    padding: var(--header-h) 0 0;
  }
  .hero .container { padding: 0; }
  .hero__inner { display: block; }
  .hero__main {
    min-height: calc(100svh - var(--header-h));
    border-radius: 0;
  }
  .hero__main-body {
    padding: 1.5rem 1.5rem 2rem;
    max-width: none;
    right: 0;
  }
  .hero__btn-wa { display: none; }
  .hero__trust { font-size: .76rem; gap: .4rem; flex-wrap: wrap; padding-top: .65rem; }
  .hero__title { font-size: clamp(1.35rem, 5vw, 1.75rem); min-height: auto; letter-spacing: 0; }
  .hero__sub { font-size: .85rem; min-height: auto; }
  .hero__sidebar {
    flex-direction: row;
    gap: .75rem;
    padding: .75rem;
    background: var(--off-white);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  .hero__side-card {
    flex: 1;
    min-height: 0;
    border-radius: var(--radius);
  }
  .hero__side-card img { height: 110px; }
  .hero__side-body { padding: .85rem 1rem; }
  .hero__side-body p { font-size: .78rem; }

  /* Pills — horizontal scroll */
  .pills-bar { padding: .9rem 0; }
  .pills-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: .65rem;
  }
  .pills-bar__pills {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: .5rem;
    padding-bottom: .25rem;
    width: 100%;
  }
  .pills-bar__pills::-webkit-scrollbar { display: none; }
  .pills-bar__pill { flex-shrink: 0; padding: .55rem 1rem; font-size: .78rem; }

  /* Partners logo scroll */
  .partner-logo img { height: 24px; }
  .partner-logo--lg img { height: 34px !important; }
  .partner-logo--xl img { height: 42px !important; }

  /* Sections */
  .section { padding: clamp(3rem, 7vw, 5rem) 0; }
  .section__header { margin-bottom: 2rem; }
  .section__title { font-size: clamp(1.6rem, 5.5vw, 2.2rem); }
  .products__grid { grid-template-columns: 1fr; }
  .product-card__img { height: 240px; }
  .about__text-card { padding: 2rem 1.5rem; }
  .differentials__cards { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .diff-feat { padding: 1.25rem 1rem; }
  .diff-stat { min-width: calc(50% - .5rem); }
  .highlights__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .highlight-card--wide { grid-column: span 1; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .contact__inner { gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Contact details — grade 2x2 no mobile */
  .contact__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
  }
  .contact-detail {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: .9rem;
    flex-direction: column;
    gap: .4rem;
    align-items: flex-start;
  }
  .contact-detail i { margin-top: 0; font-size: 1rem; }

  /* FAQ aside perks — grade 2x2 no mobile */
  .faq-aside__perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
    margin-bottom: 1.5rem;
  }
  .faq-aside__perk {
    flex-direction: column;
    gap: .4rem;
    padding: .9rem;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
  }
  .faq-aside__perk-icon { width: 36px; height: 36px; font-size: .88rem; }
  /* Desativa parallax no mobile — iOS não suporta background-attachment: fixed */
  .cta-mid__actions { flex-direction: column; align-items: stretch; }
  .cta-mid__actions .btn { width: 100%; justify-content: center; }
  .footer__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__brand { grid-column: span 1; }
  .footer__logo-img { height: 36px; }

  /* Mobile CTA bar — show on mobile (Suhai pattern) */
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 4.5rem; }
  /* Hide WhatsApp FAB on mobile — mobile-cta-bar already covers it */
  .whatsapp-float { display: none; }

  /* FAQ responsive */
  .faq-item__question { font-size: .88rem; padding: 1rem 1.15rem; }
  .faq-item__answer p { padding: .2rem 1.15rem 1.1rem; font-size: .86rem; }
}

/* ══════════════════════════════════════
   RESPONSIVE — Small Mobile (≤480px)
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  .hero__main { min-height: calc(100svh - var(--header-h)); }
  .hero__main-body { padding: 1.25rem 1.25rem 5rem; }
  .hero__title { min-height: auto; }
  .hero__title { font-size: clamp(1.2rem, 6vw, 1.55rem); }
  .hero__sub { font-size: .82rem; }
  .hero .btn--lg { padding: .8rem 1.5rem; font-size: .82rem; }
  .hero__sidebar { padding: .6rem; }
  .hero__side-card img { height: 90px; }
  .hero__side-body { padding: .65rem .75rem; }

  .pills-bar__label { font-size: .78rem; }
  .differentials__cards { grid-template-columns: 1fr; }
  .diff-stats { flex-wrap: wrap; gap: .6rem; }
  .diff-stat { min-width: calc(50% - .5rem); }
  .contact-form { padding: 1.5rem 1.25rem; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .highlights__grid { grid-auto-rows: 180px; }
  .product-card__actions { flex-direction: column; gap: .5rem; }
  .product-card__actions .btn { width: 100%; justify-content: center; }
  .cta-mid__inner { padding-left: 1.25rem; padding-right: 1.25rem; }
  .process__track { padding: 1rem 1rem 0; }
}
