/* ═══════════════════════════════════════════
   VARIÁVEIS GLOBAIS
═══════════════════════════════════════════ */
:root {
  --c-primary:      #0B6B7A;
  --c-secondary:    #093A4A;
  --c-cta:          #F26B1F;
  --c-cta-dark:     #d95a0f;
  --c-bg:           #FFFFFF;
  --c-bg-alt:       #F4F7F8;
  --c-title:        #0E1A22;
  --c-body:         #4A5A63;
  --c-wpp:          #25D366;
  --c-wpp-dark:     #1eaa52;
  --c-star:         #F5A623;
  --c-white:        #FFFFFF;
  --c-border:       rgba(11,107,122,0.12);

  --r-pill:  999px;
  --r-card:  16px;
  --r-sm:    8px;

  --sh-sm:  0 2px 10px rgba(9,58,74,0.07);
  --sh-md:  0 6px 24px rgba(9,58,74,0.11);
  --sh-lg:  0 12px 48px rgba(9,58,74,0.16);
  --sh-cta: 0 6px 24px rgba(242,107,31,0.38);
  --sh-wpp: 0 6px 24px rgba(37,211,102,0.42);

  --gap:    20px;
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  24px;
  --sp-lg:  40px;
  --sp-xl:  72px;

  --font-display: 'Urbanist', sans-serif;
  --font:         'DM Sans', sans-serif;
  --max-w:  1100px;
  --pad:    20px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--c-body);
  background: var(--c-bg);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
}

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* ═══════════════════════════════════════════
   UTILITÁRIOS
═══════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  min-width: 0;
}

.section-title {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 900;
  color: var(--c-title);
  text-align: center;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-lg);
  max-width: 100%;
  overflow-wrap: break-word;
}

.section-title--nowrap {
  white-space: nowrap;
}

.section-title--single-line {
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  white-space: nowrap;
}

.title-highlight {
  position: relative;
  display: inline-block;
}

.title-highlight--green {
  color: #25D366;
  text-shadow: 0 0 40px rgba(37,211,102,0.55), 0 0 80px rgba(37,211,102,0.2);
}

.title-highlight--red {
  color: #E53935;
  text-shadow: 0 0 36px rgba(229,57,53,0.45), 0 0 72px rgba(229,57,53,0.18);
}

.urgencia .title-highlight--red {
  color: #FF6B66;
}

.mobile-title-line {
  display: inline;
}


/* Badge universal */
.badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: fit-content;
  margin: 0 auto var(--sp-md);
  background: rgba(37,211,102,0.1);
  color: #178a3e;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(37,211,102,0.35);
  text-transform: uppercase;
}

.badge--dark {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.82);
  border-color: rgba(255,255,255,0.22);
}

.badge svg {
  flex-shrink: 0;
  display: block;
  stroke-width: 2.2;
}

.hero__content .badge {
  margin-left: 0;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL (fade-up / left / right / scale)
═══════════════════════════════════════════ */
.fade-up,
.fade-left,
.fade-right,
.fade-scale {
  opacity: 0;
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.fade-up    { transform: translateY(18px); }
.fade-left  { transform: translateX(-24px); }
.fade-right { transform: translateX(24px); }
.fade-scale { transform: scale(0.88); }

.fade-up.is-visible,
.fade-left.is-visible,
.fade-right.is-visible,
.fade-scale.is-visible {
  opacity: 1;
  transform: none;
}

.fade-up:nth-child(2),
.fade-left:nth-child(2),
.fade-right:nth-child(2)  { transition-delay: 0.08s; }
.fade-up:nth-child(3),
.fade-left:nth-child(3),
.fade-right:nth-child(3)  { transition-delay: 0.16s; }
.fade-up:nth-child(4)     { transition-delay: 0.24s; }

/* ═══════════════════════════════════════════
   BOTÕES
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  text-decoration: none;
}

.btn--lg {
  padding: 18px 36px;
  font-size: 0.95rem;
}

/* Texto responsivo nos botões */
.btn__text-mobile { display: none; }
.btn__text-desktop { display: inline; }
.btn__icon-desktop { display: inline-block; flex-shrink: 0; }

@media (max-width: 899px) {
  .btn__text-mobile  { display: inline; }
  .btn__text-desktop { display: none; }
  .btn__icon-desktop { display: none; }
  .btn--lg {
    padding: 16px 28px;
    font-size: 0.93rem;
    white-space: nowrap;
  }
}

.btn--cta {
  background: var(--c-wpp);
  color: var(--c-white);
  box-shadow: var(--sh-wpp);
}

.btn--cta:hover,
.btn--cta:focus-visible {
  background: var(--c-wpp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}

.btn--wpp {
  background: var(--c-wpp);
  color: var(--c-white);
  box-shadow: var(--sh-wpp);
}

.btn--wpp:hover,
.btn--wpp:focus-visible {
  background: var(--c-wpp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}

@keyframes pulse-btn {
  0%, 100% {
    box-shadow: var(--sh-wpp);
  }
  50% {
    box-shadow: 0 6px 32px rgba(37,211,102,0.55), 0 0 0 10px rgba(37,211,102,0.1);
  }
}

.btn--pulse {
  animation: pulse-btn 2.8s ease-in-out infinite;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--sp-lg);
}

.section-cta--dark {
  margin-top: calc(var(--sp-lg) + 4px);
}

@media (max-width: 899px) {
  .section-cta {
    padding: 0 var(--pad);
  }

  .section-cta .btn {
    width: min(100%, 340px);
    min-height: 52px;
    padding: 16px 28px;
    font-size: 0.93rem;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }
}

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid rgba(11,107,122,0.1);
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(9,58,74,0.1);
}

.site-header__inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
  padding: 0 4px;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.site-header__logo {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.site-header__brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.site-header__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}

.site-header__sub {
  font-size: 0.54rem;
  font-weight: 600;
  color: rgba(9,58,74,0.45);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  line-height: 1;
}

.site-header__nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.site-header__nav a {
  position: relative;
  padding: 6px 12px;
  color: var(--c-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.site-header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--c-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible {
  color: var(--c-primary);
}

.site-header__nav a:hover::after,
.site-header__nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 18px;
  border-radius: var(--r-pill);
  background: var(--c-wpp);
  color: var(--c-white);
  box-shadow: var(--sh-wpp);
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  animation: pulse-btn 2.8s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-header__cta:hover,
.site-header__cta:focus-visible {
  background: var(--c-wpp-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.52);
}

.site-header__cta svg {
  flex-shrink: 0;
}

@media (max-width: 380px) {
  .site-header__brand-text { display: none; }
  .site-header__cta { padding: 10px 12px; font-size: 0.66rem; gap: 5px; }
}

@media (max-width: 899px) {
  .site-header__inner {
    gap: 8px;
    padding: 0;
  }

  .site-header__brand {
    gap: 8px;
    min-width: 0;
  }

  .site-header__logo {
    width: 38px;
    height: 38px;
  }

  .site-header__name {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
  }

  .site-header__sub {
    font-size: 0.48rem;
    letter-spacing: 0.22em;
  }

  .site-header__hamburger {
    width: 34px;
    height: 34px;
    padding: 5px;
  }

  .site-header__cta {
    display: none;
  }
}

/* ═══════════════════════════════════════════
   SEÇÃO 1: HERO
═══════════════════════════════════════════ */

.hero {
  position: relative;
  font-family: var(--font-display);
  background: #fff url("Antes (2).jpg") center top / cover no-repeat;
  height: calc(100vw * 900 / 1920);
  padding: clamp(128px, 13vw, 152px) 0 0;
  overflow: hidden;
}

.hero::before {
  content: none;
}

.hero__bg-orb {
  display: none;
}

.hero__bg-orb--1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  top: -160px;
  right: -160px;
}

.hero__bg-orb--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(242,107,31,0.08) 0%, transparent 70%);
  bottom: 60px;
  left: -80px;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-lg);
  position: relative;
  z-index: 1;
}

