/* ════════════════════════════════════════════════
   CLUB369 — CSS
   Paleta azul, laranja e branco · Fundo azul-claro · Tema claro
════════════════════════════════════════════════ */

:root {
  --blue:       #1A5FA8;
  --blue-dark:  #0D3866;
  --blue-light: #4C9FE0;
  --blue-glow:  #8AC9FF;
  --orange:      #E87A00;
  --gold:        #F4A728;
  --noise-texture: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  --sun-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160' width='160' height='160'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23E87A00' stop-opacity='0.16'/%3E%3Cstop offset='100%25' stop-color='%23F4A728' stop-opacity='0.16'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='url(%23g)'%3E%3Cpath id='ray' d='M80,80 Q68,50 80,14 Q92,50 80,80 Z'/%3E%3Cuse href='%23ray' transform='rotate(45 80 80)'/%3E%3Cuse href='%23ray' transform='rotate(90 80 80)'/%3E%3Cuse href='%23ray' transform='rotate(135 80 80)'/%3E%3Cuse href='%23ray' transform='rotate(180 80 80)'/%3E%3Cuse href='%23ray' transform='rotate(225 80 80)'/%3E%3Cuse href='%23ray' transform='rotate(270 80 80)'/%3E%3Cuse href='%23ray' transform='rotate(315 80 80)'/%3E%3Ccircle cx='80' cy='80' r='20'/%3E%3C/g%3E%3C/svg%3E");
}

/* ── Reset & Base ── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background-color: #eef1fb;
  color: var(--blue-dark);
  font-family: 'Inter', sans-serif;
  cursor: url("https://lh3.googleusercontent.com/d/1LyCW7tEh_jAV9uyktcK-4SGMhLHBe6LM=s80") 40 40, auto;
  overflow-x: hidden;
  max-width: 100vw;
}

body::before {
  content: '';
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  z-index: -2 !important;
  background-image:
    radial-gradient(ellipse 65% 45% at 88%  6%,  rgba(140,201,255,0.35) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at  6% 92%,  rgba(13,56,102,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 75% 60% at 100% 100%, rgba(255,140,0,0.85) 0%, rgba(255,140,0,0.3) 45%, transparent 72%),
    linear-gradient(160deg, #dbe8f9 0%, #c6dcf4 50%, #b9d3f1 100%);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
}

body::after {
  content: '';
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  z-index: -1 !important;
  pointer-events: none;
  opacity: 0.9;
  mix-blend-mode: overlay;
  background-image: var(--noise-texture);
  background-size: 140px 140px;
  background-repeat: repeat;
}

h1, h2, h3 { font-family: 'Plus Jakarta Sans', sans-serif; }

/* ── Utility text classes ── */
.body-text      { color: #3a4060; }
.secondary-text { color: #3a4060; }

.section-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.brand-strong { color: var(--blue); font-weight: 600; }
.brand-orange  { color: var(--orange); font-weight: 700; }

/* ── Text Gradient (azul) ── */
.text-gradient {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 55%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-h1 {
  font-size: 3rem;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.25;
}
.hero-h1.signature-font {
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  font-size: clamp(4.2rem, 22vw, 6.5rem);
  padding-bottom: 0.2em;
}

/* ── Divider ── */
.section-divider {
  height: 1px;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(to right, transparent, var(--blue), transparent);
  opacity: 0.45;
  position: relative;
  overflow: hidden;
}
.section-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
  opacity: 0;
}
.section-divider.is-visible::after {
  animation: divider-shimmer 1.1s ease-out 0.25s 1;
}
@keyframes divider-shimmer {
  0%   { left: -60%; opacity: 0; }
  20%  { opacity: 1; }
  100% { left: 120%; opacity: 0; }
}

/* ── Logo (header) ── */
.brand-logo-link {
  display: inline-flex;
  align-items: center;
}
.brand-logo-img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.35));
}
@media (max-width: 860px) {
  .brand-logo-img { height: 36px; width: 36px; }
}

/* ── Cards ── */
.card-glow {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(26, 95, 168, 0.13);
  box-shadow: 0 2px 16px rgba(26, 95, 168, 0.04);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.card-glow:hover {
  border-color: rgba(232, 122, 0, 0.30);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 95, 168, 0.09);
  background: rgba(255, 255, 255, 0.96);
}

/* ── Fade-up Scroll Reveal ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ── */
.btn-primary {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.8) 0%, rgba(220, 236, 251, 0.6) 55%, rgba(200, 224, 248, 0.45) 100%);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--blue-dark);
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  display: inline-block;
  text-decoration: none;
  position: relative;
  overflow: visible;
  z-index: 0;
  box-shadow: 0 4px 20px rgba(13, 56, 102, 0.12);
}
.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(26, 95, 168, 0.32);
}
.btn-primary:active {
  transform: scale(0.97);
  box-shadow: 0 4px 16px rgba(26, 95, 168, 0.28);
}

/* Linha de luz que desenha o contorno do botão via SVG (stroke-dasharray/dashoffset) —
   mesma técnica usada em corrida-das-cheetaras.vercel.app. O <rect> tem pathLength="100"
   e stroke-dasharray="100" (um traço = o perímetro inteiro); com dashoffset:100 o traço
   fica todo "fora de vista", e ao animar até 0 ele se desenha em volta do botão. */
.btn-border-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.btn-border-svg rect {
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.45s ease-out;
}
.btn-primary-label {
  position: relative;
}

@media (hover: hover) {
  .btn-primary:hover .btn-border-svg rect { stroke-dashoffset: 0; }
}

/* Mobile (sem hover): o traço desenha e desfaz sozinho, em loop */
@media (hover: none) {
  .btn-border-svg rect {
    transition: none;
    animation: btn-border-draw-loop 2.6s ease-in-out infinite;
  }
}
@keyframes btn-border-draw-loop {
  0%, 100% { stroke-dashoffset: 100; }
  50%      { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .btn-border-svg rect { animation: none !important; transition: none; }
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary::before { animation: none; }
  .btn-primary { animation: none !important; }
}

.btn-outline {
  border: 1.5px solid var(--blue);
  color: var(--blue);
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-outline:hover {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
}

/* Outline button inside dark hero overlay */
.btn-outline-hero {
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  display: inline-block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-outline-hero:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.10));
  border-color: #fff;
  color: #fff;
}
.btn-outline-hero:active {
  transform: scale(0.97);
}

