/* ==========================================================================
   JOÃƒO VEIGA CONSULTORIA ESPORTIVA - SEÃ‡ÃƒO 1 (HEADER + HERO)
   Estilo Premium, Esportivo, TecnolÃ³gico e Moderno
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIÃVEIS DE DESIGN & PALETA DE CORES
   -------------------------------------------------------------------------- */
:root {
  /* Paleta Base Aprovada */
  --bg-black: #06080C;
  --bg-dark-blue: #081427;
  --blue-glow: #0E5BFF;
  --blue-bright: #1E90FF;
  --text-white: #F5F7FA;
  --text-silver: #C7CDD6;
  
  /* Cores Derivadas e Interface */
  --card-bg: rgba(8, 20, 39, 0.65);
  --card-bg-hover: rgba(12, 28, 54, 0.8);
  --card-border: rgba(30, 144, 255, 0.22);
  --card-border-glow: rgba(14, 91, 255, 0.6);
  --nav-bg: rgba(6, 8, 12, 0.85);

  /* Tipografia */
  --font-headline: 'Teko', sans-serif;
  --font-body: 'Manrope', sans-serif;

  /* TransiÃ§Ãµes & Sombras */
  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --glow-shadow: 0 0 25px rgba(14, 91, 255, 0.35);
  --glow-shadow-strong: 0 0 40px rgba(14, 91, 255, 0.55);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
  scrollbar-color: #1E90FF #06080C;
}

/* Custom Scrollbar Global (WebKit / Chromium / Safari / iOS / Edge) */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

::-webkit-scrollbar-track {
  background: #06080C;
  border-left: 1px solid rgba(30, 144, 255, 0.08);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00E5FF 0%, #1E90FF 50%, #0E5BFF 100%);
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.35);
  border: 1px solid rgba(0, 229, 255, 0.2);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #38EFFF 0%, #00B4FF 50%, #1E90FF 100%);
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.65);
}

::-webkit-scrollbar-corner {
  background: #06080C;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-black);
  scrollbar-width: thin;
  scrollbar-color: #1E90FF #06080C;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

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



/* --------------------------------------------------------------------------
   3. HEADER / NAVBAR
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(30, 144, 255, 0.12);
  transition: all var(--transition-fast);
}

.navbar.scrolled {
  padding: 14px 0;
  background: rgba(6, 8, 12, 0.95);
  border-bottom-color: rgba(30, 144, 255, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(14, 91, 255, 0.1);
}

.nav-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  height: 54px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(30, 144, 255, 0.5));
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.nav-logo:hover .nav-logo-img {
  transform: translateY(-2px) scale(1.04);
  filter: drop-shadow(0 0 18px rgba(30, 144, 255, 0.8));
}

/* MENU CENTRAL */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-silver);
  position: relative;
  padding: 6px 2px;
  display: inline-block;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: linear-gradient(90deg, var(--blue-bright), #00F0FF);
  border-radius: 2px;
  box-shadow: 0 0 12px var(--blue-glow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
  color: #FFFFFF;
  transform: translateY(-2px);
  filter: drop-shadow(0 0 8px rgba(30, 144, 255, 0.6));
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link.active {
  color: #FFFFFF;
  font-weight: 700;
}

/* BOTÃƒO CTA DA NAVBAR */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #1E90FF 0%, #0E5BFF 100%);
  color: #FFFFFF;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(14, 91, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(14, 91, 255, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  background: linear-gradient(135deg, #2fa0ff 0%, #1766ff 100%);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}


.mobile-nav-drawer {
  display: none !important;
}


/* --------------------------------------------------------------------------
   4. HERO PRINCIPAL (ESTRUTURA EM CAMADAS)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 95px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
  background-color: var(--bg-black);
}

/* ==========================================================================
   CAMADA 1: BACKGROUND DA HERO (Luzes, Grid & CÃ­rculos TecnolÃ³gicos)
   ========================================================================== */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* Overlay Gradiente Base Escuro */
.bg-gradient-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, #081427 0%, #06080C 70%);
  opacity: 0.95;
}

/* Grid TecnolÃ³gico Suave */
.bg-tech-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(30, 144, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(30, 144, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at 65% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 65% 50%, black 30%, transparent 80%);
}

/* Glow Principal de Fundo (Desativado mancha solta na direita) */
.bg-glow-main {
  display: none;
}

/* CÃRCULOS TECNOLÃ“GICOS GIRATÃ“RIOS */
.hero-tech-circles {
  position: absolute;
  
  /* ==========================================================================
     AJUSTES DOS CÃRCULOS GIRATÃ“RIOS:
     - top: Cima/Baixo -> (ex: 40% = alinhado ao peitoral do JoÃ£o)
     - left: Esquerda/Direita -> (ex: 40% = alinhado Ã s costas do JoÃ£o)
     ========================================================================== */
  top: 45%;
  left: 40%;
  transform: translate(-50%, -50%);
  
  width: 520px;
  height: 520px;
  z-index: 1;
  pointer-events: none;
}

.circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

/* Anel Externo Tracejado GiratÃ³rio */
.circle-outer {
  width: 560px;
  height: 560px;
  border: 1.5px dashed rgba(30, 144, 255, 0.5);
  box-shadow: 0 0 20px rgba(30, 144, 255, 0.25);
  animation: spinSlow 35s linear infinite;
}

/* Anel IntermediÃ¡rio com Arco Neon */
.circle-mid {
  width: 420px;
  height: 420px;
  border: 2px solid rgba(30, 144, 255, 0.2);
  border-top-color: rgba(30, 144, 255, 0.95);
  border-right-color: rgba(14, 91, 255, 0.75);
  filter: drop-shadow(0 0 12px rgba(14, 91, 255, 0.8));
  animation: spinReverse 22s linear infinite;
}

/* Anel Interno Brilhante */
.circle-inner {
  width: 300px;
  height: 300px;
  border: 1.5px solid rgba(56, 189, 248, 0.5);
  box-shadow: inset 0 0 35px rgba(14, 91, 255, 0.4), 0 0 20px rgba(30, 144, 255, 0.3);
}

@keyframes spinSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spinReverse {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0deg); }
}


/* ==========================================================================
   CONTEÃšDO CONTAINER DA HERO
   ========================================================================== */
.hero-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: flex-end;
  min-height: 620px;
}

/* --------------------------------------------------------------------------
   LADO ESQUERDO: TEXTOS E FEATURE CARDS
   -------------------------------------------------------------------------- */
.hero-content-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 10;
}

/* BADGE LABEL SUPERIOR */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(8, 20, 39, 0.7);
  border: 1px solid rgba(30, 144, 255, 0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--blue-bright);
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 15px rgba(14, 91, 255, 0.15);
}

.label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--blue-bright);
  box-shadow: 0 0 8px var(--blue-bright);
}