.hero__content {
  text-align: left;
  max-width: 580px;
}

.hero__badge {
  display: inline-block;
  background: rgba(11,107,122,0.08);
  color: var(--c-primary);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(11,107,122,0.14);
  margin-bottom: var(--sp-sm);
}

.hero__headline {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  color: var(--c-title);
  line-height: 1.08;
  margin-bottom: var(--sp-md);
}

.hero__headline-highlight {
  display: inline-block;
  color: #25D366;
  text-shadow: 0 0 40px rgba(37,211,102,0.55), 0 0 80px rgba(37,211,102,0.2);
  white-space: nowrap;
}

.hero__subheadline {
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  color: var(--c-body);
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
}

.hero__microcopy {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  font-size: 0.82rem;
  color: rgba(9,58,74,0.64);
  margin-top: var(--sp-sm);
  flex-wrap: wrap;
}

/* Before/After visual */
.hero__visual {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-md);
  width: 100%;
  max-width: 440px;
}

.hero__product-mobile {
  display: none;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.product-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,35,78,0.84);
  backdrop-filter: blur(6px);
}

.product-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(88vw, 420px);
  max-height: 84vh;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(37,211,102,0.34);
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(0,0,0,0.34);
  transform: scale(0.96);
  transition: transform 0.22s cubic-bezier(.22,1,.36,1);
}

.product-modal.is-open .product-modal__dialog {
  transform: scale(1);
}

.product-modal__dialog img {
  width: 100%;
  max-height: calc(84vh - 24px);
  display: block;
  object-fit: contain;
  border-radius: 6px;
}

.product-modal__close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #25D366;
  box-shadow: 0 10px 24px rgba(0,0,0,0.24);
  z-index: 2;
}

.product-modal__close span {
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: #ffffff;
}

.product-modal__close span:first-child {
  transform: rotate(45deg);
}

.product-modal__close span:last-child {
  transform: rotate(-45deg);
}

.before-after {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  width: 100%;
}

