/* ==========================================
   RESET
   ========================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Inter', sans-serif;
  color: #122240;
  /* TEXTO ESCURO = AZUL #122240 (Escuro de 3462b3) */
  background: #fff;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

ul,
ol {
  list-style: none;
}

/* ==========================================
   DESIGN TOKENS
   ========================================== */

:root {
  /* Colors - Based on logo */
  --color-pink: #E84CAC;
  --color-pink-dark: #D03D98;
  --color-pink-light: #F5A3D2;
  --color-magenta: #E8408A;
  --color-blue: #3462b3;
  --color-blue-dark: #2a5299;
  --color-blue-light: #5A8DC9;
  --color-purple: #9B4DBD;
  --color-cyan: #4AC8C8;

  /* Text Colors */
  --color-text-main: #122240;
  /* Azul muito escuro para texto principal */
  --color-text-muted: #475569;
  /* Azul acinzentado */

  /* Gradients */
  /* Pink para Azul (Vertical, azul so no final) */
  --gradient-pink: linear-gradient(to bottom, #E84CAC 0%, #D03D98 85%, #3462b3 100%);
  --gradient-balloon: linear-gradient(180deg, #FF69B4 0%, #3462b3 100%);
  --gradient-video-frame: linear-gradient(135deg, #E84CAC 0%, #3462b3 100%);

  /* Neutrals */
  --color-white: #ffffff;
  --color-gray-50: #fafafa;
  --color-gray-100: #f5f5f5;
  --color-gray-200: #e5e5e5;
  --color-gray-300: #d4d4d4;
  --color-gray-400: #a3a3a3;
  --color-gray-500: #737373;
  --color-gray-600: #525252;
  --color-gray-700: #404040;
  --color-gray-800: #262626;
  --color-gray-900: #171717;

  /* Typography */
  --font-display: 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-3xl: 3rem;
  --radius-full: 9999px;

  /* Shadows - AZUL 3462b3 */
  --shadow-sm: 0 1px 2px rgba(52, 98, 179, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(52, 98, 179, 0.15);
  --shadow-lg: 0 10px 15px -3px rgba(52, 98, 179, 0.15);
  --shadow-xl: 0 20px 25px -5px rgba(52, 98, 179, 0.15);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================
   CONTAINER
   ========================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ==========================================
   TEXT COLORS
   ========================================== */

.text-pink {
  color: var(--color-pink);
}

.text-blue {
  color: var(--color-blue);
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-full);
  transition: all var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  /* Base 3D com cor sólida vibrante */
  background: linear-gradient(180deg, #F062A8 0%, #E84CAC 50%, #D93D9B 100%);
  color: var(--color-white);
  flex-direction: column;
  padding: var(--space-lg) var(--space-3xl);
  border-radius: var(--radius-xl);

  /* Borda superior clara para efeito 3D */
  border: none;
  border-top: 2px solid rgba(255, 255, 255, 0.5);

  /* Sombras 3D em camadas */
  box-shadow:
    /* Sombra interna superior (luz) */
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    /* Sombra interna inferior (profundidade) */
    inset 0 -3px 0 rgba(0, 0, 0, 0.15),
    /* Sombra externa principal */
    0 6px 0 #B8307D,
    /* Sombra difusa */
    0 8px 20px rgba(232, 76, 172, 0.4),
    0 15px 40px rgba(232, 76, 172, 0.2);

  /* Transições suaves */
  transition: all 0.15s ease;
  transform: translateY(0);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -3px 0 rgba(0, 0, 0, 0.15),
    0 8px 0 #B8307D,
    0 12px 25px rgba(232, 76, 172, 0.5),
    0 20px 50px rgba(232, 76, 172, 0.25);
}

.btn-primary:active {
  transform: translateY(4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    0 2px 0 #B8307D,
    0 4px 15px rgba(232, 76, 172, 0.3);
}

.btn-primary .btn-text {
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Shimmer/Gloss effect */
.btn-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  border-radius: var(--radius-xl) var(--radius-xl) 50% 50%;
  pointer-events: none;
}

/* Shimmer animation overlay */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    transparent 30%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 70%,
    transparent 100%
  );
  animation: shimmer 3s ease-in-out infinite;
  border-radius: inherit;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  60% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.btn-header {
  border: 2px solid var(--color-pink);
  color: var(--color-pink);
  background: var(--color-white);
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.875rem;
  border-radius: var(--radius-full);
}

.btn-header:hover {
  background: var(--color-pink);
  color: var(--color-white);
  box-shadow: 0 5px 15px rgba(232, 76, 172, 0.3);
}

.btn-full {
  width: 100%;
}

/* ==========================================
   COMPOSITE CTA (Button + Glass Bar)
   ========================================== */

.cta-composite {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
}

.cta-composite .btn-primary {
  position: relative;
  z-index: 2;
  margin-bottom: -15px;
  /* Overlap */
}

.cta-glass-bar {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px 30px 5px;
  /* Top padding to account for overlap */
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-top: none;
  font-size: 0.8125rem;
  color: var(--color-blue);
  /* Texto azul no vidro */
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(52, 98, 179, 0.1);
  /* Sombra azul */
  position: relative;
  z-index: 1;
  max-width: 90%;
}

/* ==========================================
   HERO
   ========================================== */

.hero {
  position: relative;
  /* Min-height 100vh removido */
  min-height: auto;
  padding-top: 64px;
  padding-bottom: 96px;
  /* Ajuste fino solicitado */
  /* Ajuste sem header */
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fc 100%);
  /* Fundo mais azulado */
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Grid Background Pattern */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(52, 98, 179, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 98, 179, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

/* Background waves - PARALLAX EFFECT */
.hero-bg-waves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.wave {
  position: absolute;
  width: 200%;
  /* Largura maior para movimento */
  left: 0;
}

.wave-1 {
  bottom: 0;
  height: 200px;
  animation: waveFloat 8s ease-in-out infinite;
}

.wave-2 {
  bottom: 0;
  height: 150px;
  animation: waveFloat 5s ease-in-out infinite;
  /* Mais rápida */
}

/* Animação de ondas - oscilação vertical suave */
@keyframes waveFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.wave path {
  opacity: 0.7;
  /* Ondas mais sutis */
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  /* Invertido: imagem na esquerda um pouco maior */
  gap: var(--space-2xl);
  align-items: center;
  padding: var(--space-2xl) 0;
  flex: 1;
  position: relative;
  z-index: 2;
}

/* Balões agora são gerados dinamicamente via JavaScript - ver final do arquivo */

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  animation: slideInRight 1s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Centraliza conteúdo no lado direito */
  text-align: center;
}

.hero-logo-wrapper {
  margin-bottom: var(--space-lg);
  display: block;
}

.hero-main-logo {
  max-width: 320px;
  /* Aumentado para mais destaque acima da foto */
  width: 100%;
  height: auto;
  animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  filter: drop-shadow(0 8px 20px rgba(52, 98, 179, 0.25));
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* HERO TITLE (Formerly Subtitle) */
/* HERO TITLE */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text-main);
  line-height: 1.2;
  margin-bottom: var(--space-md);
  max-width: 800px;
  animation: fadeIn 1s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  letter-spacing: -0.02em;
  text-align: center;
  /* Centralizado horizontalmente */
}

.highlight-text {
  color: var(--color-pink);
  display: inline;
  /* Alterado para inline */
  font-weight: 900;
}

.highlight-text-blue {
  color: var(--color-blue);
  background: linear-gradient(120deg, rgba(52, 98, 179, 0.1) 0%, rgba(52, 98, 179, 0) 100%);
  padding: 0 4px;
  border-radius: var(--radius-sm);
  /* Removido white-space: nowrap para permitir quebra natural */
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  max-width: 600px;
  animation: fadeIn 1s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Bullets */
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: 0 auto var(--space-lg);
  width: fit-content;
  text-align: left;
  animation: fadeIn 1s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.bullet-icon {
  flex-shrink: 0;
  color: var(--color-pink);
  font-size: 1.25rem;
  margin-top: 2px;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.hero-bullets li {
  transition: transform 0.3s ease;
}

.hero-bullets li:hover {
  transform: translateX(5px);
}

.hero-bullets li strong {
  color: var(--color-text-main);
}

/* Hero Media */
.hero-media {
  position: relative;
  z-index: 2;
  animation: slideInLeft 1s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Centraliza logo e imagem horizontalmente */
  gap: var(--space-md);
}

.hero-media .hero-logo-wrapper {
  margin-bottom: 0;
  /* Gap do container já resolve */
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.video-frame {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: 8px;
  /* Borda branca interna */
  box-shadow:
    0 0 0 1px rgba(52, 98, 179, 0.1),
    0 25px 60px -12px rgba(52, 98, 179, 0.25);

  /* ASPECT RATIO 1:1 FORCE */
  aspect-ratio: 1/1;
  display: flex;
  /* Para centralizar o conteudo se nao preencher */
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Cortar excesso */
}

/* Gradiente na borda externa simulado */
.video-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-2xl) + 2px);
  padding: 2px;
  background: var(--gradient-video-frame);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.8;
}

.video-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--color-pink);
  color: white;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  z-index: 10;
  box-shadow: 0 4px 10px rgba(232, 76, 172, 0.4);
}

.video-image {
  border-radius: calc(var(--radius-2xl) - 8px);
  /* Ajuste raio interno */
  overflow: hidden;
  background: #f0f0f0;
  width: 100%;
  height: 100%;
}

.video-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Garante preenchimento 16:9 */
  display: block;
}

.video-controls {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.7);
  /* Background mais sutil */
  backdrop-filter: blur(5px);
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  border-radius: 0 0 calc(var(--radius-2xl) - 6px) calc(var(--radius-2xl) - 6px);
  font-size: 1.1rem;
  color: var(--color-white);
}

