/* =========================================================================
   VARIABLES & RESET
   ========================================================================= */
:root {
  --rosa: #C0356F;
  --ouro: #9E8F36;
  --creme: #F4DEBE;
  --preto: #000000;
  --branco: #FFFFFF;
  --verde: #9E8F36;

  --font-main: 'Poppins', sans-serif;
}

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

/* html {
  scroll-behavior: smooth; 
} */

body {
  font-family: var(--font-main);
  background-color: var(--branco);
  color: var(--preto);
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
}

/* =========================================================================
   TYPOGRAPHY
   ========================================================================= */
h1, h2, h3, h4, .cta-title {
  font-weight: 800;
  line-height: 1.1; /* Reduzido de 1.2 */
  letter-spacing: -0.02em;
}

.text-creme { color: var(--creme); }
.text-rosa { color: var(--rosa); }
.text-preto { color: var(--preto); }
.text-branco { color: var(--branco); }
.text-verde { color: var(--verde); }
.text-ouro { color: var(--ouro); }

.text-center { text-align: center; }

h2 {
  font-size: 1.6rem; /* Reduzido de 1.75rem */
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  h2 { font-size: 2.5rem; } /* Reduzido de 2.75rem */
}

p {
  font-size: 1rem; /* Reduzido de 1.125rem */
  margin-bottom: 0.75rem;
}

/* =========================================================================
   UTILITIES & CONTAINERS
   ========================================================================= */
.bg-rosa { background-color: var(--rosa); }
.bg-ouro { background-color: var(--ouro); }
.bg-creme { background-color: var(--creme); }
.bg-preto { background-color: var(--preto); }
.bg-verde { background-color: var(--verde); }
.bg-branco { background-color: var(--branco); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem; /* Aumentado padding lateral para mobile */
  position: relative;
}

section {
  padding: 3rem 0; /* Ajustado para evitar espaços brancos */
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media (min-width: 768px) {
  section { padding: 5rem 0; } /* Reduzido de 8rem */
}

.mb-lg { margin-bottom: 4rem; }
.mt-lg { margin-top: 4rem; }
.mt-md { margin-top: 2rem; }
.pb-120 { padding-bottom: 7.5rem; }

/* Blobs base */
.blob {
  position: absolute;
  z-index: -1;
  opacity: 0.15;
  pointer-events: none;
}

/* =========================================================================
   COMPONENTS
   ========================================================================= */
/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  padding: 1rem 2rem;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
}
.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.btn-pill {
  border-radius: 999px;
}
.btn-outline {
  border: 1.5px solid currentColor;
  border-radius: 999px;
  background: transparent;
}
.btn-outline:hover {
  background-color: var(--rosa);
  color: var(--creme);
  border-color: var(--rosa);
}

/* Labels / Badges */
.badge, .label {
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}
.badge {
  background-color: var(--creme);
  color: var(--rosa);
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  margin-bottom: 2rem;
}
.label {
  margin-bottom: 0.5rem; /* Reduzido de 1rem */
}

/* =========================================================================
   NAVBAR
   ========================================================================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 100;
  transition: all 0.3s ease;
  background-color: transparent;
}
.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  height: 80px; /* Ajuste o tamanho da sua logo conforme desejar */
  width: auto;
  transition: opacity 0.3s ease;
}
.logo .logo-dark {
  display: none;
}
.navbar.scrolled .logo .logo-light {
  display: none;
}
.navbar.scrolled .logo .logo-dark {
  display: block;
}

.nav-links {
  display: none; /* Esconde links no mobile por padrão */
}
@media (min-width: 992px) {
  .nav-links {
    display: flex;
    gap: 2rem;
  }
}
.nav-links a {
  color: var(--creme);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.nav-links a:hover {
  opacity: 0.7;
}
.navbar.scrolled .nav-links a {
  color: var(--preto);
}

.nav-cta {
  background-color: var(--creme);
  color: var(--rosa);
  padding: 0.6rem 1.5rem;
  font-size: 0.875rem;
}
.navbar.scrolled .nav-cta {
  background-color: var(--rosa);
  color: var(--creme);
}


/* =========================================================================
   S01 - HERO
   ========================================================================= */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8rem;
  text-align: center;
}
.hero-bg-blobs {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1;
  pointer-events: none;
}
.blob-hero-1 {
  top: -10%; right: -5%; width: 60%;
}