.before-after__panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.before-after__img {
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.before-after__img--before {
  background: linear-gradient(175deg, #1a4055 0%, #0e2533 100%);
  border: 2px solid rgba(255,255,255,0.08);
  opacity: 0.75;
}

.before-after__img--after {
  background: linear-gradient(175deg, #11899a 0%, #0B6B7A 100%);
  border: 2px solid rgba(242,107,31,0.6);
  box-shadow: 0 0 28px rgba(242,107,31,0.2);
}

.before-after__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-bottom: 36px;
}

.before-after__label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
  padding: 4px 12px;
  border-radius: var(--r-pill);
}

.before-after__label--after {
  background: var(--c-cta);
  color: var(--c-white);
  opacity: 1;
}

/* Frasco do produto */
.hero__vial-wrap {
  display: flex;
  justify-content: center;
  margin-top: var(--sp-xs);
}

.vial {
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
}

.vial__cap {
  width: 22px;
  height: 18px;
  background: linear-gradient(180deg, #e0f4f8 0%, #9fd0db 100%);
  border-radius: 5px 5px 0 0;
}

.vial__neck {
  width: 16px;
  height: 8px;
  background: linear-gradient(180deg, #b8e4ec 0%, #8cc8d4 100%);
}

.vial__body {
  width: 58px;
  min-height: 110px;
  background: linear-gradient(160deg, rgba(13,120,138,0.85) 0%, rgba(9,58,74,0.95) 100%);
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vial__liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: rgba(11,107,122,0.4);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.vial__text {
  position: relative;
  z-index: 1;
  padding: 0 6px;
}

.vial__name {
  display: block;
  font-size: 0.6rem;
  font-weight: 800;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.vial__dose {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}

.vial__sub {
  display: block;
  font-size: 0.48rem;
  color: rgba(255,255,255,0.5);
  margin-top: 3px;
  line-height: 1.4;
}

.vial__base {
  width: 64px;
  height: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 100%);
  border-radius: 0 0 6px 6px;
}

.hero__wave {
  display: none;
}

.hero__wave svg {
  width: 100%;
  display: block;
}

/* ═══════════════════════════════════════════
   SEÇÃO 2: DORES
═══════════════════════════════════════════ */
.dores {
  padding: var(--sp-xl) 0;
  background: var(--c-bg-alt);
  margin-top: -1px;
  position: relative;
  overflow: hidden;
}

/* ═══════════════════════════════════
   SEÇÃO 2: ENTREGA
═══════════════════════════════════ */
.entrega {
  padding: var(--sp-xl) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.entrega::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(37,211,102,0.08) 0%, transparent 34%),
    linear-gradient(180deg, rgba(244,247,248,0.8) 0%, rgba(255,255,255,0) 46%);
  pointer-events: none;
}

.entrega > .container {
  position: relative;
  z-index: 1;
}

.entrega__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  grid-template-areas:
    "content video"
    "details video";
  align-items: center;
  column-gap: clamp(28px, 6vw, 72px);
  row-gap: 0;
}

.entrega__content {
  grid-area: content;
  color: var(--c-title);
}

.entrega__details {
  grid-area: details;
}

.entrega__content .badge {
  margin-left: 0;
  margin-right: 0;
}

.entrega__content .section-title {
  color: var(--c-title);
  text-align: left;
  margin-bottom: 18px;
}

.entrega__content > p {
  max-width: 560px;
  color: var(--c-body);
  font-size: 1.04rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.entrega__list {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.entrega__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--c-secondary);
  font-weight: 700;
}

.entrega__list svg {
  flex-shrink: 0;
}

.entrega__video-wrap {
  grid-area: video;
  position: relative;
  width: min(100%, 680px);
  justify-self: center;
  padding: 10px;
  border: 1px solid rgba(11,107,122,0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(9,58,74,0.14);
}

.entrega__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  border-radius: 6px;
  background: #041e30;
}

.entrega__video-hint {
  display: none;
}

.entrega__video-wrap.is-started .entrega__video-hint {
  display: none;
}

.entrega__cta svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.dores::before {
  display: none;
}

.dores > .container { position: relative; z-index: 1; }

.dores .badge {
  background: rgba(229,57,53,0.1);
  color: #E53935;
  border-color: rgba(229,57,53,0.32);
}

.dores__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: var(--sp-lg);
}

.dor-card {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  background: var(--c-bg);
  border-radius: var(--r-card);
  padding: 20px var(--sp-md);
  box-shadow: 0 1px 4px rgba(9,58,74,0.05), 0 4px 16px rgba(9,58,74,0.06);
  border: 1px solid rgba(9,58,74,0.06);
  border-left: 3px solid #E53935;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(.22,1,.36,1), box-shadow 0.3s ease;
}

.dor-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(229,57,53,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.dor-card:hover {
  transform: translateX(7px);
  box-shadow: 0 4px 20px rgba(229,57,53,0.14), 0 8px 32px rgba(9,58,74,0.08);
}

.dor-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(145deg, rgba(229,57,53,0.1) 0%, rgba(229,57,53,0.04) 100%);
  border-radius: 14px;
  border: 1px solid rgba(229,57,53,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1);
}

.dor-card__icon svg {
  stroke: #E53935;
}

.dor-card:hover .dor-card__icon {
  transform: scale(1.1);
}

.dor-card p {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--c-title);
  line-height: 1.5;
  min-width: 0;
  overflow-wrap: anywhere;
}

.dores__fechamento {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: #178a3e;
  background: linear-gradient(135deg, rgba(37,211,102,0.12) 0%, rgba(37,211,102,0.05) 100%);
  padding: var(--sp-md) var(--sp-lg);
  border-radius: var(--r-card);
  border: 1px solid rgba(37,211,102,0.28);
  position: relative;
  overflow: hidden;
}

.dores__fechamento::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #25D366, rgba(37,211,102,0.35));
  border-radius: 0 2px 2px 0;
}

/* ═══════════════════════════════════════════
   SEÇÃO 3: BENEFÍCIOS
═══════════════════════════════════════════ */
.beneficios {
  padding: var(--sp-xl) 0;
  background: var(--c-bg);
  position: relative;
}

.beneficios::before {
  display: none;
}

.beneficios__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
  position: relative;
}

.beneficio-card {
  text-align: center;
  padding: var(--sp-lg) var(--sp-md);
  background: #ffffff;
  border-radius: var(--r-card);
  box-shadow: 0 2px 4px rgba(9,58,74,0.04), 0 8px 24px rgba(9,58,74,0.07), 0 24px 48px rgba(9,58,74,0.04);
  border-top: 3px solid var(--c-primary);
  position: relative;
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(.22,1,.36,1), box-shadow 0.32s cubic-bezier(.22,1,.36,1);
}

.beneficio-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background: linear-gradient(160deg, rgba(11,107,122,0.03) 0%, transparent 55%);
  pointer-events: none;
}

.beneficio-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-primary), rgba(11,107,122,0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1);
}

.beneficio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 8px rgba(9,58,74,0.05), 0 16px 40px rgba(9,58,74,0.1), 0 32px 64px rgba(9,58,74,0.06), 0 0 0 1px rgba(11,107,122,0.07);
}

.beneficio-card:hover::after {
  transform: scaleX(1);
}

.beneficio-card__icon {
  width: 76px;
  height: 76px;
  background: linear-gradient(145deg, rgba(11,107,122,0.12) 0%, rgba(9,58,74,0.06) 100%);
  border-radius: 22px;
  border: 1px solid rgba(11,107,122,0.12);
  box-shadow: 0 0 0 7px rgba(11,107,122,0.05), inset 0 1px 0 rgba(255,255,255,0.85), 0 4px 14px rgba(11,107,122,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-md);
  position: relative;
  transition: transform 0.32s cubic-bezier(.34,1.56,.64,1), box-shadow 0.32s ease;
}

.beneficio-card:hover .beneficio-card__icon {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 0 0 10px rgba(11,107,122,0.07), 0 8px 22px rgba(11,107,122,0.18);
}

.beneficio-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-title);
  margin-bottom: var(--sp-xs);
  line-height: 1.3;
}