/* HEADLINE PRINCIPAL IMPACTANTE */
.hero-title {
  font-family: var(--font-headline);
  font-size: clamp(3.2rem, 4.9vw, 4.9rem);
  font-weight: 700;
  font-style: italic;
  line-height: 0.92;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 22px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 25%, #CBD5E1 55%, #64748B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}

.highlight-blue {
  display: inline-block;
  padding-right: 14px; /* Garante que a letra 'S' em itÃ¡lico seja exibida 100% sem cortes nas bordas */
  background: linear-gradient(
    110deg,
    #2563EB 0%,
    #1D4ED8 25%,
    #FF2E4D 45%,
    #FF0033 50%,
    #FF6B81 55%,
    #1D4ED8 75%,
    #1E40AF 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: electricRayRed 3.5s ease-in-out infinite;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 25px rgba(37, 99, 235, 0.7));
}

@keyframes electricRayRed {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

@keyframes electricRayBlue {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* TEXTO DE APOIO */
.hero-description {
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-silver);
  max-width: 520px;
  margin-bottom: 32px;
}

/* 3 BLOCOS INFORMATIVOS ABAIXO DO TEXTO */
.hero-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 580px;
}

.hero-feature-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-fast);
}

.hero-feature-card:hover {
  background: var(--card-bg-hover);
  border-color: var(--card-border-glow);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(14, 91, 255, 0.2);
}

.feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 91, 255, 0.12);
  border: 1px solid rgba(30, 144, 255, 0.25);
  border-radius: 8px;
}

.feature-info {
  display: flex;
  flex-direction: column;
}

.feature-value {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-white);
  letter-spacing: 0.5px;
}

.feature-title {
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
  letter-spacing: 0.5px;
}

.feature-label {
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--blue-bright);
  letter-spacing: 0.5px;
  margin-top: 2px;
}


/* --------------------------------------------------------------------------
   LADO DIREITO: COMPOSIÃ‡ÃƒO VISUAL (PERSONAGEM, CARD & HALTER)
   -------------------------------------------------------------------------- */
.hero-content-right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 640px;
  width: 100%;
}

/* GLOW CIRCULAR ATRÃS DO PERSONAGEM */
.person-glow-circle {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -45%);
  /* Alinhamento concÃªntrico refinado atrÃ¡s das costas/ombros do JoÃ£o: */
  margin-left: -60px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 91, 255, 0.4) 0%, rgba(8, 20, 39, 0.15) 65%, transparent 80%);
  box-shadow: 0 0 70px rgba(14, 91, 255, 0.3);
  z-index: 1;
}

/* ==========================================================================
   CAMADA 2: IMAGEM DO PROFISSIONAL (PNG SEPARADO)
   ========================================================================== */
.hero-person-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-person {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: contain;
  object-position: bottom center;
  
  /* ==========================================================================
     AJUSTES DA FOTO DO PROFISSIONAL:
     - 1Âº nÃºmero (-120px): Esquerda/Direita -> (-150px = mais para esquerda | 0px = centro)
     - 2Âº nÃºmero (40px): Cima/Baixo -> (40px desce para encostar no formulÃ¡rio)
     ========================================================================== */
  transform: translate(-120px, 40px);

  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 35px rgba(14, 91, 255, 0.35));
}


/* ==========================================================================
   CAMADA 3: CARD LATERAL DE PROGRESSO (FLUTUANTE)
   ========================================================================== */
.hero-progress-card {
  position: absolute;
  
  /* ==========================================================================
     AJUSTES DO CARD DE PROGRESSO:
     - top: Cima/Baixo -> (Valores menores ex: 10px sobe | Valores maiores ex: 90px desce)
     - right: Esquerda/Direita -> (Valores maiores ex: 40px move p/ ESQUERDA | Valores negativos ex: -60px move p/ DIREITA)
     ========================================================================== */
  top: 185px;
  right: -10px;
  
  z-index: 4;
  width: 250px;
  padding: 20px;
  background: rgba(8, 20, 39, 0.85);
  border: 1px solid rgba(30, 144, 255, 0.3);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(14, 91, 255, 0.15);
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.progress-header {
  margin-bottom: 12px;
}

.progress-title {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-white);
  text-transform: uppercase;
}

.progress-subtitle {
  font-size: 0.7rem;
  color: var(--blue-bright);
  font-weight: 500;
}

/* Destaque principal 78% DO OBJETIVO */
.progress-main-highlight {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.highlight-number {
  font-family: var(--font-headline);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 0.9;
  color: var(--text-white);
}

.highlight-number .percent {
  font-size: 1.6rem;
  color: var(--blue-bright);
}

.highlight-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-silver);
}

/* Barra de Progresso Azul */
.progress-bar-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 18px;
}

.progress-bar-fill {
  position: relative;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #1E90FF 0%, #0E5BFF 100%);
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(14, 91, 255, 0.9);
  will-change: width;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px #38BDF8, 0 0 20px #1E90FF;
}

/* Lista de EstatÃ­sticas */
.progress-stats-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
}

.stat-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-silver);
}

.stat-value {
  font-weight: 700;
  color: var(--text-white);
}


/* ==========================================================================
   CAMADA 4: HALTER 3D (PNG SEPARADO NO CANTO INFERIOR DIREITO)
   ========================================================================== */
.hero-dumbbell-wrapper {
  position: absolute;
  
  /* ==========================================================================
     AJUSTES DO HALTER 3D:
     - bottom: Cima/Baixo -> (Valores maiores ex: 30px sobe | Valores menores/negativos ex: -50px desce)
     - right: Esquerda/Direita -> (Valores maiores ex: 20px move p/ ESQUERDA | Valores negativos ex: -60px move p/ DIREITA)
     ========================================================================== */
  bottom: -50px;
  right: -60px;
  
  z-index: 5;
  width: 340px;
  pointer-events: none;
}

.hero-dumbbell {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 20px rgba(14, 91, 255, 0.3));
  transform: rotate(-12deg);
  animation: floatDumbbell 7s ease-in-out infinite;
}

@keyframes floatDumbbell {
  0%, 100% { transform: rotate(-12deg) translateY(0px); }
  50% { transform: rotate(-8deg) translateY(-10px); }
}


/* ==========================================================================
   CAMADA 5: CARD DO FORMULÃRIO DE AVALIAÃ‡ÃƒO (SOBREPOSIÃ‡ÃƒO 3D)
   ========================================================================== */
.hero-form-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1320px;
  margin: 30px auto 40px auto;
  padding: 0 24px;
}

.hero-form-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 48px;
  background: rgba(12, 16, 24, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   ANILHA 3D SOBREPOSTA NO CANTO INFERIOR ESQUERDO DO CARD
   ========================================================================== */
.anilha-3d-wrapper {
  position: absolute;
  
  /* ==========================================================================
     AJUSTES DA ANILHA 3D:
     - bottom: Cima/Baixo -> (Valores negativos ex: -50px desce | 0px sobe)
     - left: Esquerda/Direita -> (Valores negativos ex: -35px move p/ esquerda)
     - width: Tamanho da Anilha -> (ex: 240px)
     ========================================================================== */
  bottom: -45px;
  left: -35px;
  width: 240px;
  
  z-index: 12;
  pointer-events: none;
}

.anilha-3d-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 25px rgba(30, 144, 255, 0.4));
  transform: rotate(-10deg);
}


/* LADO ESQUERDO DO CARD DO FORMULÃRIO */
.form-card-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 20px;
}

.form-badge-red {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #FF2E4D;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.form-card-title {
  font-family: var(--font-headline);
  font-size: 2.8rem;
  font-weight: 700;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: 0.5px;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.form-red-line {
  width: 50px;
  height: 4px;
  background-color: #FF0033;
  border-radius: 4px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(255, 0, 51, 0.6);
}

.form-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-silver);
  margin-bottom: 28px;
}