.hero-container {
  position: relative;
  max-width: 1000px;
}

.hero-main-title {
  position: relative;
  margin-bottom: 2rem;
  padding: 0 4rem; /* Espaço extra para os selos nas laterais */
}

.hero-title {
  font-size: 2rem;
  margin-bottom: 0;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .hero-title { font-size: 3.2rem; }
}
@media (min-width: 1024px) {
  .hero-title { font-size: 3.8rem; }
}

.hero-line.block {
  display: block;
}

.hero-line.highlight {
  color: var(--creme);
  -webkit-text-stroke: 1px var(--creme);
  text-shadow: 0 0 20px rgba(244, 222, 190, 0.3);
}

/* Floating Labels */
.floating-labels {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 2;
}

.f-label {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--creme);
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

/* Positions for Floating Labels (Desktop) */
@media (min-width: 992px) {
  .fl-1 { top: -40px; left: -50px; background: var(--ouro); animation-delay: 0s; }
  .fl-2 { top: 30%; right: -60px; background: var(--rosa); border-color: var(--creme); animation-delay: 1s; }
  .fl-3 { bottom: -30px; left: -20px; background: #8A204C; animation-delay: 2s; }
  .fl-4 { top: -20px; right: -30px; background: rgba(255,255,255,0.15); animation-delay: 0.5s; }
}

/* Hide or adjust for mobile */
@media (max-width: 991px) {
  .floating-labels { display: none; }
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(244, 222, 190, 0.85);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* =========================================================================
   S02 - IDENTIFICAÇÃO (MARQUEE)
   ========================================================================= */
.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-bottom: 1.5rem;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
  gap: 2rem;
  align-items: center;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.track-2 {
  animation-direction: reverse;
  animation-duration: 22s;
}

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

.marquee-track span {
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 500;
  display: inline-block;
}
.marquee-track .star {
  color: var(--rosa);
  font-style: normal;
}
.turn-phrase {
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 0.1rem;
  line-height: 1.3;
}

/* ── CINEMA SCROLL ── */

.cinema-section {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.cinema-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cinema-frase {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: clamp(1.6rem, 4.5vw, 3.8rem);
  line-height: 1.2;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.02em;
  padding: 2rem;
  margin: 0;
  opacity: 0;
  will-change: opacity, transform, filter;
}

.cinema-opener {
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cinema-climax {
  font-size: clamp(1.8rem, 5vw, 4.4rem);
  font-weight: 900;
  color: var(--rosa);
}

.cinema-resolucao {
  font-size: clamp(1.4rem, 3.5vw, 3rem);
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

.cinema-next {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.cinema-next.visible {
  opacity: 1;
  transform: translateY(0);
}

.cinema-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--rosa);
  transition: width 0.1s linear;
  z-index: 10;
}


/* =========================================================================
   S03 - AGITAÇÃO DO PROBLEMA (CINEMATIC)
   ========================================================================= */
.section-cinematic {
  position: relative;
  padding: 90px 24px;
  background-color: var(--creme);
  text-align: center;
  overflow: hidden;
  font-family: var(--font-main);
}

.cinematic-container {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cinematic-blobs {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

.c-blob {
  position: absolute;
  background: var(--rosa);
  filter: blur(100px);
  border-radius: 50%;
  opacity: 0.12;
  animation: blobMotion 12s infinite ease-in-out;
}

.c-blob-1 { width: 300px; height: 300px; top: -10%; left: -5%; }
.c-blob-2 { width: 400px; height: 400px; bottom: -20%; right: -10%; animation-delay: -6s; }

@keyframes blobMotion {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, 50px) scale(1.1); }
  66% { transform: translate(-20px, 30px) scale(0.9); }
}

.cinematic-top-bar {
  width: 48px;
  height: 3px;
  background: var(--rosa);
  margin: 0 auto 2rem;
  border-radius: 99px;
}

.cinematic-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--preto);
  margin-bottom: 2rem;
  font-family: var(--font-main);
  letter-spacing: -0.02em;
}

.cinematic-divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
  margin-bottom: 3rem;
}

.cinematic-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 2.5rem;
  font-family: var(--font-main);
}

.cinematic-highlight {
  color: var(--rosa) !important;
  font-weight: 700;
  animation: pulse-glow 3s infinite ease-in-out;
}

@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 10px rgba(192, 53, 111, 0); }
  50% { text-shadow: 0 0 20px rgba(192, 53, 111, 0.4); }
}