.video-controls i {
  cursor: pointer;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.video-progress {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  position: relative;
}

.video-progress::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: var(--color-white);
  border-radius: var(--radius-full);
}

/* Hero CTA Inline (centralizado) */
.hero-cta-inline {
  margin-top: var(--space-lg);
  display: flex;
  justify-content: center;
  width: 100%;
  animation: fadeIn 1s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-cta-inline .cta-composite {
  align-items: center;
  /* Centralizado */
}

.hero-cta-inline .cta-glass-bar {
  text-align: center;
  /* Texto centralizado */
}

/* Info Card Overlay (sobrepõe a foto) */
.info-card-overlay {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  width: 100%;
  /* 100% largura */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-xl);
  box-shadow:
    0 10px 30px -5px rgba(52, 98, 179, 0.15),
    0 1px 3px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 10;
  flex-wrap: wrap;
}

.info-card-overlay .info-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.info-card-overlay .info-item i {
  font-size: 1rem;
  color: var(--color-pink);
}

.info-card-overlay .info-item strong {
  color: var(--color-text-main);
}

.info-card-overlay .info-divider {
  width: 1px;
  height: 16px;
  background: var(--color-gray-300);
}

.info-card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-full);
  box-shadow:
    0 15px 40px -5px rgba(52, 98, 179, 0.1),
    /* Sombra azulada */
    0 1px 3px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.8);
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px -10px rgba(52, 98, 179, 0.2);
}