.beneficio-card p {
  font-size: 0.88rem;
  color: var(--c-body);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   SEÇÃO 4: COMO FUNCIONA
═══════════════════════════════════════════ */
.como-funciona {
  padding: var(--sp-xl) 0;
  background: #07234E;
  position: relative;
  overflow: hidden;
}

.como-funciona .badge {
  background: rgba(37,211,102,0.12);
  color: #25D366;
  border-color: rgba(37,211,102,0.35);
}

.como-funciona::before {
  display: none;
}

.como-funciona::after {
  display: none;
}

.passos {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  position: relative;
  counter-reset: passo-num;
}

.passo {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  padding: var(--sp-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-card);
  position: relative;
  overflow: hidden;
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s cubic-bezier(.22,1,.36,1);
  counter-increment: passo-num;
}

.passo::before {
  content: counter(passo-num, decimal-leading-zero);
  position: absolute;
  right: -4px;
  bottom: -18px;
  font-size: 7.5rem;
  font-weight: 900;
  font-family: var(--font-display);
  color: rgba(255,255,255,0.045);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
  user-select: none;
}

.passo:hover {
  background: rgba(255,255,255,0.085);
  border-color: rgba(255,255,255,0.16);
  transform: translateX(5px);
}

.passo__num {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(145deg, #25D366 0%, #178a3e 100%);
  color: var(--c-white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 900;
  box-shadow: 0 4px 18px rgba(37,211,102,0.5), inset 0 1px 0 rgba(255,255,255,0.22);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  transition: transform 0.28s cubic-bezier(.34,1.56,.64,1), box-shadow 0.28s ease;
}

.passo:hover .passo__num {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.65), inset 0 1px 0 rgba(255,255,255,0.22);
}

.passo__body {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.passo__body h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.passo__body p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.passo__conector {
  width: 2px;
  height: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.05));
  margin-left: 25px;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════
   SEÇÃO 5: DEPOIMENTOS (estilo Google Reviews)
═══════════════════════════════════════════ */
.depoimentos {
  padding: var(--sp-xl) 0;
  background: var(--c-bg-alt);
}

/* --- Resumo de rating Google --- */
.google-summary {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  background: var(--c-bg);
  border-radius: var(--r-card);
  padding: var(--sp-md) var(--sp-lg);
  box-shadow: var(--sh-sm);
  border: 1px solid rgba(0,0,0,0.06);
  max-width: 420px;
  margin: 0 auto var(--sp-lg);
}

.google-summary__score {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--c-title);
  line-height: 1;
  flex-shrink: 0;
}

.google-summary__middle {
  flex: 1;
}

.google-summary__stars {
  color: var(--c-star);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 3px;
}

.google-summary__middle p {
  font-size: 0.75rem;
  color: var(--c-body);
  line-height: 1.45;
}

.google-summary__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
  border-left: 1px solid rgba(0,0,0,0.08);
  padding-left: var(--sp-md);
}

.google-summary__logo span {
  font-size: 0.72rem;
  color: var(--c-body);
  font-weight: 600;
}

/* --- Carrossel --- */
.depo-carousel-wrap {
  position: relative;
}

.depo-track {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: var(--sp-sm) max(40px, calc((100vw - 320px) / 2));
}

.depo-track::-webkit-scrollbar { display: none; }

/* Clones ficam ocultos no mobile */
.depo-card[data-clone] { display: none; }

/* --- Card individual --- */
.depo-card {
  flex: 0 0 calc(100vw - 80px);
  max-width: 320px;
  scroll-snap-align: center;
  background: var(--c-bg);
  border-radius: var(--r-card);
  padding: var(--sp-md);
  box-shadow: 0 2px 14px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@keyframes depo-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.depo-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.depo-card__avatar {
  width: 42px;
  height: 42px;
  background: var(--av, #0B6B7A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0;
}

.depo-card__meta {
  flex: 1;
  min-width: 0;
}

.depo-card__meta strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-title);
  line-height: 1.3;
}

.depo-card__meta span {
  font-size: 0.75rem;
  color: var(--c-body);
}

.depo-card__glogo {
  flex-shrink: 0;
}

.depo-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.depo-card__stars {
  color: var(--c-star);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.depo-card__time {
  font-size: 0.75rem;
  color: var(--c-body);
}

.depo-card__text {
  font-size: 0.88rem;
  color: var(--c-body);
  line-height: 1.65;
}

/* --- Setas de navegação --- */
.depo-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: var(--sp-md);
}

.depo-nav__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-bg);
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-title);
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}

.depo-nav__btn:hover {
  background: var(--c-bg-alt);
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
  transform: scale(1.06);
}

.depo-nav__btn:active {
  transform: scale(0.96);
}

/* ═══════════════════════════════════════════
   SEÇÃO 6: URGÊNCIA
═══════════════════════════════════════════ */
.urgencia {
  position: relative;
  padding: var(--sp-xl) 0;
  background: #07234E;
  overflow: hidden;
}

.urgencia::before {
  display: none;
}

.urg-bg { display: none; }

.urg-bg__orb {
  position: absolute;
  border-radius: 50%;
}

.urg-bg__orb--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(242,107,31,0.18) 0%, rgba(242,107,31,0.04) 40%, transparent 65%);
  top: -260px;
  right: -200px;
  filter: blur(2px);
}

.urg-bg__orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(11,107,122,0.28) 0%, rgba(9,58,74,0.1) 45%, transparent 68%);
  bottom: -160px;
  left: -140px;
  filter: blur(3px);
}

.urgencia__inner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Glass panel container */
.urgencia__panel {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  position: relative;
  overflow: visible;
}

.urgencia__panel::before {
  display: none;
}

/* Badge da urgência herda de .badge.badge--dark */

.urgencia .badge {
  background: rgba(229,57,53,0.12);
  color: #FF6B66;
  border-color: rgba(229,57,53,0.35);
}

.urgencia__panel h2 {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.12;
  margin-bottom: var(--sp-sm);
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-align: center;
  width: 100%;
}

.urgencia__panel > p {
  color: rgba(200,235,242,0.72);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Divisor com label */
.urgencia__divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--sp-md);
}

.urgencia__divider::before,
.urgencia__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15));
}

.urgencia__divider::after {
  background: linear-gradient(90deg, rgba(255,255,255,0.15), transparent);
}