/* Animação Fade-Up genérica para a seção */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
}

.section-cinematic.active .anim-fade-up {
  animation: fadeUpCinematic 0.9s forwards ease-out;
}

@keyframes fadeUpCinematic {
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================================
   S04 - MÉTODO BE GLOW (VERTICAL REFINED)
   ========================================================================= */
.py-120 { padding-top: 120px; padding-bottom: 120px; }
.mt-lg { margin-top: 4rem; }
.max-w-700 { max-width: 700px; }
.max-w-900 { max-width: 900px; }
.mx-auto { margin-left: auto; margin-right: auto; }

.grid-method-vertical {
  display: block; /* Modificado para evitar o 'bug do overlap' do GSAP com Flexbox/Gap */
}

.method-item {
  display: flex;
  align-items: center;
  position: relative;
  padding: 4rem 3rem;
  border-radius: 40px;
  overflow: hidden;
  transition: transform 0.3s ease;
  min-height: 250px;
  margin-bottom: 2rem;
}

.card-bg-number {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18vw;
  font-weight: 800;
  opacity: 0.12;
  pointer-events: none;
  line-height: 1;
  z-index: 1;
}

.method-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.method-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.method-content p {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 600px;
}

.fase-1 { background-color: var(--rosa); color: var(--creme); }
.fase-2 { background-color: var(--ouro); color: var(--branco); }
.fase-3 { background-color: var(--creme); color: var(--preto); }

.method-arrow {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  height: 120px;
  position: relative;
  margin-bottom: 3rem;
}

.arrow-line {
  width: 2px;
  height: 60px;
  background: currentColor;
  margin-bottom: 0.5rem;
  opacity: 0.4;
  transform-origin: top;
}

/* =========================================================================
   S05 - QUEM É A BEASY (SOBRE REFINED)
   ========================================================================= */
.grid-sobre {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 992px) {
  .grid-sobre {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.sobre-topics {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.topic-item {
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
}

.topic-num {
  font-weight: 800;
  color: var(--rosa);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.sobre-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 3rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sobre-image-container {
  position: relative;
}

.image-wrapper {
  background: var(--creme);
  border-radius: 40px;
  aspect-ratio: 4/5;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0,0,0,0.05);
}

.img-placeholder {
  text-align: center;
  padding: 2rem;
  color: var(--rosa);
  font-weight: 700;
  opacity: 0.4;
  letter-spacing: 2px;
}

.sobre-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 768px) {
  .sobre-stats {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* S06 - COMO FUNCIONA (GRID REFINED) */
.stat-number.inline {
  font-size: inherit; /* Segue o tamanho do texto do tópico */
  font-weight: 800;
  display: inline-block;
  min-width: 1.5ch;
  color: var(--rosa);
}

.stat-number.inline::before {
  content: "+";
}
/* =========================================================================
   S06 - COMO FUNCIONA (TIMELINE REFINED)
   ========================================================================= */
.timeline-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-line-bg {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(0, 0, 0, 0.05); /* fundo discreto */
}

.timeline-line-progress {
  position: absolute;
  left: 20px;
  top: 0;
  width: 2px;
  height: calc(100% * var(--progress, 0)); /* Controlado via JS CSS Var */
  background: var(--ouro);
  z-index: 1;
}

.timeline-step {
  position: relative;
  padding-left: 60px;
  margin-bottom: 3rem;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 12px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--creme); /* centro da cor do fundo */
  border: 4px solid var(--creme); /* mesma cor do fundo para "furar" a linha */
  box-shadow: 0 0 0 2px var(--ouro); /* aro externo verde/ouro */
  z-index: 2;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.timeline-step.active .timeline-dot {
  transform: scale(1.3);
  background: var(--ouro);
  box-shadow: 0 0 0 2px var(--ouro);
}

.timeline-content {
  background: transparent;
  padding-bottom: 1rem;
}

.timeline-content .step-num {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.5rem;
}

.timeline-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.timeline-content p {
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (min-width: 992px) {
  .timeline-pin-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0 5vw; /* Margens laterais na tela ultra-wide */
  }

  .timeline-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 4rem;
    max-width: none;
    width: max-content; /* A Mágica do Horizontal Scroll exige largura livre */
    padding-bottom: 2rem;
  }

  .timeline-line-bg, .timeline-line-progress {
    top: 36px;
    left: 0;
    bottom: auto;
    width: 100%; /* Largura total do elemento livre */
    height: 2px;
    transform: none;
  }

  .timeline-line-progress {
    width: calc(100% * var(--progress, 0));
  }

  .timeline-step {
    width: 40vw; /* Garante que a esteira seja sempre mais larga que a tela, independente do monitor ultrawide */
    min-width: 400px; /* Mas nunca esmaga os textos abaixo de 400px */
    flex-shrink: 0;
    padding: 70px 1.5rem 0;
    margin-bottom: 0;
    text-align: center;
  }

  .timeline-step:last-child {
    margin-bottom: 0;
  }

  .timeline-step:nth-child(even),
  .timeline-step:nth-child(odd) {
    margin-left: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    text-align: center;
  }

  .timeline-dot {
    top: 27px; /* 36 (line) - 9 (radius) */
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-step:nth-child(odd) .timeline-dot,
  .timeline-step:nth-child(even) .timeline-dot {
    left: 50%;
    right: auto;
  }

  .timeline-step.active .timeline-dot {
    transform: translateX(-50%) scale(1.3);
  }
}


/* S07 - RESULTADOS (SHOWCASE INTERATIVO) */
.results-showcase {
  max-width: 960px;
  margin: 0 auto;
}

.rs-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 0;
}

.rs-tab {
  flex: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.rs-tab-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--rosa), var(--ouro));
  border-radius: 99px;
  transition: none;
}

.rs-tab-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0 0.75rem;
}

.rs-tab-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(0,0,0,0.15);
  transition: color 0.3s;
  font-family: var(--font-main);
  line-height: 1;
}