.info-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  /* Texto mais suave */
}

.info-item i {
  font-size: 1.25rem;
  color: var(--color-pink);
  /* Ícone unificado rosa */
}

.info-item strong {
  color: var(--color-text-main);
  /* TEXTO ESCURO = AZUL #122240 */
}

.info-divider {
  width: 1px;
  height: 20px;
  background: var(--color-gray-300);
}

/* Hero Responsive */
@media (max-width: 968px) {
  .hero {
    padding-top: var(--space-md);
    /* Reduzido de var(--space-xl) para var(--space-md) */
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-lg);
    padding: var(--space-xs) 0 var(--space-xl);
    /* Padding superior reduzido drasticamente */
  }

  .hero-content {
    order: 2;
  }

  .hero-main-logo {
    max-width: 200px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3rem);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-media {
    order: 1;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--space-sm);
  }

  .info-card-overlay {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xs) var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    bottom: -75px;
    margin-bottom: var(--space-4xl);
    overflow: hidden;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .info-card-overlay .info-item {
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .info-card-overlay .info-item i {
    font-size: 0.85rem;
  }

  .info-card-overlay .info-divider {
    display: none;
  }

  .hero-bullets {
    align-items: flex-start;
    text-align: left;
    display: flex;
    max-width: 90%;
    margin: 0 auto var(--space-lg);
  }



  .info-card {
    border-radius: var(--radius-xl);
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-lg);
    width: 95%;
    margin: 0 auto;
  }

  .info-divider {
    display: none;
  }

  .hero-cta-wrapper {
    padding: var(--space-lg) var(--space-md) var(--space-2xl);
  }

  .cta-composite .btn-primary {
    padding: var(--space-md) var(--space-xl);
  }

  .btn-primary .btn-text {
    font-size: 1rem;
  }

  .cta-glass-bar {
    max-width: 95%;
    padding: 18px 20px 5px;
    font-size: 0.75rem;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  .hero {
    padding-top: var(--space-lg);
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-bullets li {
    font-size: 0.875rem;
  }

  .info-item {
    font-size: 0.8125rem;
  }

  .info-item i {
    font-size: 1rem;
  }

  .video-badge {
    top: 12px;
    left: 12px;
    font-size: 0.6rem;
    padding: 3px 8px;
  }
}

/* ==========================================
   SECTIONS
   ========================================== */

.section {
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
  position: relative;
  z-index: 2;
}

.section-tag {
  display: inline-block;
  padding: var(--space-xs) var(--space-lg);
  background: rgba(232, 76, 172, 0.1);
  color: var(--color-pink);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  /* BOLD */
  color: var(--color-text-main);
  /* TEXTO ESCURO = AZUL #122240 */
  line-height: 1.2;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.section-title .highlight {
  color: var(--color-pink);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  /* Texto mais suave */
  line-height: 1.6;
}

.section-cta {
  text-align: center;
  margin-top: var(--space-3xl);
  position: relative;
  z-index: 5;
}

/* Section wave decoration */
.section-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  pointer-events: none;
  z-index: 0;
  animation: waveFloat 10s ease-in-out infinite;
}

.section-wave path {
  opacity: 0.8;
}

/* ==========================================
   LEARN SECTION
   ========================================== */

.section-learn {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fc 100%);
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-xl);
  position: relative;
  z-index: 2;
}