/* Hero: esquerda azul, direita laranja */
.hero-split .btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: transparent;
  color: #fff;
}
.hero-split .btn-primary:hover {
  box-shadow: 0 8px 32px rgba(26,95,168,0.42);
}
.hero-split .btn-outline-hero {
  background-image: linear-gradient(135deg, var(--orange), var(--gold));
  border-color: transparent;
  color: #fff;
}
.hero-split .btn-outline-hero:hover {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  box-shadow: 0 8px 32px rgba(232,122,0,0.42);
  border-color: transparent;
  color: #fff;
}

/* ── Urgency Badge (vermelho — senso de escassez) ── */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #c0392b 0%, #ef4444 50%, #ff6b6b 100%);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #fff;
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
  animation: badge-blink 1.4s ease-in-out infinite;
}
.urgency-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.70) 50%, transparent 100%);
  transform: translateX(-200%) skewX(-15deg);
  animation: badge-shine 2.4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.urgency-badge > * {
  position: relative;
  z-index: 2;
}
.urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55); }
  50%       { box-shadow: 0 0 0 6px transparent; }
}

/* ════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════ */
.site-header {
  transition: background 0.35s ease, box-shadow 0.35s ease;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
.site-header.scrolled {
  background: rgba(7, 27, 51, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.09);
}

/* Menu horizontal (desktop) — centralizado na tela, independente da logo */
.header-nav-desktop {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.header-nav-desktop a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.25s;
}
.header-nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transition: right 0.25s ease;
}
.header-nav-desktop a:hover {
  color: #fff;
}
.header-nav-desktop a:hover::after {
  right: 0;
}

/* Hamburguer (mobile) */
.header-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.header-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.header-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(7, 27, 51, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.header-mobile-menu.is-open {
  max-height: 320px;
}
.header-mobile-menu a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.9rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 860px) {
  .header-nav-desktop { display: none; }
  .header-hamburger { display: flex; }
  .header-mobile-menu { display: flex; }
}


/* ════════════════════════════════════════════════
   HERO SPLIT
════════════════════════════════════════════════ */
.hero-split {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 1.5rem 5rem;
  position: relative;
  z-index: 0;
  overflow: hidden;
  background-color: #071b33;
  transform: translateZ(0);
}

.hero-bg-media {
  display: block;
  position: absolute;
  inset: -2px;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
/* Imagem estática no hero (desktop e mobile) — trocado por vídeo por performance */
.hero-bg-image--desktop { display: none; }
.hero-bg-image--mobile { display: block; }
@media (min-width: 861px) {
  .hero-bg-image--desktop { display: block; }
  .hero-bg-image--mobile { display: none; }
}
@media (max-width: 860px) {
  .hero-video-overlay {
    background: linear-gradient(
      to right,
      rgba(7, 27, 51, 0.88)  0%,
      rgba(7, 27, 51, 0.84) 35%,
      rgba(7, 27, 51, 0.72) 58%,
      rgba(7, 27, 51, 0.57) 75%,
      rgba(7, 27, 51, 0.47) 100%
    );
  }

  /* Dissolve do hero mais alto e gradual (mobile): mesmo esquema de cor do
     fundo da seção seguinte, só que estendido, pra sumir de vista antes da
     transição em vez de cortar seco na borda do hero. */
  .hero-split::after {
    height: 420px;
    background: linear-gradient(to bottom,
      transparent 0%,
      rgba(219, 232, 249, 0.01) 10%,
      rgba(219, 232, 249, 0.04) 20%,
      rgba(219, 232, 249, 0.09) 30%,
      rgba(219, 232, 249, 0.16) 40%,
      rgba(219, 232, 249, 0.25) 50%,
      rgba(219, 232, 249, 0.36) 60%,
      rgba(219, 232, 249, 0.49) 70%,
      rgba(219, 232, 249, 0.64) 80%,
      rgba(219, 232, 249, 0.81) 90%,
      #dbe8f9 100%
    );
  }
}

.hero-video-overlay {
  position: absolute;
  inset: -2px;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(7, 27, 51, 0.96)  0%,
    rgba(7, 27, 51, 0.92) 35%,
    rgba(7, 27, 51, 0.80) 58%,
    rgba(7, 27, 51, 0.65) 75%,
    rgba(7, 27, 51, 0.55) 100%
  );
}

/* Fade no rodapé do hero, dissolvendo no fundo claro da seção seguinte */
.hero-split::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px; bottom: -2px;
  height: 260px;
  z-index: 2;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(219, 232, 249, 0.02) 10%,
    rgba(219, 232, 249, 0.05) 20%,
    rgba(219, 232, 249, 0.10) 30%,
    rgba(219, 232, 249, 0.18) 40%,
    rgba(219, 232, 249, 0.28) 50%,
    rgba(219, 232, 249, 0.40) 60%,
    rgba(219, 232, 249, 0.55) 70%,
    rgba(219, 232, 249, 0.72) 80%,
    rgba(219, 232, 249, 0.88) 90%,
    #dbe8f9 100%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-brand-logo {
  width: 104px;
  height: 104px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.30));
}

.hero-h1-wrap {
  filter:
    drop-shadow(0 0 6px rgba(255, 150, 20, 0.45))
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.50));
}