.rs-tab-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(0,0,0,0.3);
  transition: color 0.3s;
  display: none;
}

@media (min-width: 600px) {
  .rs-tab-label { display: block; }
}


.rs-tab.active .rs-tab-num  { color: var(--rosa); }
.rs-tab.active .rs-tab-label { color: var(--preto); }

.rs-panel {
  display: none;
  background: linear-gradient(145deg, var(--branco) 0%, #fdf6ee 100%);
  border-radius: 32px;
  border: 1.5px solid rgba(192, 53, 111, 0.12);
  box-shadow: 0 8px 48px rgba(192, 53, 111, 0.09);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  animation: panelIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.rs-panel.active { display: block; }

@keyframes panelIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.rs-panel-deco {
  position: absolute;
  bottom: -2rem;
  right: 2rem;
  font-size: 10rem;
  font-weight: 900;
  color: var(--rosa);
  opacity: 0.04;
  line-height: 1;
  font-family: var(--font-main);
  pointer-events: none;
  user-select: none;
}

.rs-panel-body {
  display: flex;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.rs-panel-main { flex: 1; }

.rs-panel-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--rosa), #c94080);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  box-shadow: 0 8px 24px rgba(192, 53, 111, 0.3);
  color: white;
}

.rs-panel-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--preto);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.rs-disclaimer {
  font-size: 0.78rem;
  color: rgba(0,0,0,0.35);
  font-style: italic;
  margin-top: 0.5rem;
}

.rs-panel-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(0,0,0,0.58);
  margin-bottom: 2rem;
  max-width: 520px;
}

.rs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.rs-tag {
  padding: 0.4rem 1.1rem;
  border-radius: 99px;
  background: rgba(192, 53, 111, 0.07);
  color: var(--rosa);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(192, 53, 111, 0.18);
  letter-spacing: 0.01em;
}

.rs-panel-aside { flex-shrink: 0; }