.learn-card {
  background: var(--color-white);
  border: 1px solid rgba(52, 98, 179, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 6px rgba(52, 98, 179, 0.05);
}

.learn-card:hover {
  transform: translateY(-6px) scale(1.02);
  /* Escala para maior interatividade */
  box-shadow: 0 20px 40px -15px rgba(52, 98, 179, 0.2);
  /* Sombra azulada */
  border-color: rgba(52, 98, 179, 0.3);
}

.learn-card-icon {
  width: 100px;
  height: 100px;
  background: #d64298;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 10px 20px -5px rgba(52, 98, 179, 0.4);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.learn-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.learn-card:hover .learn-card-icon img {
  transform: scale(1.1);
  /* Animação no ícone ao passar mouse */
}

.learn-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-main);
  /* TEXTO ESCURO = AZUL #122240 */
  margin-bottom: var(--space-sm);
  font-family: var(--font-display);
}

.learn-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  /* Texto mais suave */
  line-height: 1.5;
}

/* ==========================================
   FORM SECTION
   ========================================== */

.section-form {
  background: var(--gradient-pink);
  /* Gradient Pink Background */
  padding: var(--space-4xl) 0;
}

.section-form .section-title {
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: var(--color-white);
  /* White Title */
}

.form-card {
  max-width: 500px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  /* Deep Shadow */
  border: none;
  position: relative;
  z-index: 5;
}

/* ==========================================
   FORM STYLES
   ========================================== */

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 600;
  color: var(--color-text-main);
}

.form-input {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: #F3F4F6;
  /* Light gray background */
  border: 1px solid transparent;
  /* No visible border initially */
  border-radius: var(--radius-lg);
  font-size: 1rem;
  transition: all var(--transition-base);
}

.form-input::placeholder {
  color: var(--color-gray-400);
}

.form-input:focus {
  outline: none;
  background: var(--color-white);
  border-color: var(--color-pink);
  /* Pink border on focus */
  box-shadow: 0 0 0 3px rgba(232, 76, 172, 0.1);
}

.form-input.error {
  border-color: #ef4444;
  background: #fef2f2;
}

.form-feedback {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  display: none;
}