.hero-segunda {
  position: relative;
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-style: italic;
  font-size: 1.2rem;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: -1rem;
  background-image: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-segunda::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  background-image: linear-gradient(
    100deg,
    transparent 30%,
    rgba(255, 255, 255, 0.95) 48%,
    rgba(255, 255, 255, 0.95) 52%,
    transparent 70%
  );
  background-repeat: no-repeat;
  background-size: 300% 100%;
  background-position: 250% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: signature-shine 3.5s linear infinite;
  pointer-events: none;
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.6;
  letter-spacing: normal;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-ctas {
  display: none;
}

/* ────────────────────────────────────────────────
   HERO VISUAL — Sistema Solar
──────────────────────────────────────────────── */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-wrap {
  width: 320px;
  height: 320px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 600px;
}

.hero-visual {
  animation: solar-float 9s ease-in-out infinite;
}
@keyframes solar-float {
  0%, 100% { transform: translateY(0) rotate3d(1, 1, 0, 0deg); }
  25%      { transform: translateY(-10px) rotate3d(1, 0.4, 0, 4deg); }
  50%      { transform: translateY(0) rotate3d(1, 1, 0, 0deg); }
  75%      { transform: translateY(8px) rotate3d(-1, 0.4, 0, -4deg); }
}

/* Aura central */
.hero-visual-wrap::before {
  content: '';
  position: absolute;
  width: 154px;
  height: 154px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255, 255, 255, 0.20) 0%,
    rgba(255, 255, 255, 0.06) 45%,
    transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-logo-center {
  width: 130px;
  height: 130px;
  object-fit: contain;
  position: relative;
  z-index: 10;
  filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.55))
          drop-shadow(0 0 48px rgba(255, 255, 255, 0.25));
}

/* Órbitas */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  border-width: 1px;
  will-change: transform;
}
.hero-ring::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes spin-cw  { from { transform: rotate(0deg);   } to { transform: rotate(360deg);  } }
@keyframes spin-ccw { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

.hero-ring-1 {
  inset: 112px;
  border-color: rgba(255, 255, 255, 0.50);
  animation: spin-cw 6s linear infinite;
}
.hero-ring-1::before {
  width: 10px; height: 10px; top: -5px;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold), 0 0 20px rgba(244,167,40,0.6);
}

.hero-ring-2 {
  inset: 76px;
  border-color: rgba(255, 255, 255, 0.35);
  animation: spin-ccw 13s linear infinite;
}
.hero-ring-2::before {
  width: 9px; height: 9px; top: -4.5px;
  background: var(--orange);
  box-shadow: 0 0 9px var(--orange), 0 0 18px rgba(232,122,0,0.5);
}

.hero-ring-3 {
  inset: 36px;
  border-color: rgba(255, 255, 255, 0.25);
  animation: spin-cw 23s linear infinite;
}
.hero-ring-3::before {
  width: 14px; height: 14px; top: -7px;
  background: var(--gold);
  box-shadow: 0 0 14px var(--gold), 0 0 28px rgba(244,167,40,0.45);
}

.hero-ring-4 {
  inset: -3px;
  border-color: rgba(255, 255, 255, 0.16);
  animation: spin-ccw 36s linear infinite;
}
.hero-ring-4::before {
  width: 8px; height: 8px; top: -4px;
  background: rgba(232, 122, 0, 0.75);
  box-shadow: 0 0 8px rgba(232,122,0,0.6);
}

.hero-ring-5 {
  inset: -35px;
  border-color: rgba(255, 255, 255, 0.09);
  animation: spin-cw 60s linear infinite;
}
.hero-ring-5::before {
  width: 7px; height: 7px; top: -3.5px;
  background: rgba(244, 167, 40, 0.60);
  box-shadow: 0 0 7px rgba(244,167,40,0.35);
}

/* ── Barra de CTA fixa (mobile + desktop) ── */
.desktop-cta-bar {
  display: block;
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%) translateY(24px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  width: calc(100% - 2rem);
  max-width: 380px;
}
.desktop-cta-bar.desktop-cta-bar-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.desktop-cta-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.8) 0%, rgba(220, 236, 251, 0.6) 55%, rgba(200, 224, 248, 0.45) 100%);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 12px 40px rgba(13, 56, 102, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.desktop-cta-bar-price {
  font-size: 0.78rem;
  color: var(--blue-dark);
  white-space: nowrap;
}
.desktop-cta-bar-price strong {
  animation: cta-price-alternate 2.4s ease-in-out infinite;
}
@keyframes cta-price-alternate {
  0%, 100% { color: var(--blue); }
  50%      { color: #22c55e; }
}
@media (min-width: 861px) {
  .desktop-cta-bar {
    bottom: 1.5rem;
    width: auto;
    max-width: none;
  }
  .desktop-cta-bar-inner {
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 0.85rem 1.75rem;
  }
  .desktop-cta-bar-price {
    font-size: 0.85rem;
  }
}

/* ── Dica de scroll no hero ── */
.hero-scroll-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: var(--orange);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(232, 122, 0, 0.55);
  border-radius: 50%;
  transition: border-color 0.2s, color 0.2s;
}
.hero-scroll-hint:hover {
  border-color: var(--orange);
  color: var(--gold);
}
@media (max-width: 860px) {
  .hero-scroll-hint {
    position: static;
    transform: none;
    margin: 1.25rem auto 0;
  }
}
.hero-scroll-hint-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  animation: hero-scroll-hint-bounce 1.6s ease-in-out infinite;
}
@keyframes hero-scroll-hint-bounce {
  0%, 100% { transform: translateY(-3px); }
  50%       { transform: translateY(3px); }
}

/* ── Título com letras surgindo (seção seguinte ao hero) ── */
.reveal-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 55%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--blue);
}
.text-reveal-chars.is-visible .reveal-char {
  opacity: 1;
  transform: translateY(0);
}

/* ── Badge flutuante mobile (fora do hero, controlado por JS) ── */
.urgency-float-mobile {
  display: none;
}