.urgencia__divider span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(180,220,230,0.5);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: var(--sp-lg);
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(175deg, rgba(255,255,255,0.1) 0%, rgba(4,30,48,0.7) 100%);
  border: 1px solid rgba(229,57,53,0.38);
  border-top-color: rgba(255,255,255,0.2);
  border-radius: 18px;
  padding: 20px 8px 14px;
  min-width: 92px;
  box-shadow:
    0 0 0 1px rgba(229,57,53,0.13),
    0 0 30px rgba(229,57,53,0.13),
    0 16px 40px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.countdown__card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(229,57,53,0.75), transparent);
  border-radius: 0 0 18px 18px;
}

.countdown__card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.06);
  transform: translateY(-50%);
}

.countdown__num {
  display: block;
  font-size: 2.6rem;
  font-weight: 900;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 0 30px rgba(255,255,255,0.15);
}

.countdown__card-label {
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: rgba(255,107,102,0.9);
  text-transform: uppercase;
  line-height: 1;
}

.countdown__sep {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255,107,102,0.75);
  margin-bottom: 14px;
  text-shadow: 0 0 20px rgba(229,57,53,0.45);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   SEÇÃO 7: FAQ
═══════════════════════════════════════════ */
.faq {
  padding: var(--sp-xl) 0;
  background: var(--c-bg);
  position: relative;
}

.faq::before {
  display: none;
}

.faq__list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  position: relative;
}

.faq__item {
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  overflow: hidden;
  background: #ffffff;
  transition: box-shadow 0.28s ease, border-color 0.28s ease, transform 0.28s cubic-bezier(.22,1,.36,1);
}

.faq__item:hover {
  border-color: rgba(37,211,102,0.28);
  transform: translateX(3px);
}

.faq__item.is-open {
  box-shadow: 0 4px 18px rgba(9,58,74,0.08), 0 16px 32px rgba(9,58,74,0.05);
  border-color: rgba(37,211,102,0.38);
  border-left-width: 3px;
  border-left-color: #25D366;
  transform: none;
}

.faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: var(--sp-md) var(--sp-md) var(--sp-md) calc(var(--sp-md) - 2px);
  text-align: left;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--c-title);
  transition: background 0.2s ease, color 0.2s ease;
}

.faq__btn:hover {
  background: rgba(37,211,102,0.04);
}

.faq__item.is-open .faq__btn {
  color: #178a3e;
  background: rgba(37,211,102,0.04);
}

.faq__chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(37,211,102,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #178a3e;
  transition: transform 0.32s cubic-bezier(.22,1,.36,1), background 0.2s ease;
}

.faq__item.is-open .faq__chevron {
  transform: rotate(180deg);
  background: rgba(37,211,102,0.16);
}

.faq__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(.22,1,.36,1), padding 0.2s ease;
  padding: 0 var(--sp-md);
}

.faq__panel:not([hidden]) {
  max-height: 500px;
  padding: 0 var(--sp-md) var(--sp-md);
}

.faq__panel[hidden] {
  display: block !important;
  max-height: 0;
  padding-bottom: 0;
  visibility: hidden;
  pointer-events: none;
}

.faq__panel p {
  font-size: 0.88rem;
  color: var(--c-body);
  line-height: 1.75;
  border-top: 1px solid rgba(37,211,102,0.16);
  padding-top: var(--sp-sm);
}

.faq__panel a {
  color: #178a3e;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.18s;
}

.faq__panel a:hover {
  color: #25D366;
}

/* ═══════════════════════════════════════════
   SEÇÃO 8: CTA FINAL
═══════════════════════════════════════════ */
.cta-final {
  padding: var(--sp-xl) 0;
  background: #07234E;
  position: relative;
  overflow: hidden;
}

.cta-final__orb {
  display: none;
}

.cta-final__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,211,102,0.12) 0%, rgba(37,211,102,0.03) 40%, transparent 68%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(1px);
}

.cta-final__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242,107,31,0.14) 0%, transparent 65%);
  bottom: -120px;
  right: -100px;
  filter: blur(3px);
}

.cta-final__inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-final .badge {
  background: rgba(37,211,102,0.12);
  color: #25D366;
  border-color: rgba(37,211,102,0.35);
}

.cta-final__inner h2 {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 900;
  color: var(--c-white);
  line-height: 1.12;
  margin-bottom: var(--sp-sm);
  letter-spacing: -0.025em;
}


.cta-final__highlight {
  color: var(--c-wpp);
  text-shadow: 0 0 40px rgba(37,211,102,0.55), 0 0 80px rgba(37,211,102,0.2);
  position: relative;
  display: inline-block;
}

.cta-final__inner p {
  color: rgba(200,230,238,0.62);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final__btn-wrap {
  position: relative;
  display: inline-flex;
  justify-content: center;
  margin-bottom: var(--sp-md);
}

.cta-final__glow {
  position: absolute;
  inset: -20px -40px;
  background: radial-gradient(ellipse, rgba(37,211,102,0.35) 0%, transparent 65%);
  filter: blur(20px);
  pointer-events: none;
  border-radius: 50%;
  animation: glow-pulse 2.8s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.12); }
}

.cta-final__trust {
  list-style: none;
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 24px;
  margin-top: var(--sp-md);
}

.cta-final__trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(180,220,235,0.55);
  letter-spacing: 0.02em;
}

.cta-final__trust li svg {
  color: var(--c-wpp);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   SEÇÃO 9: FOOTER
═══════════════════════════════════════════ */
.footer {
  padding: 28px 0;
  background: #092755;
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer__brand img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  padding: 2px;
  flex-shrink: 0;
}

.footer__brand span {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__dev {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.32);
  font-weight: 500;
  margin: 0;
}

/* ═══════════════════════════════════════════
   BOTÃO FLUTUANTE WHATSAPP
═══════════════════════════════════════════ */
@media (max-width: 520px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
}

.wpp-fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: var(--c-wpp);
  color: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: fab-pulse 2.8s ease-in-out infinite;
  transition: transform 0.2s ease;
}

.wpp-fab:hover {
  transform: scale(1.12);
  animation-play-state: paused;
  box-shadow: 0 6px 28px rgba(37,211,102,0.65);
}

@keyframes fab-pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 12px rgba(37,211,102,0.1);
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVO: TABLET (≥ 640px)
═══════════════════════════════════════════ */
@media (min-width: 640px) {
  :root {
    --pad: 28px;
  }

  .dores__grid {
    grid-template-columns: 1fr 1fr;
  }

  .beneficios__grid {
    grid-template-columns: 1fr 1fr;
  }

}