/* CHECKLIST DE VANTAGENS DO FORMULÃRIO */
.form-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
}

.check-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 91, 255, 0.15);
  border: 1px solid rgba(30, 144, 255, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(14, 91, 255, 0.25);
}


/* LADO DIREITO DO CARD (FORMULÃRIO E INPUTS) */
.form-card-right {
  background: rgba(8, 11, 18, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 32px;
}

.form-right-title {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #38BDF8;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-shadow: 0 0 16px rgba(30, 144, 255, 0.4);
}

.form-title-underline {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.8) 0%, rgba(30, 144, 255, 0.2) 60%, transparent 100%);
  margin-bottom: 24px;
}

.hero-evaluation-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #CBD5E1;
}

.form-group label .optional-label {
  font-weight: 400;
  color: #94A3B8;
  font-size: 0.85em;
  margin-left: 4px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 16px 18px;
  background: rgba(15, 22, 35, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-white);
  transition: all var(--transition-fast);
}

.form-group input::placeholder {
  color: #94A3B8;
  opacity: 1;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%3CBD5E1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #1E90FF;
  box-shadow: 0 0 12px rgba(30, 144, 255, 0.35);
  background: rgba(20, 26, 40, 0.95);
}

/* BOTÃƒO DE SUBMIT */
.btn-submit-evaluation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  margin-top: 8px;
  background: linear-gradient(135deg, #1E90FF 0%, #0E5BFF 100%);
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #FFFFFF;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(14, 91, 255, 0.4);
  transition: all var(--transition-fast);
}

.btn-submit-evaluation:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(14, 91, 255, 0.65);
  background: linear-gradient(135deg, #38BDF8 0%, #1E90FF 100%);
}

.form-error-message {
  display: none;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.5);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #fca5a5;
  margin-top: 8px;
  text-align: center;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.2);
}

.btn-submit-evaluation svg {
  transition: transform var(--transition-fast);
}

.btn-submit-evaluation:hover svg {
  transform: translateX(4px);
}

.form-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.72rem;
  color: #64748B;
  margin-top: 4px;
}


/* --------------------------------------------------------------------------
   5. RESPONSIVIDADE (TABLET & MOBILE)
   -------------------------------------------------------------------------- */

/* TABLET (AtÃ© 1024px) */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 20px;
  }

  .hero-content-left {
    align-items: center;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }

  .hero-description {
    max-width: 600px;
  }

  .hero-feature-grid {
    max-width: 100%;
  }

  .hero-content-right {
    min-height: 500px;
  }

  .hero-progress-card {
    right: 20px;
    top: 20px;
  }

  .hero-dumbbell-wrapper {
    right: 10px;
    bottom: -10px;
    width: 180px;
  }
}

/* MOBILE (AtÃ© 768px) */
@media (max-width: 768px) {
  .navbar {
    padding: 16px 0;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(6, 8, 12, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    padding: 24px 0;
    clip-path: circle(0% at 100% 0);
    transition: clip-path 0.4s ease-in-out;
  }

  .nav-menu.open {
    clip-path: circle(140% at 100% 0);
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
  }

  .btn-cta span {
    display: none;
  }
  
  .btn-cta {
    padding: 10px 14px;
    border-radius: 50%;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 110px;
    padding-bottom: 40px;
  }

  .hero-title {
    font-size: 3.6rem;
  }

  .hero-description {
    font-size: 0.98rem;
  }

  .hero-feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-feature-card {
    padding: 14px 18px;
  }

  .hero-content-right {
    min-height: 440px;
  }

  .person-glow-circle {
    width: 300px;
    height: 300px;
  }

  .hero-progress-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 320px;
    margin-top: -40px;
    z-index: 6;
  }

  .hero-dumbbell-wrapper {
    width: 140px;
    right: -10px;
    bottom: -15px;
  }
}


/* ==========================================================================
   SEÃ‡ÃƒO 2: DISCIPLINA DIÃRIA
   Background: imagem escura de academia com mural ilustrado
   Sobre o fundo: overlay + card/faixa sombreada central
   ========================================================================== */

/* â”€â”€ 1. SEÃ‡ÃƒO (container geral + background) â”€â”€ */
.section-two {
  position: relative;
  width: 100%;
  /* Altura generosa para mostrar a imagem de fundo completa */
  min-height: 580px;
  background-image: url('assets/section2-bg.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: scroll;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* SEM overflow hidden — permite que a seção cresça naturalmente */
}

/* ── 2. OVERLAY: escurece o fundo suavemente à esquerda e deixa a direita clara ── */
.section-two__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(4, 8, 16, 0.65) 0%,
    rgba(4, 8, 16, 0.25) 45%,
    rgba(4, 8, 16, 0.05) 75%,
    transparent 100%
  );
}

/* ── 3. CONTEÚDO DA SEÇÃO (acima do overlay) ── */
.section-two__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── 4. FAIXA SOMBREADA / BANNER CARD (LARGURA TOTAL / FULL LAYOUT) ── */
.section-two__banner {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 0 60px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;

  /* 1. Background & Right-Side High Transparency (Transparência total no lado direito) */
  background: linear-gradient(
    to right, 
    rgba(2, 6, 14, 0.98) 0%, 
    rgba(2, 6, 14, 0.85) 30%, 
    rgba(2, 6, 14, 0.30) 50%, 
    rgba(2, 6, 14, 0.05) 65%,
    transparent 72%
  );
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);

  /* 2. Bordas NÉON Superior e Inferior via Pseudo-elementos ::before e ::after */
  border: none;
  box-shadow: none;
  overflow: hidden;
}

/* 2a. BORDA SUPERIOR NEON SIMÉTRICA (Encerra no alinhamento da última letra 'A' de 'DIÁRIA') */
.section-two__banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 67.5%;
  height: 2px;
  background: #1E90FF;
  box-shadow: 0 0 15px rgba(30, 144, 255, 0.9), 0 0 25px rgba(30, 144, 255, 0.6);
  -webkit-mask-image: linear-gradient(to right, black 0%, black 85%, rgba(0,0,0,0.3) 95%, transparent 100%);
  mask-image: linear-gradient(to right, black 0%, black 85%, rgba(0,0,0,0.3) 95%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}

/* 2b. BORDA INFERIOR NEON SIMÉTRICA (Encerra no alinhamento da última letra 'A' de 'DIÁRIA') */
.section-two__banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 67.5%;
  height: 2px;
  background: #1E90FF;
  box-shadow: 0 0 15px rgba(30, 144, 255, 0.9), 0 0 25px rgba(30, 144, 255, 0.6);
  -webkit-mask-image: linear-gradient(to right, black 0%, black 85%, rgba(0,0,0,0.3) 95%, transparent 100%);
  mask-image: linear-gradient(to right, black 0%, black 85%, rgba(0,0,0,0.3) 95%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}