@media (max-width: 860px) {
  .hero-split {
    flex-direction: column;
    justify-content: center;
  }
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 0;
  }
  .hero-text  { align-items: center; }
  .hero-sub   { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-brand-logo { display: none; }

  .hero-visual {
    order: -1;
    margin-bottom: 2rem;
  }
  .hero-visual-wrap {
    width: 160px;
    height: 160px;
  }
  .hero-visual-wrap::before {
    width: 77px;
    height: 77px;
  }
  .hero-logo-center {
    width: 65px;
    height: 65px;
  }
  .hero-ring-1 { inset: 56px; }
  .hero-ring-1::before { width: 5px;   height: 5px;   top: -2.5px; }
  .hero-ring-2 { inset: 38px; }
  .hero-ring-2::before { width: 4.5px; height: 4.5px; top: -2.25px; }
  .hero-ring-3 { inset: 18px; }
  .hero-ring-3::before { width: 7px;   height: 7px;   top: -3.5px; }
  .hero-ring-4 { inset: -1.5px; }
  .hero-ring-4::before { width: 4px;   height: 4px;   top: -2px; }
  .hero-ring-5 { inset: -17.5px; }
  .hero-ring-5::before { width: 3.5px; height: 3.5px; top: -1.75px; }

  .hero-h1 {
    font-size: 3.5rem;
    font-size: clamp(3rem, 11vw, 4rem);
  }
  .hero-h1-wrap {
    filter:
      drop-shadow(0 0 5px rgba(255, 150, 20, 0.40))
      drop-shadow(0 2px 4px rgba(0, 0, 0, 0.55));
  }

  /* No hero mobile: oculta badge in-hero, mostra a flutuante */
  .hero-text .urgency-badge { display: none !important; }

  .urgency-float-mobile {
    display: inline-flex;
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(16px);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
    white-space: nowrap;
  }
  .urgency-float-mobile.urgency-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
}

/* ════════════════════════════════════════════════
   O QUE VOCÊ RECEBE
════════════════════════════════════════════════ */
.servicos-section {
  background-image: var(--sun-pattern);
  background-size: 130px 130px;
  background-position: right 6% top 15%;
  background-repeat: no-repeat;
}

.carousel-wrapper {
  overflow: hidden;
  padding: 2rem 0 3.5rem;
}
.carousel-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: carousel-scroll 32s linear infinite;
}

/* ── Variante de arraste manual (sem auto-scroll) ── */
@media (min-width: 769px) {
  #pilaresTrack .carousel-item {
    width: 380px;
  }
}

.carousel-wrapper--spotlight {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 0 4rem;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel-wrapper--spotlight::-webkit-scrollbar { display: none; }
#pilaresTrack {
  animation: none;
  gap: 0.85rem;
}

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

.servico-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94) 0%, rgba(230, 242, 253, 0.86) 55%, rgba(210, 230, 250, 0.78) 100%);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 2px solid rgba(232, 122, 0, 0.65);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.9),
    inset 0 -18px 30px -20px rgba(140, 200, 255, 0.35),
    0 12px 34px rgba(13, 30, 60, 0.20);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.servico-card::after {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 45%;
  border-radius: 50% / 60% 60% 100% 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  transition: opacity 0.3s;
}
.servico-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--gold), var(--orange), transparent);
  opacity: 0.85;
}
.servico-card .body-text { color: #2c4a68; transition: color 0.3s; }
.carousel-item {
  position: relative;
  flex-shrink: 0;
  width: 320px;
}

/* ── Depoimento flutuante ancorado a um card (inspirado em cards de foto+quote) ── */
.floating-testimonial {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: -1.75rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 1rem;
  padding: 1rem 1.15rem;
  box-shadow: 0 14px 32px rgba(13, 30, 60, 0.22);
  text-align: left;
}
.floating-testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.floating-testimonial-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}
.floating-testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.floating-testimonial-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blue-dark);
}
.floating-testimonial-quote {
  font-size: 0.82rem;
  line-height: 1.5;
  font-style: italic;
  color: #3a4a5c;
}

.comunidade-card-wrap {
  position: relative;
}

/* Desktop: card horizontal, abaixo do card principal, sem sobrepor o texto */
@media (min-width: 769px) {
  .floating-testimonial--comunidade {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 640px;
    margin: 1.75rem auto 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.1rem;
  }
  .floating-testimonial--comunidade .floating-testimonial-header {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
  }
  .floating-testimonial--comunidade .floating-testimonial-quote {
    margin: 0;
    padding-left: 1.1rem;
    border-left: 2px solid rgba(232, 122, 0, 0.3);
  }
}

/* Mobile: mantém como card flutuante ancorado no canto */
@media (max-width: 768px) {
  .comunidade-card {
    padding-bottom: 8.5rem !important;
  }
  .floating-testimonial--comunidade {
    left: 50%;
    right: auto;
    bottom: -1rem;
    transform: translateX(-50%);
    width: 88%;
  }
}

.prints-gallery--with-testimonial {
  position: relative;
  padding-bottom: 1rem;
}
.floating-testimonial--prints {
  left: auto;
  right: 1rem;
  bottom: 2.75rem;
  width: 240px;
}
@media (max-width: 640px) {
  .floating-testimonial--prints {
    position: static;
    width: 100%;
    margin-top: 1.25rem;
  }
}

.floating-testimonial--cta {
  position: static;
  width: 100%;
  max-width: 380px;
  margin: 0 auto 2rem;
}

/* Fundo opaco (mesma cor em que termina o fade do hero) cobrindo a seção inteira —
   evita a costura visível que existia ao "devolver" o fundo fixo do body no meio da seção */
#video {
  position: relative;
  background-color: #dbe8f9;
}