/* ═══════════════════════════════════════════
   RESPONSIVO: DESKTOP (≥ 900px)
═══════════════════════════════════════════ */
@media (min-width: 900px) {
  :root {
    --pad: 40px;
  }

  .site-header__inner {
    padding: 0 8px;
  }

  .site-header__nav {
    display: flex;
  }

  .site-header__nav a {
    padding: 6px 8px;
    font-size: 0.72rem;
  }

  .site-header__cta {
    padding: 12px 16px;
    font-size: 0.7rem;
  }

  .hero__inner {
    flex-direction: row;
    align-items: center;
    gap: clamp(40px, 6vw, 80px);
  }

  .hero__content {
    text-align: left;
    flex: 1 1 auto;
    min-width: 0;
  }

  .hero__microcopy {
    justify-content: flex-start;
  }

  .hero__visual {
    flex: 0 0 380px;
    width: 380px;
  }

  .dores__grid {
    grid-template-columns: 1fr 1fr;
  }

  .beneficios__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .passos {
    flex-direction: row;
    align-items: stretch;
    gap: var(--sp-sm);
  }

  .passo {
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: var(--sp-lg) var(--sp-md);
  }

  .passo:hover {
    transform: translateY(-5px);
  }

  .passo__conector {
    width: 2px;
    height: auto;
    min-height: 60px;
    background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.04));
    margin: var(--sp-lg) 0;
    flex-shrink: 0;
    border-radius: 2px;
  }

  /* Desktop: carrossel infinito da direita para esquerda */
  .depo-carousel-wrap {
    overflow: hidden;
  }

  .depo-track {
    overflow: visible;
    scroll-snap-type: none;
    width: max-content;
    gap: 20px;
    padding: var(--sp-sm) 0;
    animation: depo-marquee 60s linear infinite;
    will-change: transform;
  }

  .depo-track:hover {
    animation-play-state: paused;
  }

  .depo-card {
    flex: 0 0 300px;
    max-width: none;
    scroll-snap-align: none;
  }

  .depo-card[data-clone] {
    display: flex;
  }

  .depo-nav {
    display: none;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVO: WIDE (≥ 1100px)
═══════════════════════════════════════════ */
@media (min-width: 1080px) {
  .site-header__nav a {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .site-header__cta {
    padding: 12px 22px;
    font-size: 0.76rem;
  }
}

@media (min-width: 1100px) {
  .before-after__img {
    aspect-ratio: 3/4;
  }
}

/* ═══════════════════════════════════════════
   ANIMAÇÕES & MICRO-INTERAÇÕES
═══════════════════════════════════════════ */

/* Scroll progress bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  z-index: 100000;
  background: #092755;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
  will-change: transform;
}

/* Ripple */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.32);
  transform: scale(0);
  animation: ripple-anim 0.6s ease-out forwards;
  pointer-events: none;
}

@keyframes ripple-anim {
  to { transform: scale(4); opacity: 0; }
}

/* Shimmer nos botões */
.btn,
.site-header__cta {
  position: relative;
  overflow: hidden;
}

.btn::after,
.site-header__cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.2) 50%, transparent 65%);
  transform: translateX(-110%);
}

.btn:hover::after,
.site-header__cta:hover::after {
  transform: translateX(110%);
  transition: transform 0.5s ease;
}

/* Countdown flip */
@keyframes flip-down {
  0%   { transform: translateY(0);   opacity: 1; }
  45%  { transform: translateY(-60%); opacity: 0; }
  55%  { transform: translateY(60%);  opacity: 0; }
  100% { transform: translateY(0);   opacity: 1; }
}

.countdown__num.is-flipping {
  animation: flip-down 0.38s cubic-bezier(.4,0,.2,1);
}

/* Ícone dos cards de benefício */
.beneficio-card__icon {
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), background 0.3s ease;
}

.beneficio-card:hover .beneficio-card__icon {
  transform: scale(1.12) rotate(-4deg);
  background: linear-gradient(145deg, rgba(11,107,122,0.22) 0%, rgba(9,58,74,0.12) 100%);
}

/* Ícone dos cards de dor */
.dor-card__icon {
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), background 0.25s ease;
}

.dor-card:hover .dor-card__icon {
  transform: scale(1.1);
  background: rgba(229,57,53,0.15);
}

/* Cards de depoimento no mobile */
.depo-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.depo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

/* Número do passo */
.passo__num {
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s ease;
}

.passo:hover .passo__num {
  transform: scale(1.12);
  box-shadow: 0 6px 26px rgba(37,211,102,0.65);
}

/* Google summary hover */
.google-summary {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.google-summary:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}

/* FAQ item hover melhorado */
.faq__item:not(.is-open):hover {
  border-color: rgba(37,211,102,0.3);
  box-shadow: var(--sh-sm);
}

/* Dores fechamento hover */
.dores__fechamento {
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.dores__fechamento:hover {
  background: rgba(37,211,102,0.14);
  box-shadow: var(--sh-sm);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   ACESSIBILIDADE
═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .btn--pulse,
  .wpp-fab {
    animation: none;
  }
  .btn::after,
  .site-header__cta::after {
    display: none;
  }
  .countdown__num.is-flipping {
    animation: none;
  }
}

@media (max-width: 899px) {
  .fade-up,
  .fade-left,
  .fade-right,
  .fade-scale {
    transition-duration: 0.28s;
  }

  .dor-card:hover,
  .passo:hover,
  .faq__item:hover,
  .depo-card:hover,
  .google-summary:hover,
  .dores__fechamento:hover {
    transform: none;
  }
}

:focus-visible {
  outline: 3px solid var(--c-cta);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════
   HAMBURGER MENU (mobile)
═══════════════════════════════════════════ */
.site-header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 6px;
  flex-shrink: 0;
  background: rgba(11,107,122,0.06);
  border: 1px solid rgba(11,107,122,0.12);
  border-radius: 8px;
  cursor: pointer;
}

.site-header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-secondary);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(.22,1,.36,1), opacity 0.28s ease, background 0.28s ease;
}