/* ── 2. ELEMENTO ESQUERDO (IMAGEM DO ATLETA PREENCHENDO DE PONTA A PONTA DA ALTURA DO BANNER) ── */
.section-two__image-wrapper {
  position: relative;
  flex: 0 0 340px;
  max-width: 420px;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.section-two__athlete-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  
  /* 🟢 AJUSTE MANUAL DA POSIÇÃO VERTICAL DA IMAGEM (CIMA / BAIXO):
     - Positivo desce (ex: 10px, 20px, 30px)
     - Negativo sobe (ex: -10px, -20px) */
  transform: translateY(0px);

  mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
  filter: contrast(1.05) brightness(0.95);
}

/* ── 3. ELEMENTO CENTRAL (CONTAINER DE TEXTO DESLOCADO PARA A ESQUERDA) ── */
.section-two__text-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px 30px;
  z-index: 2;
  margin-right: 15%; /* Deslocamento para a esquerda conforme especificado */
}

/* TÍTULO: DISCIPLINA DIÁRIA (Gradiente Prata/Metalizado) */
.section-two__title {
  font-family: 'Barlow Condensed', 'Teko', sans-serif;
  font-size: clamp(2.4rem, 4.4vw, 4.8rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #FFFFFF 0%, #E2E8F0 45%, #94A3B8 80%, #64748B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 0.95;
  margin: 0 0 10px 0;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.9));
}

/* LINHA DA ASSINATURA: Linha azul + imagem de assinatura + linha azul */
.section-two__signature-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 650px;
  gap: 20px;
  margin: 8px 0 16px;
}

.section-two__line {
  flex: 1;
  height: 1.5px;
  border-radius: 2px;
}

.section-two__line--left {
  background: linear-gradient(90deg, transparent 0%, rgba(30, 144, 255, 0.6) 40%, #1E90FF 100%);
  box-shadow: 0 0 8px rgba(30, 144, 255, 0.7);
}

.section-two__line--right {
  background: linear-gradient(90deg, #1E90FF 0%, rgba(30, 144, 255, 0.6) 60%, transparent 100%);
  box-shadow: 0 0 8px rgba(30, 144, 255, 0.7);
}

/* IMAGEM DA ASSINATURA 'João Veiga' (Dimensionamento ampliado) */
.section-two__signature-img {
  width: 250px;
  height: auto;
  object-fit: contain;
  margin: 10px auto;
  filter: drop-shadow(0 0 10px rgba(30, 144, 255, 0.85)) drop-shadow(0 0 20px rgba(14, 91, 255, 0.5));
}

/* SUBTÍTULO */
.section-two__subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(0.72rem, 1.2vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #F1F5F9;
  margin: 0;
  white-space: nowrap;
}

/* PONTOS SEPARADORES VERMELHOS NEON */
.keyword-dot-red {
  color: #FF0033;
  margin: 0 12px;
  font-size: 1rem;
  vertical-align: middle;
  text-shadow: 0 0 8px rgba(255, 0, 51, 0.9), 0 0 16px rgba(255, 0, 51, 0.6);
}

/* ── 9. ÁREA DOS PROGRAMAS ── */
.section-two__programs-area {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-two__programs-header {
  margin-bottom: 40px;
}

.section-two__programs-label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #0E5BFF;
  margin-bottom: 10px;
}

.section-two__programs-title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 0.92;
  color: #F5F7FA;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── 10. GRID DOS 4 CARDS DE PROGRAMAS (EFEITO FLIP 3D HORIZONTAL) ── */
.section-two__cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 32px;
}

/* CONTAINER DO CARD COM PERSPECTIVA 3D */
.program-card {
  position: relative;
  min-height: 410px;
  perspective: 1200px;
  background: transparent;
  border: none;
}

.program-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1);
}

/* ESTADO GIRADO (FLIPPED 180deg) */
.program-card.is-flipped .program-card__inner {
  transform: rotateY(180deg);
}

/* FACES DO CARD (FRENTE E VERSO) */
.program-card__face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(30, 144, 255, 0.35);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(14, 91, 255, 0.12);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* ── FRENTE DO CARD (IMAGEM 100% COM GRADIENTE INTEGRADO) ── */
.program-card__front {
  background: #08101E;
  z-index: 2;
  pointer-events: auto;
}

.program-card.is-flipped .program-card__front {
  z-index: 1;
  pointer-events: none;
}

.program-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* SOMBREAMENTO GRADIENTE SOBRE A IMAGEM NA FRENTE */
.program-card__front::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 7, 14, 0.05) 15%,
    rgba(3, 7, 14, 0.35) 45%,
    rgba(3, 7, 14, 0.92) 75%,
    rgba(3, 7, 14, 0.98) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* HOVER DISCRETO APENAS NA FRENTE (ANTES DE VIRAR) */
.program-card:not(.is-flipped):hover .program-card__front {
  border-color: rgba(30, 144, 255, 0.85);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.8),
    0 0 35px rgba(14, 91, 255, 0.35);
}

.program-card:not(.is-flipped):hover .program-card__image {
  transform: scale(1.035);
}

/* CONTEÚDO DA FRENTE (POSICIONADO NA BASE) */
.program-card__front-content {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ÍCONE EM DESTAQUE NÉON AZUL */
.program-card__icon-box {
  width: 42px;
  height: 42px;
  background: rgba(8, 25, 55, 0.85);
  border: 1px solid rgba(30, 144, 255, 0.6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow:
    0 0 16px rgba(14, 91, 255, 0.4),
    inset 0 0 10px rgba(30, 144, 255, 0.2);
}

.program-card__title {
  font-family: 'Teko', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.program-card__desc {
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #CBD5E1;
  margin-bottom: 16px;
}

/* BOTÃO "SAIBA MAIS" (CLICÁVEL REAL NA FRENTE) */
.program-card__flip-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(14, 91, 255, 0.18);
  border: 1px solid rgba(30, 144, 255, 0.5);
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #1E90FF;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 3;
}

.program-card__flip-button:hover,
.program-card__flip-button:focus-visible {
  background: rgba(30, 144, 255, 0.9);
  color: #FFFFFF;
  border-color: #FFFFFF;
  box-shadow: 0 0 18px rgba(30, 144, 255, 0.7);
  outline: none;
}

.program-card__flip-button svg {
  transition: transform 0.3s ease;
}

.program-card__flip-button:hover svg {
  transform: translateX(4px);
}

/* ── VERSO DO CARD (SEM IMAGEM, FUNDO ESCURO PREMIUM) ── */
.program-card__back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 22px;
  background:
    radial-gradient(
      circle at top right,
      rgba(14, 91, 255, 0.16),
      transparent 45%
    ),
    linear-gradient(145deg, #09111f 0%, #04070d 100%);
  border-color: rgba(30, 144, 255, 0.55);
  z-index: 1;
  pointer-events: none;
}

.program-card.is-flipped .program-card__back {
  z-index: 10;
  pointer-events: auto;
}

.program-card__back-header {
  margin-bottom: 8px;
}

.program-card__back-tag {
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: #1E90FF;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.program-card__back-title {
  font-family: 'Teko', sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #FFFFFF;
  line-height: 1.05;
  text-transform: uppercase;
}

.program-card__back-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.81rem;
  line-height: 1.48;
  color: #94A3B8;
  margin-bottom: 12px;
}

/* TÓPICOS DO VERSO */
.program-card__topics {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.program-card__topics li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #E2E8F0;
}

.topic-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: #1E90FF;
  box-shadow: 0 0 8px #1E90FF;
}