/* ── Galeria de prints: card único com setas, dots e arraste ── */
.prints-gallery {
  max-width: 640px;
  margin: 0 auto;
}
.prints-gallery-frame {
  position: relative;
  aspect-ratio: 2 / 1;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(140, 200, 255, 0.22);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.20);
  background: #0a1020;
  cursor: grab;
  touch-action: pan-y;
}
.prints-gallery-frame:active {
  cursor: grabbing;
}
.prints-gallery-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.prints-gallery-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}
.prints-gallery-media {
  position: relative;
  width: 100%;
  height: 100%;
  animation: tilt-idle-float 8s ease-in-out infinite;
}
.prints-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
}
.prints-gallery-media .prints-gallery-overlay {
  position: absolute;
  left: 4%;
  top: 44%;
  width: 48%;
  height: 32%;
  object-fit: contain;
  border-radius: 4px;
}
.prints-gallery-media .prints-gallery-overlay--top {
  top: 1%;
  left: 1%;
  width: 32%;
  height: 36%;
}
@keyframes tilt-idle-float {
  0%, 100% { transform: translateY(0) rotate(0); }
  25%      { transform: translateY(-8px) rotate(-1.2deg); }
  50%      { transform: translateY(0) rotate(0); }
  75%      { transform: translateY(-5px) rotate(1.2deg); }
}
.prints-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(10, 14, 30, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s, transform 0.2s;
}
.prints-gallery-arrow:hover {
  background: rgba(10, 14, 30, 0.75);
}
.prints-gallery-arrow:active {
  transform: translateY(-50%) scale(0.9);
}
.prints-gallery-arrow--prev { left: 0.75rem; }
.prints-gallery-arrow--next { right: 0.75rem; }
.prints-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.prints-gallery-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(140, 200, 255, 0.25);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.prints-gallery-dot.is-active {
  background: var(--orange);
  transform: scale(1.25);
}
@media (min-width: 769px) {
  .prints-gallery {
    max-width: 900px;
  }
  .prints-gallery-frame {
    aspect-ratio: 16 / 9;
  }
  .prints-gallery-media .prints-gallery-overlay {
    left: 4%;
    top: 42%;
    width: 46%;
    height: 34%;
    object-fit: contain;
    border-radius: 6px;
  }
  .prints-gallery-media .prints-gallery-overlay--top {
    top: 1%;
    left: 1%;
    width: 32%;
    height: 30%;
  }
}

.depoimento-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.depoimento-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.depoimento-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid var(--gold);
  overflow: hidden;
  flex-shrink: 0;
}
.depoimento-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.depoimento-author {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-dark);
}
.depoimento-bubble {
  position: relative;
  background: #ffffff;
  border-radius: 0 1rem 1rem 1rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 20px rgba(13, 30, 60, 0.14);
  margin-left: 0.4rem;
}
.depoimento-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: -0.5rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0.6rem 0.6rem 0;
  border-color: transparent #ffffff transparent transparent;
}
.depoimento-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #1f2a37;
  font-style: normal;
}

/* ── Composição de depoimentos em "roleta" (coverflow): todos os cards existem no DOM,
   arrastar ou trocar automaticamente só anima a posição/escala/opacidade de cada um ── */
.depoimentos-stack {
  position: relative;
  max-width: 900px;
  height: 340px;
  margin: 0 auto;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.depoimentos-stack:active {
  cursor: grabbing;
}
.depoimento-card--cf {
  position: absolute;
  top: 2.5rem;
  left: 50%;
  width: 300px;
  margin-left: -150px;
}
.depoimento-card--cf img {
  pointer-events: none;
  -webkit-user-drag: none;
}
.depoimento-card--cf .depoimento-text {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 640px) {
  .depoimentos-stack {
    height: 300px;
  }
  .depoimento-card--cf {
    width: 230px;
    margin-left: -115px;
  }
}
.servico-card:hover {
  background: linear-gradient(160deg, rgba(140, 200, 255, 0.55) 0%, rgba(26, 95, 168, 0.65) 55%, rgba(13, 56, 102, 0.75) 100%);
  border-color: var(--gold);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.35),
    inset 0 -18px 30px -20px rgba(13, 56, 102, 0.5),
    0 16px 48px rgba(26, 95, 168, 0.28),
    0 0 32px rgba(140, 200, 255, 0.20);
  transform: translateY(-5px);
}
.servico-card:hover::after { opacity: 0.4; }
.servico-card:hover .body-text { color: rgba(255, 255, 255, 0.9); }
.servico-card:hover .servico-titulo {
  color: #fff;
  text-shadow: 0 0 16px rgba(244, 167, 40, 0.55);
}
.servico-card:hover .servico-destaque { color: var(--gold); text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65); }
.servico-card:hover .servico-lista li { color: rgba(255, 255, 255, 0.88); }
.servico-card:hover .servico-icon-badge {
  background: radial-gradient(circle, rgba(140, 200, 255, 0.28) 0%, rgba(140, 200, 255, 0.05) 65%, transparent 100%);
  border-color: rgba(255, 255, 255, 0.3);
}

.servico-icon-badge {
  position: relative;
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.35rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 122, 0, 0.16) 0%, rgba(232, 122, 0, 0.03) 65%, transparent 100%);
  border: 1px solid rgba(232, 122, 0, 0.3);
  box-shadow: 0 0 24px rgba(232, 122, 0, 0.12), inset 0 0 12px rgba(255, 255, 255, 0.4);
  transition: background 0.3s, border-color 0.3s;
}
.servico-icon-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 180, 100, 0.35));
}
.servico-card--materiais .servico-icon-img {
  width: 70px;
  height: 70px;
}
.servico-card--numerologia .servico-icon-img {
  width: 82px;
  height: 82px;
}

.servico-titulo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--orange);
  text-shadow: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
  transition: color 0.3s, text-shadow 0.3s;
}

.servico-destaque {
  font-size: 0.9rem;
  font-weight: 700;
  color: #b5610a;
  text-shadow: none;
  transition: color 0.3s, text-shadow 0.3s;
}

.servico-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  align-self: stretch;
  position: relative;
  border-top: none;
  padding-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.servico-lista::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--orange), var(--gold), var(--orange), transparent);
  opacity: 0.6;
}
.servico-lista li {
  font-size: 0.83rem;
  color: #3a5674;
  line-height: 1.55;
  text-align: center;
  letter-spacing: 0.01em;
  transition: color 0.3s;
}
.servico-lista li::before {
  content: '▸ ';
  color: var(--orange);
  font-size: 0.85rem;
}
.servico-card:hover .servico-lista li::before { color: var(--gold); }