.site-header__hamburger.is-open span {
  background: var(--c-secondary);
}

.site-header__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.site-header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 900px) {
  .site-header__hamburger { display: none; }
  .cta-final__trust { display: flex; }
}

/* ═══════════════════════════════════════════
   MOBILE NAV OVERLAY
═══════════════════════════════════════════ */
.mobile-nav {
  position: fixed;
  top: 62px;
  left: 12px;
  right: 12px;
  z-index: 197;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 10px;
  border: 1px solid rgba(11,107,122,0.12);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(9,58,74,0.18);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(.22,1,.36,1);
  overflow: hidden;
}

.mobile-nav::before {
  content: none;
}

.mobile-nav::after {
  content: none;
}

.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
  position: relative;
  z-index: 1;
}

.mobile-nav nav a:not(.mobile-nav__cta) {
  display: flex;
  align-items: center;
  width: 100%;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-secondary);
  letter-spacing: 0;
  padding: 12px;
  border-bottom: 1px solid rgba(11,107,122,0.08);
  border-radius: 6px;
  transition: color 0.18s ease, background 0.18s ease;
  position: relative;
}

.mobile-nav nav a:not(.mobile-nav__cta):last-of-type {
  border-bottom: none;
}

.mobile-nav nav a:not(.mobile-nav__cta):hover {
  color: var(--c-primary);
  background: rgba(11,107,122,0.06);
}

.mobile-nav nav a:not(.mobile-nav__cta)::after {
  content: '→';
  margin-left: auto;
  font-size: 1.1rem;
  color: var(--c-cta);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(.22,1,.36,1);
}