/* BOTÃO "VOLTAR" (VERSO) */
.program-card__back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  width: 100%;
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.2) 0%, rgba(14, 91, 255, 0.3) 100%);
  border: 1px solid rgba(30, 144, 255, 0.6);
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #FFFFFF;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
  position: relative;
  z-index: 12;
  pointer-events: auto;
}

.program-card__back-button:hover,
.program-card__back-button:focus-visible {
  background: linear-gradient(135deg, #1E90FF 0%, #0E5BFF 100%);
  border-color: #FFFFFF;
  box-shadow: 0 0 20px rgba(14, 91, 255, 0.6);
  outline: none;
}

.program-card__back-button svg {
  transition: transform 0.3s ease;
}

.program-card__back-button:hover svg {
  transform: translateX(-4px);
}

/* ACESSIBILIDADE PARA MOVIMENTO REDUZIDO */
@media (prefers-reduced-motion: reduce) {
  .program-card__inner,
  .program-card__image,
  .program-card {
    transition-duration: 0.01ms !important;
  }
}



/* ==========================================================================
   SEÃ‡ÃƒO 2 â€” RESPONSIVIDADE
   ========================================================================== */

/* Tablet */
@media (max-width: 1100px) {
  .section-two__cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .section-two {
    min-height: 500px;
  }

  .section-two__content {
    padding: 52px 28px 60px;
  }

  .section-two__banner {
    max-width: 100%;
    flex-direction: column;
    justify-content: center;
  }

  .section-two__text-container {
    margin-right: 0;
    padding: 24px 20px;
  }

  .section-two__athlete-img {
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
  }

  .section-two__title {
    letter-spacing: 0.24em;
  }
}

/* Mobile grande */
@media (max-width: 640px) {
  .section-two__cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-two {
    min-height: 440px;
    background-position: 70% center;
  }

  .section-two__content {
    padding: 40px 20px 50px;
  }

  .section-two__title {
    white-space: normal;
    font-size: 2.1rem;
    letter-spacing: 0.18em;
  }

  .section-two__signature-img {
    height: 44px;
  }

  .section-two__subtitle {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    white-space: normal;
    text-align: center;
  }

  .section-two__programs-area {
    margin-top: 44px;
  }

  .section-two__programs-title {
    font-size: 2rem;
  }
}

/* Mobile pequeno */
@media (max-width: 400px) {
  .section-two__title {
    font-size: 1.8rem;
    letter-spacing: 0.12em;
  }
}


/* ==========================================================================
   SEÇÃO 3: SOBRE JOÃO VEIGA & NOSSO PROCESSO
   Fundo escuro premium com gradientes radiais, iluminação sutil e 4 etapas
   ========================================================================== */

.about-process {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 100px 0 110px;
  background:
    radial-gradient(
      circle at 18% 22%,
      rgba(14, 91, 255, 0.12),
      transparent 34%
    ),
    radial-gradient(
      circle at 78% 48%,
      rgba(30, 144, 255, 0.06),
      transparent 38%
    ),
    linear-gradient(180deg, #070b12 0%, #04070c 100%);
  border-top: 1px solid rgba(30, 144, 255, 0.15);
}

.about-process__container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 96px;
}

/* ── BLOCO 1: SOBRE JOÃO VEIGA (FLUXO CONTÍNUO E INTEGRADO) ── */
.about {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}

/* COLUNA ESQUERDA: CARD VISUAL DA FOTOGRAFIA */
.about__visual {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-process.in-view .about__visual {
  opacity: 1;
  transform: none;
}

/* Molduras decorativas deslocadas atrás do card com tom azul/cyan tech */
.about__frame {
  position: absolute;
  border-radius: 20px;
  border: 1px solid rgba(0, 162, 255, 0.45);
  box-shadow: 0 0 20px rgba(0, 162, 255, 0.25);
  pointer-events: none;
  z-index: 1;
}

.about__frame--one {
  top: -14px;
  left: -14px;
  width: calc(100% + 28px);
  height: calc(100% - 10px);
  border-color: rgba(0, 162, 255, 0.5);
}

.about__frame--two {
  bottom: 10px;
  right: -16px;
  width: calc(100% + 20px);
  height: calc(100% - 20px);
  border-color: rgba(0, 162, 255, 0.35);
}

/* Nós de luz néon cyan nos cantos das molduras */
.about__frame-node {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #00a2ff;
  border-radius: 50%;
  box-shadow: 0 0 10px #00a2ff, 0 0 20px #00a2ff;
}

.about__frame-node--top-left { top: -3px; left: -3px; }
.about__frame-node--bottom-right { bottom: -3px; right: -3px; }
.about__frame-node--top-right { top: -3px; right: -3px; }
.about__frame-node--bottom-left { bottom: -3px; left: -3px; }

/* Card vertical da foto */
.about__photo-card {
  position: relative;
  width: 100%;
  height: 500px;
  background: #060B14;
  border: 1px solid rgba(0, 162, 255, 0.4);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.85),
    0 0 35px rgba(0, 162, 255, 0.2);
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Imagem PNG isolada */
.about__person {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.8));
  transition: transform 0.6s ease;
}

.about__visual:hover .about__person {
  transform: scale(1.03);
}

/* Gradiente na base da foto para desaparecer no fundo */
.about__photo-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(6, 11, 20, 0.6) 75%,
    rgba(6, 11, 20, 0.98) 100%
  );
  pointer-events: none;
}

/* Assinatura sobreposta no canto inferior esquerdo com glow forte */
.about__signature-wrapper {
  position: absolute;
  bottom: -28px;
  left: -20px;
  z-index: 5;
  pointer-events: none;
}

.about__signature-img {
  height: 95px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 8px #00a2ff)
    drop-shadow(0 0 20px rgba(0, 162, 255, 0.8));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.about__visual:hover .about__signature-img {
  transform: scale(1.04);
  filter:
    drop-shadow(0 0 12px #00a2ff)
    drop-shadow(0 0 25px rgba(0, 162, 255, 0.95));
}

/* COLUNA DIREITA: CONTEÚDO E CARDS DE AUTORIDADE */
.about__content {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease 0.15s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.about-process.in-view .about__content {
  opacity: 1;
  transform: none;
}

.about__label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #00a2ff;
  margin-bottom: 8px;
  margin-left: 0;
  text-align: left;
}

.about__title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(2.8rem, 4.8vw, 4.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #F5F7FA;
  margin-bottom: 18px;
  margin-left: 0;
  text-align: left;
  padding-top: 10px;
  margin-top: -6px;
  background: linear-gradient(180deg, #FFFFFF 0%, #E2E8F0 50%, #94A3B8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  overflow: visible;
}

.about__description {
  font-family: 'Manrope', sans-serif;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #CBD5E1;
  max-width: 760px;
  margin-bottom: 40px;
  margin-left: 0;
  text-align: left;
}

/* GRID DOS 4 CARDS DE AUTORIDADE */
.about__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.about__stat {
  min-height: 105px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(20, 20, 30, 0.6);
  border: 1px solid rgba(0, 162, 255, 0.2);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 1;
  transform: none;
  transition:
    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    opacity 0.5s ease;
}

.about-process.in-view .about__stat:nth-child(1) { transition-delay: 0.15s, 0.15s, 0.15s, 0.15s, 0.15s; opacity: 1; transform: translateY(0); }
.about-process.in-view .about__stat:nth-child(2) { transition-delay: 0.25s, 0.25s, 0.25s, 0.25s, 0.25s; opacity: 1; transform: translateY(0); }
.about-process.in-view .about__stat:nth-child(3) { transition-delay: 0.35s, 0.35s, 0.35s, 0.35s, 0.35s; opacity: 1; transform: translateY(0); }
.about-process.in-view .about__stat:nth-child(4) { transition-delay: 0.45s, 0.45s, 0.45s, 0.45s, 0.45s; opacity: 1; transform: translateY(0); }

.about__stat:hover {
  transform: translateY(-4px) !important;
  background: rgba(20, 28, 45, 0.85) !important;
  border-color: rgba(0, 162, 255, 0.6) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 162, 255, 0.35) !important;
  transition-delay: 0s !important;
}

.about__stat-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 162, 255, 0.1);
  border: 1px solid rgba(0, 162, 255, 0.35);
  border-radius: 10px;
  margin-bottom: 12px;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  transition-delay: 0s !important;
}