.form-feedback.success {
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-feedback.error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Form Button - Special Style */
.section-form .btn-primary {
  background: var(--color-white);
  color: var(--color-pink);
  border: 2px solid transparent;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-form .btn-primary .btn-text {
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* intl-tel-input */
.iti {
  width: 100%;
}

.iti__country-list {
  z-index: 100;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background: var(--color-text-main);
  /* Fundo muito escuro #122240 */
  color: var(--color-gray-400);
  padding: var(--space-xl) 0;
  text-align: center;
  font-size: 0.875rem;
}

/* ==========================================
   ACESSIBILIDADE
   ========================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================
   BALÕES FLUTUANTES INTERATIVOS
   ========================================== */

.balloons-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  overflow: hidden;
}

.floating-balloon {
  position: absolute;
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  cursor: pointer;
  pointer-events: auto;
  opacity: 0.35;
  box-shadow:
    inset -8px -8px 20px rgba(0, 0, 0, 0.15),
    inset 8px 8px 20px rgba(255, 255, 255, 0.3),
    0 10px 30px rgba(52, 98, 179, 0.2);
  transition: opacity 0.3s ease;
  will-change: transform, left, bottom;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

/* Hover apenas para dispositivos com mouse */
@media (hover: hover) {
  .floating-balloon:hover {
    opacity: 0.6;
  }
}

.floating-balloon::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 20%;
  width: 30%;
  height: 30%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
  border-radius: 50%;
}

.balloon-string {
  position: absolute;
  bottom: -40px;
  left: 50%;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(52, 98, 179, 0.4), rgba(52, 98, 179, 0.1));
  transform-origin: top center;
  animation: stringSway 2s ease-in-out infinite alternate;
}

@keyframes balloonRise {
  0% {
    bottom: -100px;
    opacity: 0;
  }

  5% {
    opacity: 0.3;
  }

  95% {
    opacity: 0.6;
  }

  100% {
    bottom: 110vh;
    opacity: 0;
  }
}

@keyframes balloonSway {

  0%,
  100% {
    transform: translateX(-20px) rotate(-5deg);
  }

  50% {
    transform: translateX(40px) rotate(5deg);
  }
}

/* Estouro do balão */
.floating-balloon.popping {
  animation: balloonPop 0.4s ease-out forwards !important;
  opacity: 1 !important;
}

@keyframes balloonPop {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }

  20% {
    transform: scale(1.2) rotate(-5deg);
    opacity: 1;
  }

  40% {
    transform: scale(1.1) rotate(5deg);
    opacity: 1;
  }

  60% {
    transform: scale(1.4) rotate(-3deg);
    opacity: 0.8;
  }

  100% {
    transform: scale(0) rotate(0deg);
    opacity: 0;
  }
}

/* Partículas de estouro */
.balloon-particle {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--color-pink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1001;
  animation: particleFly 0.5s ease-out forwards;
}

@keyframes particleFly {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(var(--tx), var(--ty)) scale(0);
    opacity: 0;
  }
}

/* ==========================================
   SCROLL PROGRESS
   ========================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--color-pink);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s;
}

.confetti {
  position: fixed;
  width: 8px;
  height: 8px;
  z-index: 9999;
  pointer-events: none;
  border-radius: 2px;
}

/* ==========================================
   SHOWCASE CAROUSEL (3D JS Controlled)
   ========================================== */
.section-showcase {
  width: 100%;
  overflow: hidden;
  /* Esconde elementos que saem da tela (evita scroll lateral) */
  padding: var(--space-3xl) 0;
  /* Mais espaco vertical para o scale */
  background: transparent;
  position: relative;
  z-index: 10;
  margin-top: -80px;
  /* Overlap Hero */
  /* Mask suave nas bordas */
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.showcase-track {
  display: flex;
  gap: var(--space-xl);
  /* Espaço maior entre items */
  width: max-content;
  padding: 20px 0;
  /* Animation removida - controlado por JS */
  will-change: transform;
}

.showcase-item {
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  /* overflow: hidden; - Removido para permitir sombras 3D livres */
  /* box-shadow removido aqui, gerenciado dinamicamente ou interno */
  transition: transform 0.1s linear, filter 0.1s linear;
  /* Smooth updates */
  position: relative;
  /* 3D Hardware Accel */
  transform-style: preserve-3d;
  width: 280px;
  /* Largura fixa base */
}

/* Container interno da imagem para bordas e sombras consistentes */
.showcase-item-inner {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.showcase-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

/* Mobile size */
@media (max-width: 768px) {
  .section-showcase {
    margin-top: -40px;
    padding: var(--space-xl) 0;
  }

  .showcase-track {
    gap: var(--space-lg);
  }

  .showcase-item {
    width: 180px;
  }

  .showcase-item img {
    aspect-ratio: 3 / 4;
  }
}

/* Remove keyframes scrollLoop if it exists */


/* ==========================================
   SECTION WHO (PARA QUEM)
   ========================================== */
.section-who {
  background: #ffffff;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .who-grid {
    grid-template-columns: 1fr;
  }
}

.who-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-200);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.who-card:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
  transform: translateX(5px);
}

