/* ============ VARIÁVEIS E RESET ============ */
:root {
  --color-primary: #333333;      /* cinza escuro */
  --color-primary-dark: #1f1f1f;
  --color-accent: #8a8a8a;       /* cinza médio */
  --color-bg: #fafafa;           /* fundo claro neutro */
  --color-bg-alt: #efefef;
  --color-dark: #141414;
  --color-text: #444444;
  --color-white: #ffffff;
  --font-title: "MuseoModerno", sans-serif;
  --font-body: "Montserrat", sans-serif;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

/* ============ TIPOGRAFIA DE SEÇÃO ============ */
.section__eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section__eyebrow--center { text-align: center; }
.section__eyebrow--light { color: rgba(255, 255, 255, 0.75); }

.section__title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.section__title--center { text-align: center; }

/* Quebra de linha apenas no mobile */
.br-mobile { display: none; }

/* ============ BOTÕES ============ */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--outline {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--light {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn--light:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--lg { padding: 1rem 2.8rem; }

/* ============ COMPONENTE CTA BUTTON ============ */
.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 68px;
  padding: 18px 36px;
  border-radius: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  cursor: pointer;
  overflow: hidden;
  /* Glow permanente no botão e nas palavras */
  box-shadow:
    0 12px 35px rgba(230, 60, 148, 0.28),
    0 0 24px rgba(243, 41, 173, 0.45);
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.55);
  transition:
    transform 280ms ease,
    box-shadow 280ms ease,
    text-shadow 280ms ease,
    opacity 600ms ease;
}

/* Variantes conforme o fundo da dobra */
.cta-button--dark { background: linear-gradient(135deg, #ff4fa5, #d93b87); }
.cta-button--pink { background: #111111; }
.cta-button--light { background: linear-gradient(135deg, #e63c94, #c92d7d); }

/* Entrada (via IntersectionObserver): some apenas antes da primeira exibição */
.cta-button:not(.is-visible) {
  opacity: 0;
  transform: translateY(20px);
}

/* Brilho diagonal atravessando o botão */
.cta-button::after {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -75%;
  width: 45%;
  background: linear-gradient(115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 100%);
  transform: skewX(-20deg);
  opacity: 0.5;
  pointer-events: none;
  animation: cta-shine 2.8s linear infinite;
}

@keyframes cta-shine {
  0% { left: -75%; }
  55% { left: 125%; }
  100% { left: 125%; }
}

/* Hover: eleva e intensifica o glow do botão e das palavras */
.cta-button:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 22px 55px rgba(230, 60, 148, 0.4),
    0 0 42px rgba(243, 41, 173, 0.75);
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.85),
    0 0 26px rgba(255, 255, 255, 0.5);
}

.cta-button:hover::after {
  opacity: 0.75;
  animation: cta-shine 1s ease;
}

/* Clique: leve compressão com retorno suave */
.cta-button:active {
  transform: translateY(-1px) scale(0.97);
}

/* Ícone ArrowRight desliza no hover */
.cta-button__icon {
  flex-shrink: 0;
  transition: transform 250ms ease;
}

.cta-button:hover .cta-button__icon { transform: translateX(5px); }

/* Foco via teclado */
.cta-button:focus-visible {
  outline: 2px solid #ff5cad;
  outline-offset: 4px;
}

@media (max-width: 992px) {
  .cta-button { height: 64px; }
}

@media (max-width: 576px) {
  .cta-button {
    height: 60px;
    width: 100%;
  }
}

/* ============ PLACEHOLDERS DE IMAGEM ============ */
.image-placeholder {
  background: linear-gradient(135deg, var(--color-bg-alt), #dcdcdc);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8f8f8f;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.image-placeholder--portrait { aspect-ratio: 4 / 5; width: 100%; }
.image-placeholder--card { aspect-ratio: 4 / 3; width: 100%; margin-bottom: 1.2rem; }

/* ============ CABEÇALHO ============ */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.9rem;
}

.header__logo { display: flex; align-items: center; }

.header__logo-img {
  height: 84px;
  width: auto;
}

.nav__list { display: flex; gap: 1.8rem; }

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-white);
  transition: var(--transition);
  position: relative;
  padding-block: 0.3rem;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
}

.nav__link:hover { opacity: 0.85; }
.nav__link:hover::after { width: 100%; }

/* Cabeçalho rosa — página Resultados das Alunas */
.page-resultados .nav__link {
  color: #f329ad;
}

.page-resultados .nav__link::after {
  background: #f329ad;
}

.page-resultados .nav__toggle span {
  background: #f329ad;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
  background: url("../assets/images/dobra1_hero_desktop.jpg") center / cover no-repeat #f329ad;
}

.hero__inner {
  display: flex;
}

.hero__content { max-width: 640px; }

.hero .section__eyebrow { color: #000000; }

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3.6vw, 2.7rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero__title-line {
  display: block;
  white-space: nowrap;
}

.hero__text {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-white);
  max-width: 480px;
  margin-bottom: 1.2rem;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-white);
}

.hero__proof-avatars {
  display: inline-flex;
  align-items: center;
}

.hero__proof-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  margin-left: -10px;
}

.hero__proof-avatar:first-child { margin-left: 0; }

.hero__proof-sep { opacity: 0.6; }

/* ---- Floating Glass Cards ---- */
.hero__cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.hero-card-wrap {
  position: absolute;
  pointer-events: auto;
  animation: card-float 4s ease-in-out infinite;
}

.hero-card-wrap--overloque {
  bottom: 26%;
  right: 4%;
  animation-duration: 3.2s;
}

.hero-card-wrap--promo {
  bottom: 14%;
  left: 47%;
  animation-duration: 4.8s;
  animation-delay: 0.6s;
}

.hero-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  color: var(--color-white);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  transition: transform 250ms ease, background 250ms ease, box-shadow 250ms ease;
  animation: card-enter 0.6s ease-out backwards;
}