.about__stat-icon svg {
  stroke: #00a2ff;
  filter: drop-shadow(0 0 8px #00a2ff);
  transition: stroke 0.2s ease, filter 0.2s ease;
  transition-delay: 0s !important;
}

.about__stat:hover .about__stat-icon {
  background: rgba(0, 162, 255, 0.85) !important;
  border-color: #FFFFFF !important;
  box-shadow: 0 0 18px rgba(0, 162, 255, 0.8) !important;
  transition-delay: 0s !important;
}

.about__stat:hover .about__stat-icon svg {
  stroke: #FFFFFF !important;
  filter: none !important;
  transition-delay: 0s !important;
}

.about__stat-info {
  display: flex;
  flex-direction: column;
}

.about__stat-value {
  font-family: 'Teko', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  text-transform: uppercase;
}

.about__stat-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #94A3B8;
  margin-top: 3px;
  text-transform: uppercase;
}


/* ── BLOCO 2: NOSSO PROCESSO (FAIXA ESCURA CONTÍNUA DE PONTA A PONTA) ── */
.process-banner {
  width: 100%;
  background: linear-gradient(180deg, rgba(6, 11, 20, 0.95) 0%, rgba(4, 7, 13, 0.98) 100%);
  border-top: 1px solid rgba(0, 162, 255, 0.2);
  border-bottom: 1px solid rgba(0, 162, 255, 0.2);
  border-left: none;
  border-right: none;
  border-radius: 0;
  padding: 60px 0 70px;
  margin-top: 60px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

.process-banner__container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.process {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.process__header {
  text-align: center;
  margin-bottom: 54px;
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.about-process.in-view .process__header {
  opacity: 1;
  transform: none;
}

.process__label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #00a2ff;
  display: block;
  margin-bottom: 8px;
}

.process__title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #F5F7FA;
  background: linear-gradient(180deg, #FFFFFF 0%, #E2E8F0 50%, #94A3B8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* GRID DAS 4 ETAPAS HORIZONTAIS */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 48px);
  width: 100%;
}

.process__step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  opacity: 1;
  transform: none;
}

.about-process.in-view .process__step:nth-child(1) { transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s; opacity: 1; transform: none; }
.about-process.in-view .process__step:nth-child(2) { transition: opacity 0.6s ease 0.45s, transform 0.6s ease 0.45s; opacity: 1; transform: none; }
.about-process.in-view .process__step:nth-child(3) { transition: opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s; opacity: 1; transform: none; }
.about-process.in-view .process__step:nth-child(4) { transition: opacity 0.6s ease 0.75s, transform 0.6s ease 0.75s; opacity: 1; transform: none; }

/* PARTE SUPERIOR DA ETAPA (NÚMERO + LINHA AZUL + PONTO LUMINOSO) */
.process__step-top {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin-bottom: 14px;
  position: relative;
}

.process__number {
  font-family: 'Teko', sans-serif;
  font-size: clamp(3.5rem, 5vw, 5.5rem);
  font-style: italic;
  font-weight: 700;
  line-height: 0.8;
  color: #DCE8FF;
  text-shadow: 0 0 20px rgba(0, 162, 255, 0.5);
  margin-right: 0;
}

/* LINHA BASE DO PROCESSO COM CIRCUITO ELÉTRICO DE RAIO ANIMADO */
.process__line {
  flex: 1;
  min-width: 40px;
  height: 2px;
  background: rgba(0, 162, 255, 0.25);
  box-shadow: 0 0 8px rgba(0, 162, 255, 0.3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 2px;
}

/* Raio elétrico percorrendo a linha em circuito contínuo */
.process__line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 75%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 162, 255, 0.4) 25%,
    #00F0FF 50%,
    #FFFFFF 75%,
    transparent 100%
  );
  box-shadow: 0 0 14px #00F0FF, 0 0 28px rgba(0, 162, 255, 0.9);
  animation: electricPulse 2.4s infinite linear;
}

/* Sequência encadeada do raio elétrico percorrendo etapa por etapa (01 -> 02 -> 03 -> 04) */
.process__step:nth-child(1) .process__line::after { animation-delay: 0s; }
.process__step:nth-child(2) .process__line::after { animation-delay: 0.6s; }
.process__step:nth-child(3) .process__line::after { animation-delay: 1.2s; }
.process__step:nth-child(4) .process__line::after { animation-delay: 1.8s; }

@keyframes electricPulse {
  0% {
    left: -75%;
    opacity: 0.2;
  }
  30% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0.2;
  }
}

/* Na última etapa (04), a linha suaviza no final */
.process__step:last-child .process__line {
  background: linear-gradient(90deg, rgba(0, 162, 255, 0.25) 0%, rgba(0, 162, 255, 0.1) 70%, transparent 100%);
}

.process__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 0 10px #00a2ff, 0 0 20px #00a2ff;
  transform: translateX(4px);
}

.process__step-title {
  font-family: 'Teko', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.process__step-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 0.83rem;
  line-height: 1.5;
  color: #94A3B8;
}


/* ==========================================================================
   SISTEMA COMPLETO DE RESPONSIVIDADE & ALINHAMENTO HARMÔNICO MULTI-DISPOSITIVOS
   ========================================================================== */