@media (max-width: 768px) {
  .carousel-item { width: 88vw; max-width: 380px; }
  .carousel-wrapper--spotlight {
    scroll-snap-type: x mandatory;
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .carousel-wrapper--spotlight .carousel-item {
    scroll-snap-align: center;
  }
  #video     { padding-bottom: 1.5rem !important; }
  #desafios { padding-top: 1.5rem !important; padding-bottom: 2rem !important; }
  #recebe   { padding-top: 3rem !important; padding-bottom: 2rem !important; }
  #comunidade { padding-top: 2rem !important; padding-bottom: 2rem !important; }
  #precos   { padding-top: 2rem !important; }
}

/* ════════════════════════════════════════════════
   VÍDEO
════════════════════════════════════════════════ */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 20px 56px rgba(26, 95, 168, 0.18);
  background: #071b33;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ════════════════════════════════════════════════
   DESAFIOS
════════════════════════════════════════════════ */
.step-number {
  background: #FF5C00;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.step-title {
  color: var(--blue);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.processo-card .step-title,
.processo-card .body-text {
  background: linear-gradient(135deg, #04203f 0%, var(--blue-dark) 45%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--blue);
}

.processo-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #eaf3ff;
  border: 1px solid rgba(200, 215, 255, 0.40);
  box-shadow: 0 4px 20px rgba(200, 215, 255, 0.18);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  animation: card-sway 6s ease-in-out infinite;
  transform-origin: 50% 100%;
  /* Força o navegador a promover o card pra sua própria camada de composição —
     resolve o vídeo com mix-blend-mode "vazando" das bordas arredondadas em
     alguns Chrome/WebKit mobile, sem afetar a opacidade do próprio vídeo
     (diferente da tentativa anterior com mask-image, que apagava o vídeo). */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.processo-card-video {
  border-radius: inherit;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.processo-card:hover .processo-card-video,
.processo-card:focus-within .processo-card-video {
  opacity: 0.35;
  transform: scale(1.04);
}
@media (hover: none), (pointer: coarse) {
  .processo-card-video {
    opacity: 0.35;
    transform: scale(1.04);
  }
}
.processo-card > .step-number,
.processo-card > div:nth-child(3) {
  position: relative;
  z-index: 1;
}
.processo-card > div:nth-child(3) {
  background: #eef6ff;
  border-radius: 12px;
  padding: 0.5rem 0.85rem;
}
.processo-card:hover {
  border-color: rgba(26, 95, 168, 0.30);
  box-shadow:
    0  6px 28px rgba(200, 215, 255, 0.36),
    0 16px 50px rgba(185, 208, 255, 0.16);
}

@keyframes card-sway {
  0%, 100% { transform: rotate(-1.4deg); }
  50%      { transform: rotate(1.4deg); }
}

/* ── Perguntas Rápidas: mesmo card/vídeo de Desafios, sem numeração ── */
.pergunta-card-body {
  position: relative;
  z-index: 1;
  background: #eef6ff;
  border-radius: 12px;
  padding: 0.75rem 1rem;
}
.signature-font {
  position: relative;
  display: inline-block;
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
  font-size: 1.6em;
  line-height: 1.35;
  padding: 0.1em 0.25em 0.25em 0.05em;
  background-image: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.signature-font::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  padding: inherit;
  font: inherit;
  background-image: linear-gradient(
    100deg,
    transparent 30%,
    rgba(255, 255, 255, 0.95) 48%,
    rgba(255, 255, 255, 0.95) 52%,
    transparent 70%
  );
  background-repeat: no-repeat;
  background-size: 300% 100%;
  background-position: 250% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: signature-shine 3.5s linear infinite;
  pointer-events: none;
}
@keyframes signature-shine {
  to { background-position: -100% 0; }
}
/* ════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.faq-item {
  background: #eaf3ff;
  border: 1px solid rgba(200, 215, 255, 0.40);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(200, 215, 255, 0.18);
  padding: 1.1rem 1.4rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(26, 95, 168, 0.30);
}
.faq-item[open] {
  box-shadow: 0 6px 28px rgba(200, 215, 255, 0.36);
}
.faq-question {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--blue-dark);
  font-size: 1.05rem;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  flex-shrink: 0;
  color: var(--orange);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding-top: 0.85rem;
  color: #3a4060;
  line-height: 1.6;
}
.faq-answer p { margin-bottom: 0.6rem; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul {
  margin: 0.4rem 0 0.6rem 1.1rem;
  list-style: disc;
}
.faq-answer li { margin-bottom: 0.35rem; }
.faq-founder-photo {
  display: block;
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 0 1rem;
  box-shadow: 0 4px 20px rgba(200, 215, 255, 0.4);
}

/* ════════════════════════════════════════════════
   QUEM CRIOU O CLUB369
════════════════════════════════════════════════ */
.fundador-content {
  display: flex;
  align-items: stretch;
  gap: 2.5rem;
  perspective: 1000px;
}
@media (min-width: 768px) {
  .fundador-content {
    background:
      linear-gradient(160deg, #eaf3ff 0%, #f4f8ff 100%) padding-box,
      conic-gradient(from var(--fundador-border-angle), transparent 0%, var(--orange) 8%, var(--gold) 14%, transparent 26%, transparent 100%) border-box;
    border: 2px solid transparent;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(20, 40, 90, 0.18);
    padding: 2.5rem;
    animation: fundador-card-sway 9s ease-in-out infinite, fundador-border-spin 4.5s linear infinite;
  }
  /* A foto tem sua própria animação rotate3d (fundador-photo-float); aninhar dois
     transforms 3D independentes dentro do preserve-3d do card causava um bug visual
     de recorte diagonal na imagem (clipping do "near plane" em Chrome/WebKit).
     No desktop a foto some quieta e deixa o card inteiro balançar como uma peça só. */
  .fundador-photo {
    animation: none;
  }
}
.fundador-photo {
  flex-shrink: 0;
  width: 340px;
  height: auto;
  align-self: stretch;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
  box-shadow: 0 16px 44px rgba(20, 40, 90, 0.28);
  animation: fundador-photo-float 14s ease-in-out infinite;
}
@keyframes fundador-photo-float {
  0%, 100% { transform: translateY(0) rotate3d(1, 1, 0, 0deg); }
  25%      { transform: translateY(-10px) rotate3d(1, 0.4, 0, 4deg); }
  50%      { transform: translateY(0) rotate3d(1, 1, 0, 0deg); }
  75%      { transform: translateY(8px) rotate3d(-1, 0.4, 0, -4deg); }
}
.fundador-text p { margin-bottom: 0.9rem; }
.fundador-text p:last-child { margin-bottom: 0; }
.fundador-lista {
  margin: 0.4rem 0 0.9rem 1.2rem;
  list-style: disc;
}
.fundador-lista li { margin-bottom: 0.4rem; }
@media (max-width: 767px) {
  .fundador-content {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 0;
    perspective: 700px;
  }
  .fundador-photo {
    width: 100%;
    height: auto;
    align-self: auto;
    aspect-ratio: 4 / 5;
    object-position: top center;
    margin-bottom: 1.5rem;
    border-radius: 0;
    box-shadow: none;
    -webkit-mask-image:
      linear-gradient(to bottom, transparent 0%, black 22%, black 78%, transparent 100%),
      linear-gradient(to right, transparent 0%, black 22%, black 78%, transparent 100%);
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(to bottom, transparent 0%, black 22%, black 78%, transparent 100%),
      linear-gradient(to right, transparent 0%, black 22%, black 78%, transparent 100%);
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    mask-composite: intersect;
  }
  .fundador-text {
    position: relative;
    overflow: hidden;
    background:
      linear-gradient(160deg, #eaf3ff 0%, #f4f8ff 100%) padding-box,
      conic-gradient(from var(--fundador-border-angle), transparent 0%, var(--orange) 8%, var(--gold) 14%, transparent 26%, transparent 100%) border-box;
    border: 2px solid transparent;
    border-radius: 20px;
    box-shadow: 0 14px 36px rgba(20, 40, 90, 0.18);
    padding: 1.6rem 1.3rem;
    transform-style: preserve-3d;
    animation: fundador-card-sway 7s ease-in-out infinite, fundador-border-spin 3.5s linear infinite;
  }
  .fundador-text strong {
    color: var(--orange);
  }
}
@keyframes fundador-card-sway {
  0%, 100% { transform: rotate3d(1, 0.15, 0, 0deg) translateY(0); }
  25%      { transform: rotate3d(1, 0.3, -0.15, 1.6deg) translateY(-5px); }
  50%      { transform: rotate3d(-0.4, 0.15, 0, 0deg) translateY(0); }
  75%      { transform: rotate3d(-1, 0.3, 0.15, -1.6deg) translateY(4px); }
}
@property --fundador-border-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}
@keyframes fundador-border-spin {
  to { --fundador-border-angle: 360deg; }
}
@media (prefers-reduced-motion: reduce) {
  .fundador-text { animation: none !important; }
}

/* ════════════════════════════════════════════════
   PREÇOS
════════════════════════════════════════════════ */
.section-alt {
  position: relative;
  z-index: 0;
  background-image:
    linear-gradient(160deg, rgba(238, 241, 251, 0.94) 0%, rgba(219, 232, 249, 0.94) 50%, rgba(185, 211, 241, 0.94) 100%),
    url('https://lh3.googleusercontent.com/d/10lYRTMYB5RI2k8MgqzE7w3FXFC3Y0vwT=s1600');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Dissolve a foto de fundo antes da borda da seção, pra não cortar seco na próxima */
.section-alt::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 280px;
  z-index: -1;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(219, 232, 249, 0.10) 20%,
    rgba(219, 232, 249, 0.25) 40%,
    rgba(219, 232, 249, 0.45) 60%,
    rgba(219, 232, 249, 0.70) 80%,
    #dbe8f9 100%
  );
  pointer-events: none;
}

.price-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--orange);
  margin-bottom: 0.3rem;
  display: block;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.price-card .price-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.price-card .price-period {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  opacity: 1;
  margin-top: 0.15rem;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.price-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.price-card ul li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.65rem;
  margin-top: 0.2rem;
}

.price-card > * { position: relative; z-index: 3; }

.price-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 56px rgba(26, 95, 168, 0.28);
}

/* Card destaque — sempre azul, borda laranja */
.card-featured {
  border-color: var(--gold) !important;
  background-image:
    linear-gradient(150deg, rgba(13, 56, 102, 0.88) 0%, rgba(26, 95, 168, 0.88) 100%),
    url('../assets/images/precos-card-bg.jpg') !important;
  background-size: cover, 180% !important;
  background-position: center, bottom right !important;
  box-shadow: 0 12px 48px rgba(6, 12, 30, 0.30) !important;
}
.card-featured .price-btn-primary {
  background: #fff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
}
.card-featured .price-btn-primary:hover {
  box-shadow: 0 6px 24px rgba(232, 122, 0, 0.40) !important;
}
.card-featured .price-btn-primary:active {
  box-shadow: 0 3px 12px rgba(232, 122, 0, 0.35) !important;
}
.card-featured .price-btn-primary .btn-primary-label {
  background-image: linear-gradient(135deg, var(--blue-dark), var(--blue), var(--blue-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.card-featured .text-gradient {
  background-image: linear-gradient(
    90deg,
    var(--gold) 0%,
    var(--gold) 25%,
    #fff 45%,
    #fffbe8 50%,
    #fff 55%,
    var(--gold) 75%,
    var(--gold) 100%
  );
  background-size: 400% auto;
  background-position: 0% center;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: price-shine 5s ease-in-out infinite;
  will-change: background-position;
}
.card-featured .price-period {
  color: var(--gold) !important;
}
.price-card .price-prefix {
  color: rgba(255, 255, 255, 0.80) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.80) !important;
}
.card-featured:hover {
  transform: scale(1.02) translateY(-8px) !important;
  box-shadow: 0 20px 56px rgba(232, 122, 0, 0.42) !important;
  border-color: var(--orange) !important;
}

/* Botões dentro dos price cards */
.price-btn {
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.price-btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #fff;
  border: none;
}
.price-btn-primary:hover {
  box-shadow: 0 6px 24px rgba(232, 122, 0, 0.45);
  transform: scale(1.03);
}
.price-btn-primary:active {
  transform: scale(0.97);
  box-shadow: 0 3px 12px rgba(232, 122, 0, 0.40);
}

/* ── Selo de garantia ── */
.guarantee-seal {
  margin-top: 0.85rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-dark);
}
.guarantee-seal--dark {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 1rem;
}

/* ── Selos de confiança ── */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
.trust-badges span {
  font-size: 0.78rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 95, 168, 0.25);
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.55);
}

/* ════════════════════════════════════════════════
   CTA FULL DARK
════════════════════════════════════════════════ */
.cta-full-dark {
  background: linear-gradient(150deg, #060c25 0%, #0a1830 50%, #060c25 100%);
  color: #f0f6f8;
  position: relative;
  overflow: hidden;
}
.cta-full-dark::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 60% at 75% 50%, rgba(26, 95, 168, 0.28) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 15% 50%, rgba(232, 122, 0, 0.10) 0%, transparent 60%);
  pointer-events: none;
}