.hero-card-wrap--overloque .hero-card { animation-delay: 0.15s; }
.hero-card-wrap--promo .hero-card { animation-delay: 0.3s; }

.hero-card:hover {
  transform: scale(1.04);
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
}

.hero-card__icon { flex-shrink: 0; }

.hero-card__label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.hero-card__text s { opacity: 0.75; }

.hero-card__text strong { font-weight: 700; }

@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes card-enter {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============ CARROSSEL DE LOGOS ============ */
.logo-marquee {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
  padding: 6px 0;
}

.logo-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 120s linear infinite;
}

.logo-marquee--reverse .logo-marquee__track {
  animation-direction: reverse;
}

.logo-marquee__group {
  display: flex;
  align-items: center;
}

.logo-marquee__group img {
  height: 40px;
  width: auto;
  margin-right: 3rem;
  /* faz o fundo preto do PNG sumir sobre o marrom, mantendo o logo branco */
  mix-blend-mode: screen;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ VÍDEO ============ */
.video {
  position: relative;
  background: #050505;
  overflow: hidden;
}

.video__glow {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(243, 41, 173, 0.5) 0%,
    rgba(243, 41, 173, 0.2) 45%,
    transparent 70%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.video__glow--1 {
  width: 480px;
  height: 480px;
  top: -30%;
  left: -6%;
  animation: glow-drift-1 15s ease-in-out infinite alternate;
}

.video__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -35%;
  right: -5%;
  animation: glow-drift-2 12s ease-in-out infinite alternate;
}

.video__glow--3 {
  width: 300px;
  height: 300px;
  top: 20%;
  left: 40%;
  animation: glow-drift-3 18s ease-in-out infinite alternate;
}

.video__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding-block: 50px;
}