/* ── 1. NOTEBOOKS E TELAS MÉDIAS (1025px até 1200px) ── */
@media (max-width: 1200px) {
  .nav-container,
  .hero-container,
  .hero-form-wrapper,
  .section-two__programs-area,
  .about-process__container,
  .process-banner__container {
    max-width: 1140px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .section-two__cards-grid {
    gap: 18px;
  }

  .about {
    gap: 40px;
  }
}

/* ── 2. TABLETS LANDSCAPE E NOTEBOOKS COMPACTOS (769px até 1024px) ── */
@media (max-width: 1024px) {
  .nav-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
  }

  .nav-toggle span {
    width: 100%;
    height: 2.5px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
    background-color: var(--blue-bright);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
    background-color: var(--blue-bright);
  }

  /* Menu Suspenso Deslizante Exclusivo para Mobile */
  .mobile-nav-drawer {
    display: none;
    width: 100% !important;
    background: rgba(6, 10, 18, 0.98) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border-bottom: 2px solid rgba(30, 144, 255, 0.4) !important;
    padding: 20px 24px 28px !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    z-index: 9999 !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.95) !important;
  }

  .mobile-nav-drawer.is-open {
    display: block !important;
    animation: slideDownNav 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes slideDownNav {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .mobile-nav-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .mobile-nav-link {
    display: block !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
    color: #FFFFFF !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    text-transform: uppercase !important;
    transition: all 0.2s ease !important;
  }

  .mobile-nav-link:hover,
  .mobile-nav-link.active {
    color: #1E90FF !important;
    background: rgba(30, 144, 255, 0.14) !important;
    border-color: rgba(30, 144, 255, 0.45) !important;
    padding-left: 20px !important;
  }

  .mobile-nav-cta-item {
    margin-top: 10px !important;
    width: 100% !important;
  }

  .mobile-btn-cta {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 14px 20px !important;
    background: linear-gradient(135deg, #1E90FF 0%, #0E5BFF 100%) !important;
    border-radius: 10px !important;
    color: #FFFFFF !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    box-shadow: 0 8px 24px rgba(14, 91, 255, 0.5) !important;
    transition: all 0.2s ease !important;
  }

  /* Oculta o menu inline de desktop no mobile/tablet */
  .nav-menu {
    display: none !important;
  }

  .nav-list {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    width: 100% !important;
  }

  .nav-item {
    width: 100% !important;
  }

  .nav-link {
    display: block !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    width: 100% !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    transition: all 0.2s ease !important;
  }

  .nav-link:hover,
  .nav-link.active {
    color: #1E90FF !important;
    border-bottom-color: #1E90FF !important;
    padding-left: 6px !important;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content-left {
    align-items: center;
    text-align: center;
  }

  .hero-label {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-description {
    max-width: 620px;
    text-align: center;
  }

  .hero-feature-grid {
    margin: 0 auto;
  }

  .hero-form-card {
    padding: 36px 28px;
    gap: 30px;
  }

  .section-two__cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about {
    grid-template-columns: minmax(260px, 340px) 1fr;
    gap: 36px;
  }

  .about__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .process__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* ── 3. TABLETS PORTRAIT E SMARTPHONES GRANDES (481px até 768px) ── */
@media (max-width: 768px) {
  .hero {
    padding-top: 85px;
    padding-bottom: 50px;
  }

  /* Elementos Decorativos da Seção 1 Invisíveis no Mobile */
  .hero-tech-circles,
  .person-glow-circle,
  .hero-dumbbell-wrapper,
  .hero-dumbbell,
  .bg-glow-main,
  .bg-light-beam,
  .hero-progress-card {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .hero-title {
    font-size: clamp(2.5rem, 8vw, 3.8rem);
  }

  .hero-description {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-feature-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 400px;
  }

  /* Imagem do Proprietário Ajustada na Seção 1 do Mobile */
  .hero-person-wrapper {
    display: flex !important;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    max-width: 320px;
    margin: 20px auto 0 auto;
    position: relative;
    z-index: 2;
  }

  .hero-person {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    object-position: bottom center;
    transform: translate(0, 0) !important;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 20px rgba(14, 91, 255, 0.35));
  }

  /* Formulário de Avaliação encostado diretamente na foto sem espaço vazio */
  .hero-form-wrapper {
    margin: -25px auto 30px auto;
    padding: 0 16px;
    position: relative;
    z-index: 10;
  }

  .hero-form-card {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    gap: 24px;
  }

  .anilha-3d-wrapper {
    display: none;
  }

  /* Seção 2 Banner Responsivo: Foto do Atleta Invisível no Mobile */
  .section-two__content {
    padding: 0 0 40px;
  }

  .section-two__banner {
    flex-direction: column;
    align-items: center;
    padding: 32px 16px;
    margin: 0 0 36px;
  }

  .section-two__banner::before,
  .section-two__banner::after {
    width: 100%;
  }

  /* Imagem do Atleta da Seção 2 Invisível no Mobile conforme solicitado */
  .section-two__image-wrapper {
    display: none !important;
  }

  .section-two__athlete-img {
    object-fit: cover;
    object-position: center top;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
  }

  .section-two__text-container {
    margin-right: 0;
    padding: 0;
    text-align: center;
    width: 100%;
  }

  .section-two__title {
    font-size: clamp(2rem, 7vw, 3.2rem);
    letter-spacing: 0.15em;
  }

  .section-two__signature-row {
    gap: 10px;
    max-width: 100%;
  }

  .section-two__signature-img {
    width: 180px;
  }

  .section-two__subtitle {
    white-space: normal;
    text-align: center;
    letter-spacing: 0.15em;
    font-size: 0.72rem;
  }

  .section-two__cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Seção 3 Sobre João Veiga & Processo */
  .about-process__container {
    padding-left: 16px;
    padding-right: 16px;
    gap: 60px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .about__visual {
    max-width: 360px;
    margin: 0 auto;
    justify-self: center;
  }

  .about__photo-card {
    height: 440px;
  }

  .about__signature-wrapper {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .about__signature-img {
    height: 75px;
  }

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

  .about__label,
  .about__title,
  .about__description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .about__description {
    max-width: 100%;
    font-size: 0.92rem;
  }

  .about__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .process-banner {
    padding: 44px 0 50px;
    margin-top: 40px;
  }

  .process-banner__container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .process__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process__step {
    padding-left: 6px;
  }

  .process__step-top {
    margin-bottom: 10px;
  }

  .process__line {
    min-width: 30px;
  }
}

/* ── 4. SMARTPHONES PEQUENOS (≤ 480px) ── */
@media (max-width: 480px) {
  .section-two__cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about__stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about__photo-card {
    height: 380px;
  }

  .about__signature-img {
    height: 60px;
  }

  .hero-progress-card {
    position: static;
    margin-top: 20px;
    width: 100%;
    animation: none;
  }

  .btn-submit-evaluation {
    font-size: 0.85rem;
    padding: 14px 16px;
  }
}

/* ── ACESSIBILIDADE DE MOVIMENTO REDUZIDO ── */
@media (prefers-reduced-motion: reduce) {
  .about__visual,
  .about__content,
  .about__stat,
  .process__header,
  .process__step {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ==========================================================================
   SEÇÃO 4: RESULTADOS QUE FALAM POR SI (REDESIGN PREMIUM FULL-WIDTH)
   ========================================================================== */
.results-section {
  position: relative;
  padding: 110px 0;
  background-color: var(--bg-black);
  border-top: 1px solid rgba(30, 144, 255, 0.15);
  overflow: hidden;
}

.results-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: center;
}

/* Coluna da Esquerda (Métricas & Titulo Teko) */
.results-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.results-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--blue-bright);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.results-label::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--blue-bright);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--blue-glow);
}

.results-title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 28px;
  background: linear-gradient(180deg, #FFFFFF 40%, #a0cfff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 16px rgba(30, 144, 255, 0.35));
}

.results-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 24px;
  width: 100%;
}

.metric-card {
  position: relative;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 3px;
  height: calc(100% - 4px);
  background: linear-gradient(180deg, var(--blue-bright), #00F0FF);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(30, 144, 255, 0.8);
}

.metric-value {
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  font-weight: 900;
  font-style: italic;
  color: var(--text-white);
  line-height: 0.95;
  margin-bottom: 6px;
  background: linear-gradient(180deg, #FFFFFF 50%, var(--blue-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-label {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-silver);
  text-transform: uppercase;
}


/* Coluna da Direita (Carrossel Full-Width) */
.results-right {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.results-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  padding: 10px 4px;
}

.results-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.transform-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 260px;
  background: rgba(6, 10, 18, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(30, 144, 255, 0.28);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.transform-card:hover {
  transform: translateY(-8px);
  border-color: var(--blue-bright);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 25px rgba(30, 144, 255, 0.35);
}

.transform-image-box {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
}

.transform-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.transform-card:hover .transform-img {
  transform: scale(1.03);
}

.transform-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.quote-mark {
  font-family: var(--font-title);
  font-size: 2.8rem;
  line-height: 0.8;
  color: var(--blue-bright);
  margin-bottom: -4px;
}

.transform-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-silver);
  margin-bottom: 22px;
  flex: 1;
}

.transform-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.transform-author {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 0.06em;
}

.author-age {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #94a3b8;
}

.transform-tag {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 8px;
  letter-spacing: 0.05em;
}

.tag-negative {
  color: #ff4d4d;
  background: rgba(255, 77, 77, 0.12);
  border: 1px solid rgba(255, 77, 77, 0.35);
  box-shadow: 0 0 12px rgba(255, 77, 77, 0.2);
}

.tag-positive {
  color: #00F0FF;
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid rgba(0, 240, 255, 0.35);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.2);
}

/* Controles do Carrossel com Timer Animado */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.carousel-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 15, 26, 0.9);
  border: 1px solid rgba(30, 144, 255, 0.35);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.carousel-nav-btn:hover {
  background: var(--blue-bright);
  border-color: var(--blue-bright);
  box-shadow: 0 0 18px var(--blue-glow);
  transform: scale(1.08);
}

.carousel-indicators {
  display: flex;
  align-items: center;
  gap: 10px;
}

.indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.indicator-dot.active {
  width: 36px;
  border-radius: 6px;
  background: var(--blue-bright);
  box-shadow: 0 0 14px var(--blue-glow);
}


/* ==========================================
   BANNER CTA: ESTÁ NA HORA DE AGIR
   ========================================== */
.action-banner {
  position: relative;
  width: 100%;
  padding: 85px 0;
  border-top: 2px solid var(--blue-bright);
  border-bottom: 2px solid var(--blue-bright);
  box-shadow: 0 0 25px rgba(30, 144, 255, 0.35), inset 0 0 25px rgba(30, 144, 255, 0.35);
  overflow: hidden;
  background-color: #04070d;
}

.action-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  opacity: 0.75;
  filter: brightness(1.15) contrast(1.08);
  z-index: 1;
}

.action-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #04070d 35%, rgba(4, 7, 13, 0.75) 60%, rgba(4, 7, 13, 0.25) 100%);
  z-index: 2;
}