/* Barra lateral gradiente */
.who-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-pink);
  box-shadow: 2px 0 10px rgba(232, 76, 172, 0.3);
}

.who-card-icon {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  padding: 0;
  background: #eff1f5;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.who-card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: var(--space-xs);
}

.who-card-content p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ==========================================
   SECTION AUTHORITY
   ========================================== */
.section-authority {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.container-authority {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

@media (max-width: 968px) {
  .container-authority {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
  }

  .authority-content {
    order: 2;
  }

  .authority-image-wrapper {
    order: 1;
    max-width: 400px;
    margin: 0 auto;
  }

  .authority-stats {
    justify-content: center;
  }

  .badge-1 {
    top: -25px;
    left: 10px;
  }

  .badge-2 {
    right: 10px;
  }
}

.authority-image-wrapper {
  position: relative;
  z-index: 1;
}

.authority-blob {
  position: absolute;
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  z-index: 0;
  animation: blobFloat 10s ease-in-out infinite;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(10px, -10px) rotate(5deg);
  }
}

.authority-img {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
  border-radius: var(--radius-lg);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-main);
  position: absolute;
  z-index: 3;
}

.glass-card i {
  color: var(--color-pink);
  font-size: 1.2rem;
}

.badge-1 {
  top: 15%;
  left: -20px;
  animation: floatBadge 4s ease-in-out infinite;
}

.badge-2 {
  bottom: 20%;
  right: -10px;
  animation: floatBadge 5s ease-in-out infinite reverse;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.authority-content h2 {
  margin-bottom: var(--space-lg);
}

.highlight-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--color-pink);
  font-weight: 600;
}

.authority-bio p {
  margin-bottom: var(--space-md);
  color: var(--color-text-muted);
  font-size: 1rem;
}

.authority-bio strong {
  color: var(--color-text-main);
}

.authority-stats {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  border-top: 1px solid var(--color-gray-200);
  padding-top: var(--space-lg);
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-blue);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-gray-300);
}

/* ==========================================
   SHOWCASE CAROUSEL (3D JS Controlled - Override)
   ========================================== */
.section-showcase {
  width: 100%;
  overflow: hidden;
  padding: var(--space-4xl) 0;
  background: transparent;
  position: relative;
  z-index: 10;
  margin-top: -60px;
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.showcase-track {
  display: flex !important;
  gap: 0 !important;
  /* JS handles spacing via width/scale */
  width: max-content;
  padding: 40px 0;
  animation: none !important;
  /* Stop CSS animation */
  will-change: transform;
  transform-style: preserve-3d;
}

.showcase-item {
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  transition: transform 0.1s linear, filter 0.1s linear, opacity 0.1s linear;
  position: relative;
  transform-style: preserve-3d;
  /* Largura fixa para calculo dist */
  margin: 0 40px;
  /* Espaçamento de 40px conforme solicitado */
  /* Opacity controlled by JS filter only */
}

/* Remove hover effects from CSS as JS handles it */
.showcase-item:hover {
  transform: none;
  z-index: auto;
}

.showcase-item-inner {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  background: #fff;
  transform: translateZ(0);
  /* Fix Safari flicker */
}

.showcase-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .section-showcase {
    margin-top: -30px;
    padding: var(--space-2xl) 0;
  }

  .showcase-item {
    width: 180px;
    margin: 0 30px;
  }
}

/* ==========================================
   MODAL & LEAD CAPTURE
   ========================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 25, 45, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: var(--space-md);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--color-gray-100);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-main);
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: var(--color-pink);
  color: #fff;
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.modal-header .section-title {
  font-size: 1.75rem;
  margin-bottom: var(--space-xs);
}

.form-card-modal {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

@media (max-width: 768px) {
  .modal-card {
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .modal-header .section-title {
    font-size: 1.5rem;
  }
}

/* Fix para modal no iOS/mobile */
.modal-overlay {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.modal-overlay.active {
  visibility: visible;
}

/* Quando o modal está ativo, permite scroll interno */
body.modal-open {
  position: fixed;
  width: 100%;
  height: 100%;
}