.video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============ PROVA SOCIAL / DEPOIMENTOS ============ */
.testimonials {
  padding: 100px 0;
  background: var(--color-bg);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.testimonial:hover { transform: translateY(-6px); }

.testimonial__photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 4px);
  object-fit: contain;
  margin-bottom: 1.2rem;
}

.testimonial__quote {
  font-size: 0.95rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 0.8rem;
}

.testimonial__name {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--color-primary);
}

/* ============ RESULTADOS DAS ALUNAS ============ */
.results {
  padding: 100px 0;
  background: var(--color-bg-alt);
}

.results__text {
  text-align: center;
  font-size: 1rem;
  font-weight: 300;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.results__photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.results__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  margin-top: 2.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #f329ad;
  transition: var(--transition);
  cursor: pointer;
}

.results__more-icon {
  transition: transform 0.3s ease;
}

.results__more:hover {
  opacity: 0.8;
}

.results__more:hover .results__more-icon {
  transform: translateX(5px);
}

/* ============ OFERTA E PREÇO ============ */
.offer {
  position: relative;
  background: #050505;
  padding: 120px 0;
  overflow: hidden;
}

/* ---- Luzes rosas em movimento no fundo ---- */
.offer__glow {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(243, 41, 173, 0.5) 0%,
    rgba(243, 41, 173, 0.2) 45%,
    transparent 70%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.offer__glow--1 {
  width: 520px;
  height: 520px;
  top: -15%;
  left: -8%;
  animation: glow-drift-1 14s ease-in-out infinite alternate;
}

.offer__glow--2 {
  width: 420px;
  height: 420px;
  bottom: -18%;
  right: -6%;
  animation: glow-drift-2 18s ease-in-out infinite alternate;
}

.offer__glow--3 {
  width: 340px;
  height: 340px;
  top: 30%;
  right: 28%;
  animation: glow-drift-3 11s ease-in-out infinite alternate;
}

@keyframes glow-drift-1 {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50%  { transform: translate(90px, 60px) scale(1.15); opacity: 1; }
  100% { transform: translate(180px, 20px) scale(0.95); opacity: 0.6; }
}

@keyframes glow-drift-2 {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50%  { transform: translate(-110px, -70px) scale(1.2); opacity: 1; }
  100% { transform: translate(-40px, -140px) scale(1); opacity: 0.7; }
}

@keyframes glow-drift-3 {
  0%   { transform: translate(0, 0) scale(0.9); opacity: 0.5; }
  50%  { transform: translate(-70px, 80px) scale(1.1); opacity: 0.9; }
  100% { transform: translate(60px, 40px) scale(1); opacity: 0.55; }
}

.offer__container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 92%;
  margin-inline: auto;
}

.offer__grid {
  display: grid;
  grid-template-columns: 30fr 35fr 35fr;
  gap: 60px;
  align-items: center;
}

/* ---- Coluna esquerda ---- */
.offer__left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease 0.15s, transform 0.8s ease 0.15s;
}

.offer.is-visible .offer__left {
  opacity: 1;
  transform: translateX(0);
}

.offer__left-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

.offer__left-text {
  color: #9a9a9a;
  font-size: 0.92rem;
  font-weight: 400;
  max-width: 300px;
}

/* ---- Card central ---- */
.offer__card-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.offer__card-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center,
    rgba(221, 52, 140, 0.35) 0%,
    rgba(221, 52, 140, 0.18) 25%,
    rgba(221, 52, 140, 0.08) 45%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.offer__card {
  position: relative;
  z-index: 1;
  width: 420px;
  max-width: 100%;
  background: #171717;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 40px;
  text-align: center;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.offer.is-visible .offer__card {
  opacity: 1;
  transform: scale(1);
}

.offer__divider {
  position: relative;
  border-top: 1px solid rgba(243, 41, 173, 0.5);
  margin-top: 1rem;
  margin-bottom: 2.2rem;
}

.offer__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  background: #c73e92;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 8px 22px;
  white-space: nowrap;
}