.action-banner-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.action-banner-content {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.action-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--blue-bright);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.action-title {
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 4.8vw, 4rem);
  font-weight: 900;
  font-style: italic;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 18px;
  background: linear-gradient(180deg, #FFFFFF 40%, #c4e2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(30, 144, 255, 0.45));
}

.action-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-silver);
  margin-bottom: 30px;
}

.btn-action-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #1E90FF 0%, #0E5BFF 100%);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(14, 91, 255, 0.5);
  transition: all 0.3s ease;
  margin-bottom: 14px;
}

.btn-action-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(14, 91, 255, 0.75);
  background: linear-gradient(135deg, #2fa0ff 0%, #1766ff 100%);
}

.action-note {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #94a3b8;
}


/* ==========================================
   FOOTER OFICIAL PREMIUM (4 COLUNAS)
   ========================================== */
.site-footer {
  position: relative;
  background-color: #030509;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 0 50px;
}

.footer-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 45px;
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 12px rgba(30, 144, 255, 0.5));
}

.footer-brand-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-silver);
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.social-btn:hover {
  background: rgba(30, 144, 255, 0.2);
  border-color: var(--blue-bright);
  color: var(--blue-bright);
  transform: translateY(-2px);
  box-shadow: 0 0 14px rgba(30, 144, 255, 0.4);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-heading-underline {
  width: 24px;
  height: 2px;
  background-color: var(--blue-bright);
  border-radius: 2px;
  margin-bottom: 22px;
  box-shadow: 0 0 8px var(--blue-glow);
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-list a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-silver);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-nav-list a:hover {
  color: var(--text-white);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-silver);
}

.footer-contact-list a {
  color: var(--text-silver);
  transition: color 0.2s ease;
}

.footer-contact-list a:hover {
  color: var(--text-white);
}

.footer-copyright p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.5;
  color: #64748b;
}

.footer-bottom-bar-wrapper {
  width: 100%;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-bar {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.privacy-link {
  color: #94a3b8;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.privacy-link:hover {
  color: var(--blue-bright);
}

.footer-developer-credit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #94a3b8;
}

.dev-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.dev-logo-img {
  height: 32px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(30, 144, 255, 0.4));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.dev-logo-link:hover .dev-logo-img {
  transform: translateY(-2px) scale(1.05);
  filter: drop-shadow(0 0 14px rgba(30, 144, 255, 0.8));
}


/* RESPONSIVIDADE DA SEÇÃO 4, BANNER E FOOTER */
@media (max-width: 1024px) {
  .results-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .results-left {
    align-items: center;
    text-align: center;
  }

  .results-metrics-grid {
    max-width: 500px;
    margin: 0 auto;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .transform-card {
    flex: 0 0 100%;
  }

  .action-banner-content {
    align-items: center;
    text-align: center;
  }

  .btn-action-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .footer-col-brand,
  .footer-col {
    align-items: center;
  }

  .footer-heading-underline {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social-row {
    justify-content: center;
  }

  .footer-contact-list li {
    justify-content: center;
  }
}


/* ==========================================
   MODAL POPUP DE SUCESSO (DARK LUXURY NEON)
   ========================================== */
.success-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 13, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.success-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.success-modal-card {
  background: rgba(8, 12, 20, 0.96);
  border: 1px solid rgba(30, 144, 255, 0.35);
  border-radius: 24px;
  padding: 40px 32px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(30, 144, 255, 0.25);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-modal-overlay.is-open .success-modal-card {
  transform: translateY(0) scale(1);
}

.success-modal-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.1);
  border: 2px solid rgba(0, 240, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.3);
  animation: pulseIconGlow 2.5s infinite alternate;
}

@keyframes pulseIconGlow {
  0% {
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.25);
  }
  100% {
    box-shadow: 0 0 35px rgba(0, 240, 255, 0.6);
  }
}

.success-modal-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #00F0FF;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.success-modal-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 900;
  font-style: italic;
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 14px;
}

.success-modal-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-silver);
  margin-bottom: 28px;
}

.success-modal-desc strong {
  color: #FFFFFF;
}

.success-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-modal-close {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-modal-close:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #FFFFFF;
}

.btn-modal-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: #25D366;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
}

.btn-modal-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