.cta-gradient {
  background: linear-gradient(135deg, var(--blue-glow) 0%, var(--blue-light) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid rgba(26, 95, 168, 0.12);
  color: #6b7c9e;
}
.footer-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin: 0 auto 0.75rem;
  display: block;
}

.creator-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.3ch;
  margin-top: 1rem;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(26, 95, 168, 0.12);
  box-shadow: 0 4px 16px rgba(13, 56, 102, 0.10);
  overflow: hidden;
  text-decoration: none;
  font-size: 0.78rem;
  color: #6b7c9e;
  transition: transform 0.2s, box-shadow 0.2s;
}
.creator-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--gold), var(--orange), transparent);
}
.creator-badge strong {
  color: var(--orange);
  font-weight: 700;
}
.creator-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 56, 102, 0.16);
}

/* ════════════════════════════════════════════════
   MOBILE — hero buttons & urgency badge
════════════════════════════════════════════════ */
@media (max-width: 860px) {
  .hero-split .btn-primary {
    background-image: linear-gradient(135deg, #1A5FA8, #4C9FE0) !important;
    background-size: 100% 100% !important;
    background-repeat: no-repeat !important;
    border-color: transparent !important;
    color: #fff !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    animation: pulse-btn 4s ease-in-out infinite !important;
  }
  .hero-split .btn-outline-hero {
    background-image: linear-gradient(135deg, var(--orange), var(--gold)) !important;
    background-size: 100% 100% !important;
    background-repeat: no-repeat !important;
    border-color: transparent !important;
    color: #fff !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    animation: pulse-btn 4s ease-in-out infinite !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
  }

  .hero-split .hero-sub {
    text-shadow:
      0 1px 8px rgba(0, 0, 0, 0.75),
      0 2px 20px rgba(0, 0, 0, 0.55);
    color: #fff !important;
    font-weight: 400;
  }

  .hero-split .urgency-dot {
    background: #fff !important;
    box-shadow: none !important;
  }
}

@keyframes badge-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.45; }
}