.offer__price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: #ffffff;
  line-height: 1;
  margin-top: 2.4rem;
  scroll-margin-top: 35vh; /* ancora o scroll no meio da tela, em cima do preço */
}

.offer__price-prefix {
  font-size: 24px;
  align-self: center;
  margin-right: 0.5rem;
}

.offer__price-currency { font-size: 24px; }

.offer__price-value {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 108px;
  color: #f329ad;
  text-shadow:
    0 0 14px rgba(243, 41, 173, 0.45),
    0 0 34px rgba(243, 41, 173, 0.25);
}

.offer__price-cents {
  font-size: 42px;
  color: #f329ad;
  margin-top: 10px;
  text-shadow:
    0 0 10px rgba(243, 41, 173, 0.45),
    0 0 24px rgba(243, 41, 173, 0.25);
}

.offer__cash {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  text-shadow:
    0 0 8px rgba(243, 41, 173, 0.9),
    0 0 18px rgba(243, 41, 173, 0.6),
    0 0 32px rgba(243, 41, 173, 0.4);
  margin: 0.8rem 0 1.8rem;
}

.offer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70px;
  border-radius: 16px;
  background: #24c83f;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 250ms ease, background 250ms ease, box-shadow 250ms ease;
}

.offer__btn:hover {
  transform: scale(1.03);
  background: #20b53a;
  box-shadow: 0 15px 40px rgba(36, 200, 63, 0.45);
}

.offer__secure {
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 1.4rem 0 1.2rem;
  line-height: 1.8;
}

.offer__payments {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.2rem;
}

.offer__payment {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #9a9a9a;
  font-size: 0.8rem;
}

/* ---- Coluna direita: benefícios ---- */
.offer__benefits {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease 0.15s, transform 0.8s ease 0.15s;
}

.offer.is-visible .offer__benefits {
  opacity: 1;
  transform: translateX(0);
}

.offer__benefit {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  transition: transform 250ms ease, color 250ms ease;
  opacity: 0;
  transform: translateY(12px);
}

.offer.is-visible .offer__benefit {
  animation: offer-item-in 0.5s ease forwards;
}

.offer.is-visible .offer__benefit:nth-child(1) { animation-delay: 0.30s; }
.offer.is-visible .offer__benefit:nth-child(2) { animation-delay: 0.38s; }
.offer.is-visible .offer__benefit:nth-child(3) { animation-delay: 0.46s; }
.offer.is-visible .offer__benefit:nth-child(4) { animation-delay: 0.54s; }
.offer.is-visible .offer__benefit:nth-child(5) { animation-delay: 0.62s; }
.offer.is-visible .offer__benefit:nth-child(6) { animation-delay: 0.70s; }
.offer.is-visible .offer__benefit:nth-child(7) { animation-delay: 0.78s; }
.offer.is-visible .offer__benefit:nth-child(8) { animation-delay: 0.86s; }
.offer.is-visible .offer__benefit:nth-child(9) { animation-delay: 0.94s; }

.offer__benefit + .offer__benefit { margin-top: 20px; }

.offer__benefit:hover {
  transform: translateX(6px) !important;
  color: #ffffff;
}

.offer__check {
  color: #f329ad;
  font-weight: 700;
  flex-shrink: 0;
  text-shadow: 0 0 8px rgba(243, 41, 173, 0.7);
}

@keyframes offer-item-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Garantia Incondicional ---- */
.guarantee {
  max-width: 1100px;
  margin: 100px auto 0;
  padding: 50px 60px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 50px;
  align-items: center;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 300ms ease;
}

.guarantee.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.guarantee.is-visible:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.5);
}

/* Selo */
.guarantee__seal-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  animation: guarantee-float 4s ease-in-out infinite;
}

.guarantee__seal-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
    rgba(231, 72, 155, 0.18) 0%,
    transparent 70%);
  pointer-events: none;
}