.mobile-nav nav a:not(.mobile-nav__cta):hover::after {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav__cta {
  margin-top: 10px;
  width: 100%;
  justify-content: center;
  min-height: 48px;
  font-size: 0.84rem;
}

.mobile-nav nav a:not(.mobile-nav__cta)::after,
.mobile-nav nav a:not(.mobile-nav__cta):hover::after {
  content: none;
}

@media (min-width: 900px) {
  .mobile-nav { display: none !important; }
}

/* ═══════════════════════════════════════════
   TILT 3D
═══════════════════════════════════════════ */
/* Mobile geral: hero, textos e secoes sem alterar depoimentos */
@media (max-width: 899px) {
  :root {
    --pad: 18px;
    --sp-xl: 56px;
    --sp-lg: 32px;
  }

  .site-header__inner {
    min-height: 62px;
  }

  .hero {
    display: flex;
    align-items: flex-end;
    min-height: auto;
    height: calc(100vw * 900 / 750);
    margin-top: 62px;
    padding: 0;
    background: #07234E url("Emagreça Rápido (1).jpg") center top / 100% auto no-repeat;
  }

  .hero::before {
    content: none;
  }

  .hero > .container {
    width: 100%;
  }

  .hero__inner {
    align-items: center;
    justify-content: flex-end;
    min-height: 0;
    height: 100%;
    gap: 0;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding-bottom: 170px;
    text-align: center;
  }

  .hero__content .badge,
  .hero__headline,
  .hero__subheadline,
  .hero__microcopy,
  .hero__product-mobile {
    display: none;
  }

  .hero__content .badge {
    margin-left: auto;
    margin-right: auto;
    background: rgba(37,211,102,0.12);
    color: #25D366;
    border-color: rgba(37,211,102,0.28);
    box-shadow: none;
  }

  .hero__headline {
    font-size: clamp(1.6rem, 7.5vw, 2.48rem);
    line-height: 1.08;
    margin-bottom: 14px;
    color: #ffffff;
  }

  .hero__headline-highlight {
    white-space: normal;
  }

  .hero__subheadline {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 20px;
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
  }

  .hero__subheadline br {
    display: none;
  }

  .hero .btn {
    width: min(100%, 340px);
    min-height: 52px;
    padding: 16px 28px;
    font-size: 0.93rem;
    white-space: nowrap;
    line-height: 1;
    text-align: center;
  }

  .hero__microcopy {
    max-width: 330px;
    align-items: center;
    justify-content: center;
    font-size: 0.76rem;
    line-height: 1.35;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
  }

  .hero__product-mobile {
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    width: min(60vw, 210px);
    aspect-ratio: 1;
    margin: 8px auto 0;
    padding: 18px;
    border-radius: 8px;
    border: 1px solid rgba(37,211,102,0.32);
    background:
      radial-gradient(circle at 50% 32%, rgba(37,211,102,0.18) 0%, transparent 46%),
      linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    box-shadow: 0 20px 42px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.12);
    cursor: zoom-in;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  }

  .hero__product-mobile:hover,
  .hero__product-mobile:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(37,211,102,0.55);
    box-shadow: 0 24px 48px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.14);
  }

  .hero__product-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 14px 20px rgba(0,0,0,0.32));
  }

  .hero__product-zoom {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(37,211,102,0.94);
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(0,0,0,0.24);
    pointer-events: none;
  }

  .section-title {
    font-size: clamp(1.7rem, 7.8vw, 2.65rem);
    line-height: 1.16;
    margin-bottom: 28px;
    width: 100%;
    max-width: min(100%, 370px);
    margin-left: auto;
    margin-right: auto;
  }

  .section-title--nowrap {
    white-space: normal;
  }

  .section-title--single-line {
    font-size: clamp(1.7rem, 7.8vw, 2.65rem);
    white-space: normal;
  }

  .mobile-title-line {
    display: block;
  }

  .dores,
  .entrega,
  .beneficios,
  .como-funciona,
  .urgencia,
  .faq,
  .cta-final {
    padding: 56px 0;
  }

  .dor-card {
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    gap: 10px;
    padding: 16px 14px;
  }

  .entrega__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "video"
      "details";
    gap: 28px;
  }

  .entrega__content {
    text-align: center;
  }

  .entrega__content .badge {
    margin-left: auto;
    margin-right: auto;
  }

  .entrega__content .section-title {
    text-align: center;
  }

  .entrega__content > p {
    font-size: 0.94rem;
    line-height: 1.58;
    margin-left: auto;
    margin-right: auto;
  }

  .entrega__details {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .entrega__list {
    width: min(100%, 310px);
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .entrega__list li {
    font-size: 0.9rem;
  }

  .entrega .btn {
    width: min(100%, 340px);
    min-height: 52px;
    padding: 16px 28px;
    font-size: 0.93rem;
    white-space: nowrap;
    line-height: 1;
    text-align: center;
  }

  .entrega__video-wrap {
    width: min(92vw, 360px);
  }

  .entrega__video-hint {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .entrega__video-hint span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(37,211,102,0.94);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .dor-card p {
    flex: 0 1 calc(100% - 58px);
    display: block;
    width: calc(100% - 58px);
    min-width: 0;
    font-size: 0.9rem;
    line-height: 1.42;
    max-width: calc(100% - 58px);
    white-space: normal;
    overflow-wrap: break-word;
  }

  .dor-card__icon {
    width: 48px;
    height: 48px;
  }

  .beneficio-card {
    padding: 28px 18px;
  }

  .passo {
    gap: 14px;
    padding: 18px;
  }

  .passo__body h3 {
    font-size: 0.98rem;
  }

  .passo__body p {
    font-size: 0.84rem;
  }

  .urg-bg__orb--1,
  .urg-bg__orb--2 {
    opacity: 0.6;
  }

  .urgencia__inner {
    max-width: 100%;
  }

  .urgencia__panel {
    border-radius: 0;
    padding: 0;
  }

  .badge {
    font-size: 0.59rem;
    padding: 6px 13px;
    letter-spacing: 0.08em;
  }

  .urgencia__panel h2 {
    font-size: clamp(1.7rem, 7.8vw, 2.65rem);
    line-height: 1.14;
    white-space: normal;
    max-width: min(100%, 340px);
    margin-left: auto;
    margin-right: auto;
  }

  .urgencia__panel > p {
    font-size: 0.88rem;
  }

  .urgencia__divider span {
    font-size: 0.57rem;
    letter-spacing: 0.12em;
  }

  .countdown {
    width: 100%;
    gap: 6px;
    margin-bottom: 28px;
  }

  .countdown__unit {
    flex: 1 1 0;
    min-width: 0;
  }

  .countdown__card {
    width: 100%;
    min-width: 0;
    padding: 16px 6px 12px;
    border-radius: 14px;
  }

  .countdown__num {
    font-size: 2rem;
    margin-bottom: 8px;
  }

  .countdown__card-label {
    font-size: 0.48rem;
    letter-spacing: 0.12em;
  }

  .countdown__sep {
    font-size: 1.6rem;
    margin-bottom: 10px;
    flex: 0 0 auto;
  }

  .urgencia .btn,
  .cta-final .btn {
    width: min(100%, 340px);
    white-space: normal;
    line-height: 1.15;
    text-align: center;
    padding: 16px 18px;
  }

  .faq__btn {
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .cta-final__inner h2 {
    font-size: clamp(1.7rem, 7.8vw, 2.65rem);
    max-width: min(100%, 340px);
    margin-left: auto;
    margin-right: auto;
  }

  .cta-final__inner p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .cta-final__trust {
    gap: 6px 16px;
  }

  .cta-final__trust li {
    font-size: 0.72rem;
  }

  .cta-final__glow {
    inset: -12px -20px;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: auto;
    background-position: center top;
  }

  .hero__content {
    max-width: 100%;
  }

  .site-header__name {
    font-size: 0.76rem;
  }

  .site-header__sub {
    font-size: 0.44rem;
  }

  .site-header__cta {
    max-width: 118px;
    white-space: normal;
    line-height: 1.05;
    text-align: center;
  }

  .badge {
    max-width: 100%;
    text-align: center;
    line-height: 1.2;
  }

  .section-title,
  .urgencia__panel h2,
  .cta-final__inner h2 {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .section-title--single-line {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .dor-card {
    gap: 10px;
    padding: 16px 14px;
  }

  .dor-card p {
    flex-basis: calc(100% - 62px);
    width: calc(100% - 62px);
    max-width: calc(100% - 62px);
    font-size: 0.84rem;
  }

  .countdown {
    gap: 4px;
  }

  .countdown__card {
    padding: 14px 4px 10px;
  }

  .countdown__num {
    font-size: 1.65rem;
  }

  .countdown__card-label {
    font-size: 0.42rem;
    letter-spacing: 0.08em;
  }

  .countdown__sep {
    font-size: 1.25rem;
  }
}

.tilt {
  transform-style: preserve-3d;
  will-change: transform;
}

.tilt:hover {
  transform: none; /* JS assumes full control */
}

/* ═══════════════════════════════════════════
   MAGNETIC GLOW
═══════════════════════════════════════════ */
.btn-magnetic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.28) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
  border-radius: inherit;
  z-index: 0;
}

.btn-magnetic:hover::before {
  opacity: 1;
  transform: scale(2.5);
}

.btn-magnetic > * {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════
   STAR POP ANIMATION
═══════════════════════════════════════════ */
@keyframes star-pop {
  0%   { transform: scale(0) rotate(-30deg); opacity: 0; }
  70%  { transform: scale(1.2) rotate(5deg);  opacity: 1; }
  100% { transform: scale(1)   rotate(0deg);  opacity: 1; }
}

.star-item {
  display: inline-block;
  opacity: 0;
}

.star-item.is-popped {
  animation: star-pop 0.35s cubic-bezier(.34,1.56,.64,1) both;
  animation-delay: var(--star-delay, 0s);
}

/* ═══════════════════════════════════════════
   PULSE DOT (indicador online)
═══════════════════════════════════════════ */
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--c-wpp);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--c-wpp);
  animation: pulse-ring 1.8s ease infinite;
}

@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero__online {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(9,58,74,0.7);
  margin-top: var(--sp-sm);
}

/* Elevação + borda animada nos cards de benefício */
.beneficio-card {
  position: relative;
}

.beneficio-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 40px;
  height: 3px;
  background: var(--c-cta);
  border-radius: 2px;
  transform: translateX(-50%) scaleX(0);
  transition: transform 0.3s ease;
}

.beneficio-card:hover::after {
  transform: translateX(-50%) scaleX(1);
}