.rs-stat-card {
  background: linear-gradient(140deg, var(--rosa) 0%, #a02055 100%);
  color: white;
  border-radius: 28px;
  padding: 2.5rem 2rem;
  text-align: center;
  min-width: 190px;
  box-shadow: 0 16px 48px rgba(192, 53, 111, 0.35);
}

/* Visual card com SVG */
.rs-visual-card {
  background: linear-gradient(140deg, var(--rosa) 0%, #a02055 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(192, 53, 111, 0.35);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 260px;
}

@media (max-width: 767px) {
  .rs-visual-card {
    max-width: 100%;
    flex-direction: row;
    align-items: center;
    border-radius: 18px;
  }
  .rs-visual-svg {
    width: 120px !important;
    height: 90px !important;
    flex-shrink: 0;
    padding: 0.75rem !important;
  }
  .rs-visual-stat {
    border-top: none !important;
    border-left: 1px solid rgba(255,255,255,0.15);
    text-align: left;
    padding: 1rem !important;
  }
}

.rs-visual-svg {
  width: 100%;
  height: 160px;
  display: block;
  padding: 1rem 1rem 0.5rem;
}


.rs-stat-num {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.2rem;
  font-family: var(--font-main);
  letter-spacing: -0.03em;
}

.rs-stat-label {
  font-size: 0.78rem;
  opacity: 0.8;
  line-height: 1.4;
}

.rs-stat-label {
  display: block;
  font-size: 0.85rem;
  opacity: 0.85;
  line-height: 1.4;
  margin-top: 0.75rem;
}


/* Tags: scroll horizontal no mobile */
@media (max-width: 640px) {
  .rs-tags {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
    gap: 0.4rem;
  }
  .rs-tags::-webkit-scrollbar { display: none; }
  .rs-tag { flex-shrink: 0; }
}

@media (max-width: 640px) {
  .rs-panel {
    padding: 1.75rem 1.25rem;
  }
  .rs-panel-body {
    flex-direction: column;
    gap: 1.25rem;
  }
  .rs-panel-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    margin-bottom: 1rem;
  }
  .rs-panel-title {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
  }
  .rs-panel-desc {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.65;
  }
  .rs-panel-aside {
    width: 100%;
    display: none;
  }
  .rs-stat-card {
    min-width: unset;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    text-align: left;
  }
  .rs-stat-num {
    font-size: 2.25rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .rs-stat-label {
    margin-top: 0;
    font-size: 0.82rem;
  }
  .rs-panel-deco {
    font-size: 6rem;
    bottom: -1rem;
    right: 1rem;
  }
}

@media (max-width: 768px) {
  .method-item { padding: 2.5rem 1.5rem; border-radius: 24px; }
  .method-content h3 { font-size: 1.5rem; }
  .method-content p { font-size: 1rem; }
  .py-120 { padding-top: 80px; padding-bottom: 80px; }
  
  .hero-badge { font-size: 0.65rem; padding: 0.4rem 0.8rem; letter-spacing: 0.5px; }
  .hero-subtitle { font-size: 1rem; padding: 0 1rem; }
  
  .marquee-track span { font-size: 1rem; } /* Marquee menor no mobile */
  .turn-phrase { font-size: 1.15rem; padding: 0 1.5rem; }
  
  .section-header h2 { font-size: 1.75rem; }
  .grid-steps { gap: 1.5rem; }
  .step-box { padding: 1.5rem; }
  
  .footer-links { 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 1rem; 
  }
}
.turn-phrase {
  font-size: 1.15rem; /* Reduzido de 1.5rem */
  font-weight: 700;
  line-height: 1.3;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .turn-phrase { font-size: 1.85rem; }
}

.h-card-glow {
  min-height: 400px;
}

.card-bg-number {
  position: absolute;
  top: -20px; right: -10px;
  font-size: 100px;
  font-weight: 800;
  opacity: 0.12;
  line-height: 1;
}

.h-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

/* Barra de progresso do scroll horizontal */
.progress-bar-container {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: rgba(0,0,0,0.05);
  border-radius: 999px;
}
.progress-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--rosa);
  border-radius: inherit;
}

@media (min-width: 992px) {
  .h-card {
    width: 35vw;
  }
}


/* =========================================================================
   S04 - SOBRE A BEASY
   ========================================================================= */
.blob-sobre-1 {
  top: -10%; left: -20%; width: 70%; opacity: 0.12;
}

.grid-sobre {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 992px) {
  .grid-sobre {
    grid-template-columns: 3fr 2fr;
  }
}

.sobre-counter {
  text-align: center;
  background: rgba(244, 222, 190, 0.1);
  padding: 4rem 2rem;
  border-radius: 24px;
  border: 1px solid rgba(244, 222, 190, 0.2);
}
.counter-display {
  display: block;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.counter-display span {
  display: inline-block;
}
.counter-label {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}


/* =========================================================================
   S05 - COMO FUNCIONA
   ========================================================================= */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-left: 2rem;
}
.timeline-line {
  position: absolute;
  left: 5px;
  top: 0;
  height: 100%;
  width: 2px;
  background: rgba(0,0,0,0.1);
  transform-origin: top center;
}
@media (min-width: 992px) {
  .timeline {
    flex-direction: row;
    padding-left: 0;
    gap: 2rem;
  }
  .timeline-line {
    left: 0;
    top: 24px;
    height: 2px;
    width: 100%;
    transform-origin: left center;
  }
}