.guarantee__seal {
  position: relative;
  width: 170px;
  height: 170px;
  transform: scale(0.95);
  transition: transform 0.8s ease 0.2s;
}

.guarantee.is-visible .guarantee__seal { transform: scale(1); }

@keyframes guarantee-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Conteúdo */
.guarantee__badge {
  display: inline-block;
  background: rgba(231, 72, 155, 0.12);
  color: #f05baa;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 18px;
}

.guarantee__title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 42px;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1rem;
}

.guarantee__highlight { color: #f329ad; }

.guarantee__title,
.guarantee__text {
  opacity: 0;
  transform: translateX(-30px);
}

.guarantee.is-visible .guarantee__title {
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
  opacity: 1;
  transform: translateX(0);
}

.guarantee.is-visible .guarantee__text {
  transition: opacity 0.7s ease 0.35s, transform 0.7s ease 0.35s;
  opacity: 1;
  transform: translateX(0);
}

.guarantee__text {
  font-size: 20px;
  line-height: 170%;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.6rem;
}

.guarantee__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
}

.guarantee__perk {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(16px);
}

.guarantee__perk svg { color: #f329ad; flex-shrink: 0; }

.guarantee.is-visible .guarantee__perk {
  animation: offer-item-in 0.5s ease forwards;
}

.guarantee.is-visible .guarantee__perk:nth-child(1) { animation-delay: 0.45s; }
.guarantee.is-visible .guarantee__perk:nth-child(2) { animation-delay: 0.57s; }
.guarantee.is-visible .guarantee__perk:nth-child(3) { animation-delay: 0.69s; }

/* ---- Responsivo da oferta ---- */
@media (max-width: 1100px) {
  .offer { padding: 90px 0; }

  /* Tablet: selo menor */
  .guarantee { grid-template-columns: 180px 1fr; gap: 40px; }

  .guarantee__seal { width: 140px; height: 140px; }

  .offer__grid {
    grid-template-columns: 1fr;
    gap: 50px;
    justify-items: center;
    text-align: center;
  }

  /* Texto primeiro, card de preço abaixo, benefícios por último */
  .offer__left { order: 1; }
  .offer__card-wrap { order: 2; }
  .offer__benefits { order: 3; }

  .offer__left-title { font-size: 36px; }

  .offer__left-text { margin-inline: auto; }

  .offer__benefit { justify-content: center; }
}

@media (max-width: 576px) {
  .offer__card { width: 100%; padding: 32px 24px; }

  .offer__price-value { font-size: 84px; }

  .offer__price-cents { font-size: 34px; }

  /* Checklist: tudo centralizado, com o ícone fluindo junto ao texto */
  .offer__benefit {
    display: block;
    text-align: center;
  }

  .offer__benefit .offer__check { margin-right: 6px; }
}

/* Mobile: garantia em coluna única, tudo centralizado */
@media (max-width: 768px) {
  .guarantee {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
    margin-top: 70px;
    text-align: center;
  }

  .guarantee__title { font-size: 30px; }

  .guarantee__text { font-size: 17px; }

  .guarantee__perks {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* ============ SOBRE ============ */
.about {
  padding: 100px 0;
  background: #ffffff;
}

.about__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

.about__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about__credentials {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.about__content p:not(.about__credentials) { margin-bottom: 1.2rem; font-weight: 300; }

.about__content .btn { margin-top: 1rem; }

/* ============ CATÁLOGO DE PEÇAS ============ */
.catalog {
  padding: 100px 0;
  background: var(--color-bg-alt);
}

.catalog__hint {
  text-align: center;
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.carousel {
  position: relative;
  display: flex;
  align-items: center;
}

.carousel__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  scrollbar-width: none;
}

.carousel__track::-webkit-scrollbar { display: none; }

.card {
  /* 3 cards visíveis por vez (2 espaçamentos de 1.5rem entre eles) */
  flex: 0 0 calc((100% - 3rem) / 3);
  scroll-snap-align: start;
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card:hover { transform: translateY(-6px); }

.card__image {
  width: 100%;
  /* mesma proporção dos arquivos originais (325x435): nada é cortado */
  aspect-ratio: 325 / 435;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
}

.card__title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.card__text { font-size: 0.88rem; font-weight: 300; }

.carousel__arrow {
  position: absolute;
  top: 40%;
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--color-white);
  color: var(--color-primary);
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.carousel__arrow:hover { background: var(--color-primary); color: var(--color-white); }
.carousel__arrow--prev { left: -20px; }
.carousel__arrow--next { right: -20px; }

.catalog__cta { text-align: center; margin-top: 2.5rem; }

/* ============ BANNER CTA ============ */
.banner {
  background: url("../assets/images/dobra5_desktop.jpg") right center / cover no-repeat #f329ad;
  color: var(--color-white);
  padding: 90px 0;
}

.banner__inner {
  display: flex;
}

.banner__content { max-width: 560px; }

.banner__title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.banner__subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

/* ============ FAQ ============ */
.faq { padding: 100px 0; }

.faq__inner { max-width: 860px; }

.faq__cta { text-align: center; margin: 1.5rem 0 3rem; }

.faq__cta--bottom { margin: 3rem 0 0; }

.faq__cta-text {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.accordion__item {
  background: var(--color-white);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.3rem 1.6rem;
  background: none;
  border: none;
  text-align: left;
}

.accordion__number {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-accent);
  flex-shrink: 0;
}

.accordion__question {
  flex: 1;
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.3;
}

.accordion__icon {
  font-size: 1.4rem;
  color: var(--color-primary);
  transition: var(--transition);
  flex-shrink: 0;
}

.accordion__item.is-open .accordion__icon { transform: rotate(45deg); }

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion__body p {
  padding: 0 1.6rem 1.5rem 4.1rem;
  font-size: 0.92rem;
  font-weight: 300;
}

/* ============ CONTATO ============ */
.contact {
  background: var(--color-bg-alt);
  padding: 70px 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: center;
}

.contact__label {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.contact__value {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.4;
}

.contact__value a:hover { color: var(--color-primary); }

/* ============ RODAPÉ ============ */
.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 40px 0;
}

.footer__inner { text-align: center; }

.footer__logo-img {
  height: 64px;
  width: auto;
  margin-inline: auto;
  /* remove o fundo preto do PNG sobre o rodapé escuro */
  mix-blend-mode: screen;
  margin-bottom: 1.2rem;
}

.footer__legal {
  font-size: 0.75rem;
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

.footer__social {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.footer__social a,
.footer__links a {
  color: var(--color-white);
  transition: var(--transition);
}

.footer__social a:hover,
.footer__links a:hover { color: #f329ad; }

.footer__links { font-size: 0.8rem; }

.footer__sep { margin: 0 0.5rem; opacity: 0.5; }

/* ============ RESPONSIVO ============ */
@media (max-width: 992px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 80vw);
    height: 100vh;
    background: var(--color-white);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.35s ease;
    padding: 100px 2rem 2rem;
  }

  .nav.is-open { right: 0; }

  .nav__list { flex-direction: column; gap: 1.4rem; }

  .nav__link { font-size: 1rem; color: var(--color-text); }

  .nav__link::after { background: var(--color-accent); }

  .page-resultados .nav__link { color: #f329ad; }

  .page-resultados .nav__link::after { background: #f329ad; }

  .nav__toggle { display: flex; }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Título e credencial acima da imagem; parágrafos abaixo dela */
  .about__content { display: contents; }
  .about__content .section__title { order: -3; }
  .about__content .about__credentials { order: -2; }

  /* Imagem vertical dedicada ao mobile */
  .hero {
    background-image: url("../assets/images/dobra1_hero_mobile.jpg");
    background-position: center;
  }

  /* Cards flutuantes ocultos no mobile */
  .hero__cards { display: none; }

  .about__image { order: -1; max-width: 420px; width: 100%; margin: 0 auto 1.5rem; }

  .contact__grid { grid-template-columns: 1fr; gap: 2rem; }

  .testimonials__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  .results__grid { grid-template-columns: repeat(2, 1fr); }

  .carousel__arrow--prev { left: 4px; }
  .carousel__arrow--next { right: 4px; }

  /* 2 cards por vez em tablets */
  .card { flex: 0 0 calc((100% - 1.5rem) / 2); }
}

@media (max-width: 576px) {
  /* 1 card por vez no celular */
  .card { flex: 0 0 100%; }

  .accordion__body p { padding-left: 1.6rem; }

  .testimonials__grid { grid-template-columns: 1fr; }

  .results__grid { grid-template-columns: 1fr; }

  .br-mobile { display: inline; }

  /* ---- Hero mobile: imagem em cima (~55%), conteúdo em bloco dedicado abaixo ---- */
  .hero {
    align-items: flex-end;
    background-position: center top;
    padding-top: 0;
    padding-bottom: 16px;
  }

  .hero__inner { width: 100%; }

  /* Bloco exclusivo de conteúdo na parte inferior da dobra, centralizado */
  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%;
    max-width: none;
    padding: 24px;
    margin-top: 55vh; /* reserva os primeiros ~55% da dobra para a imagem */
    text-align: center;
  }

  .hero__title {
    font-size: clamp(1.25rem, 6.6vw, 1.75rem);
    line-height: 1.1;
    margin-bottom: 0;
  }

  .hero__text {
    max-width: 340px;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hero .cta-button {
    width: 100%;
    height: 58px;
    margin-top: 8px;
  }

  .cta-button { font-size: 15px; }

  .hero__proof {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: -6px; /* 18px do gap - 6px = 12px abaixo do CTA */
    font-size: 12px;
  }

  /* ---- Banner CTA (dobra 5) mobile: imagem em cima, conteúdo abaixo ---- */
  .banner {
    background: url("../assets/images/dobra5_mobile.jpg") center top / cover no-repeat #f329ad;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 0 0 16px;
  }

  .banner__inner { width: 100%; }

  .banner__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: none;
    padding: 24px;
    margin-top: 55vh; /* reserva o topo da dobra para a imagem do celular */
    text-align: center;
  }

  .banner .section__eyebrow { margin-bottom: 0; }

  .banner__title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    line-height: 1.15;
    margin-bottom: 0;
  }

  .banner__subtitle {
    max-width: 340px;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .banner .cta-button {
    width: 100%;
    height: 58px;
    margin-top: 8px;
  }
}

/* ============ SISTEMA GLOBAL DE ANIMAÇÕES DE SCROLL ============ */
/* Estados iniciais por tipo de animação (aplicados via JS em data-reveal) */
[data-reveal] {
  opacity: 0;
  transition:
    opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) var(--reveal-delay, 0s),
    transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

[data-reveal="section"] { transform: translateY(40px); }
[data-reveal="up"] { transform: translateY(30px); }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="card"] { transform: translateY(30px); }
[data-reveal="card-scale"] { transform: translateY(20px) scale(0.96); }
[data-reveal="icon"] { transform: scale(0.9); }

[data-reveal="scale"] {
  transform: scale(1.05);
  transition-duration: 1s, 1s;
}

/* Estado final: elemento visível na posição natural */
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* Fade da resposta ao abrir uma pergunta do FAQ */
.accordion__body p {
  opacity: 0;
  transition: opacity 0.4s ease 0.1s;
}

.accordion__item.is-open .accordion__body p { opacity: 1; }

/* Usuários com preferência por menos movimento veem tudo estático */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