@keyframes badge-shine {
  0%   { transform: translateX(-200%) skewX(-15deg); }
  100% { transform: translateX(350%) skewX(-15deg); }
}

@keyframes pulse-btn {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  }
  50% {
    transform: scale(1.018);
    box-shadow: 0 5px 20px rgba(26,95,168,0.30);
  }
}

@keyframes price-shine {
  0%   { background-position: 0% center; }
  35%  { background-position: 100% center; }
  100% { background-position: 100% center; }
}

/* ── Espaçamento entre seções ── */
#desafios {
  padding-bottom: 3rem;
  background-image: var(--sun-pattern);
  background-size: 110px 110px;
  background-position: left 4% top 65%;
  background-repeat: no-repeat;
}
#comunidade {
  background-image: var(--sun-pattern);
  background-size: 150px 150px;
  background-position: right 8% top 20%;
  background-repeat: no-repeat;
}
#depoimentos {
  background-image: var(--sun-pattern);
  background-size: 120px 120px;
  background-position: left 5% top 40%;
  background-repeat: no-repeat;
}
#comunidade { padding-top: 3rem; padding-bottom: 3rem; }
#precos   { padding-top: 3rem; }

/* ── Hero — tamanho maior no desktop ── */
@media (min-width: 861px) {
  .hero-h1 {
    font-size: 5rem;
    font-size: clamp(4rem, 6vw, 6.5rem);
  }
  .hero-sub {
    font-size: 1.05rem;
    max-width: 520px;
    line-height: 1.65;
  }
  .hero-brand-logo {
    display: none;
  }
}

/* ════════════════════════════════════════════════
   LUZ QUE SEGUE O CURSOR
════════════════════════════════════════════════ */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,124,0,1) 0%, rgba(255,124,0,0.7) 45%, transparent 75%);
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
}
.cursor-glow-dot {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: var(--orange);
  pointer-events: none;
  z-index: 9998;
  will-change: transform;
}
@media (hover: none), (pointer: coarse) {
  .cursor-glow,
  .cursor-glow-dot { display: none; }
}

/* ════════════════════════════════════════════════
   TRANSIÇÕES ENTRE SEÇÕES (linha simples)
════════════════════════════════════════════════ */
.section-dust {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

/* ════════════════════════════════════════════════
   REDUCED MOTION ACCESSIBILITY
════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .hero-ring,
  .hero-h1,
  .urgency-dot,
  .section-divider::after,
  .hero-scroll-hint-arrow,
  .prints-gallery-slide img,
  .processo-card,
  .hero-visual { animation: none !important; }
  .cursor-glow,
  .cursor-glow-dot,
  .processo-card-video { display: none; }
}