.timeline-step {
  position: relative;
  flex: 1;
}

.step-dot {
  width: 12px; height: 12px;
  background-color: var(--rosa);
  border-radius: 50%;
  position: absolute;
  left: -2rem;
  top: 0.4rem;
  outline: 4px solid var(--creme);
}

@media (min-width: 992px) {
  .step-dot {
    left: 0; top: 19px;
  }
  .timeline-step {
    padding-top: 3.5rem;
  }
}

.timeline-step h4 {
  color: var(--rosa);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.timeline-step h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.timeline-step p {
  font-size: 1rem;
  color: #444;
}

/* =========================================================================
   S06 - DEPOIMENTOS
   ========================================================================= */
.swiper-testimonials {
  padding-bottom: 4rem;
  overflow: visible;
}
.swiper-slide {
  height: auto;
}
.card-depoimento {
  background-color: var(--branco);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  border: 1.5px solid transparent; /* para hover */
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.card-depoimento:hover {
  transform: translateY(-8px);
  border-color: rgba(192, 53, 111, 0.3); /* rosa com opacity */
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.quote-mark {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 5rem;
  font-family: serif;
  font-weight: 800;
  line-height: 1;
  opacity: 0.2;
}

.depo-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.depo-author {
  display: flex;
  flex-direction: column;
}
.author-name {
  font-weight: 700;
  font-size: 1.1rem;
}
.author-desc {
  font-size: 0.85rem;
  color: #666;
}

.depo-text {
  font-style: italic;
  font-size: 1rem;
  color: #222;
  position: relative;
  z-index: 2;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background-color: #ddd;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background-color: var(--rosa);
}


/* =========================================================================
   S07 - FAQ
   ========================================================================= */
.blob-faq {
  bottom: -20%; right: -10%; width: 60%; opacity: 0.15;
}
.container-faq {
  max-width: 800px;
}
.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.accordion-item {
  background-color: var(--creme);
  border-radius: 16px;
  color: var(--preto);
  overflow: hidden;
}
.accordion-btn {
  width: 100%;
  text-align: left;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--preto);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.icon-plus {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.accordion-btn.active .icon-plus {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}
.accordion-content.active {
  opacity: 1;
}
.accordion-content p {
  padding: 0 2rem 1.5rem 2rem;
  margin: 0;
  font-size: 1rem;
  color: #333;
}

/* =========================================================================
   S08 - CTA FINAL
   ========================================================================= */
.blob-cta-1 {
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 120%;
  opacity: 0.2;
}
.cta-final-content {
  max-width: 1100px; /* Aumentado de 1000px */
  position: relative;
  z-index: 2;
}
.cta-title {
  font-size: 1.6rem; /* Reduzido de 1.75rem */
  line-height: 1.1;
}
@media (min-width: 768px) {
  .cta-title { font-size: 2.75rem; } /* Reduzido de 3rem */
}
.cta-subtitle {
  font-size: 1.5rem; /* Reduzido de 1.75rem */
  margin-bottom: 2rem;
  line-height: 1.2;
}
.cta-text {
  font-size: 1rem; /* Reduzido de 1.1rem */
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* =========================================================================
   FOOTER
   ========================================================================= */
/* ── FOOTER ── */
.footer {
  background: var(--rosa);
  color: rgba(255,255,255,0.85);
  padding: 5rem 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1.6fr 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
  }
}

/* Brand */
.footer-brand { display: flex; flex-direction: column; gap: 1.25rem; }

.footer-logo {
  height: auto;
  width: 240px;
  max-width: 100%;
  display: block;
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin: 0;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 99px;
  padding: 0.45rem 1rem;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.footer-social-link:hover {
  color: var(--rosa);
  border-color: #fff;
  background: #fff;
}

/* Nav */
.footer-nav-group { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-nav-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-nav a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #fff; text-decoration: underline; }

/* CTA */
.footer-cta-group { display: flex; flex-direction: column; gap: 1rem; }

.footer-cta-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin: 0;
}

.footer-cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--rosa);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 99px;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s;
  align-self: flex-start;
}
.footer-cta-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* Bottom bar */
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.75rem 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.footer-bottom p { margin: 0; }

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
