/* ========== RESET & BASE ========== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --bg-primary: #000000;
  --bg-secondary: #000000;
  --bg-card: #0a0a0a;
  --bg-card-hover: #111111;
  --purple-dark: #4a0e6b;
  --purple-mid: #7b2cbf;
  --purple-light: #9d4edd;
  --purple-glow: #a855f7;
  --red-primary: #e11d48;
  --red-hover: #f43f5e;
  --red-dark: #be123c;
  --pink-accent: #ec4899;
  --text-white: #ffffff;
  --text-gray: #a0a0b8;
  --text-light-gray: #d1d1e0;
  --gradient-purple: linear-gradient(135deg, #4a0e6b 0%, #7b2cbf 50%, #e11d48 100%);
  --gradient-bottom: linear-gradient(180deg, transparent 0%, #4a0e6b33 50%, #e11d4833 100%);
  --shadow-glow-purple: 0 0 30px rgba(123, 44, 191, 0.3);
  --shadow-glow-red: 0 0 20px rgba(225, 29, 72, 0.4);
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== TOP NAV ========== */
.top-nav {
  position: relative;
  width: 100%;
  padding: 60px 0 30px; /* Recuo superior e inferior da logo */
  z-index: 100;
}

.logo-main {
  height: 60px; /* Aumentei levemente para melhor leitura */
  width: auto;
  display: block;
  mix-blend-mode: screen; /* Remove o fundo preto ou mantém as cores claras */
  filter: brightness(1.2); /* Deixa as cores da logo mais vivas */
  /* Como a logo agora enviada tem fundo BRANCO, vamos usar multiply */
  mix-blend-mode: multiply; 
  /* Nota: Se o fundo do site for escuro, multiply pode esconder a logo. */
  /* Vamos tentar uma alternativa mais segura para fundo escuro: */
  filter: invert(0); /* Mantém as cores originais */
}

/* Ajuste específico para quando a logo tem fundo branco e o site é preto */
.logo-main {
  background: white; /* Cria um pequeno bloco branco se necessário */
  padding: 5px;
  border-radius: 8px;
  mix-blend-mode: normal; 
}




/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 80px;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 30%, rgba(74, 14, 107, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 80%, rgba(225, 29, 72, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.hero-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 120px;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  position: relative;
  z-index: 2;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 170%; /* Escala enorme para preencher toda a lateral */
  max-width: 850px;
  margin-bottom: -80px; /* Anula o padding, colando a foto na base */
  object-fit: contain;
  object-position: bottom;
}


@media (max-width: 1100px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero-social-proof {
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
  }

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

.hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 42px;
  background: var(--red-primary);
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(225, 29, 72, 0.4);
  z-index: 3;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(123, 44, 191, 0.15);
  border: 1px solid rgba(123, 44, 191, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--purple-light);
  margin-bottom: 32px;
}

.hero-badge::before {
  content: '🚀';
  font-size: 14px;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 34px; /* Tamanho reduzido para um formato mais elegante */
  font-weight: 900;
  line-height: 1.15; /* Leve respiro entre as linhas */
  margin-bottom: 24px; /* Margem ajustada para acompanhar o novo ritmo */
  color: var(--text-white);
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--red-primary), var(--pink-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-subtitle strong {
  color: var(--text-white);
  font-weight: 700;
}

.hero-cta:hover {
  background: var(--red-hover);
  box-shadow: 0 15px 40px rgba(225, 29, 72, 0.6);
  transform: translateY(-3px) scale(1.02);
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.7);
  }

  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 15px rgba(225, 29, 72, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(225, 29, 72, 0);
  }
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: 0.5s;
}

.hero-cta:hover::before {
  transform: translateX(100%);
}



/* Social Proof Row */
.hero-social-proof {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  margin-top: 50px;
  flex-wrap: nowrap;
}

.social-avatars {
  display: flex;
  align-items: center;
}

.social-avatars .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.social-avatars .avatar:first-child {
  margin-left: 0;
}

.social-avatars .avatar:nth-child(1) {
  background: #e11d48;
}

.social-avatars .avatar:nth-child(2) {
  background: #7b2cbf;
}

.social-avatars .avatar:nth-child(3) {
  background: #2563eb;
}

.social-text {
  font-size: 12px;
  color: var(--text-gray);
  line-height: 1.4;
}

.social-text strong {
  color: var(--text-white);
  font-weight: 600;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-light), var(--red-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  color: var(--text-gray);
  margin-top: 2px;
}

/* Hero Image */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  position: relative;
  z-index: 2;
  filter: grayscale(20%);
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.hero-image::before {
  display: none;
}

/* ========== SISTEMA SECTION ========== */
.sistema {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
}

.sistema::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-purple);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red-primary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title span {
  background: linear-gradient(135deg, var(--red-primary), var(--pink-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.sistema .section-title {
  margin-bottom: 48px;
}

.sistema-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sistema-card {
  background: var(--bg-card);
  border: 1px solid rgba(123, 44, 191, 0.15);
  border-radius: var(--border-radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.sistema-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-purple);
  opacity: 0;
  transition: var(--transition);
}

.sistema-card:hover {
  transform: translateY(-6px);
  border-color: rgba(123, 44, 191, 0.3);
  box-shadow: var(--shadow-glow-purple);
}

.sistema-card:hover::before {
  opacity: 1;
}

.sistema-card--featured {
  border-color: var(--red-primary);
  box-shadow: 0 0 20px rgba(225, 29, 72, 0.15);
}

.sistema-card--featured::before {
  opacity: 1 !important;
}

.card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(123, 44, 191, 0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.sistema-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-white);
}

.sistema-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}


/* ========== GROWTH / VISÃO SECTION ========== */
.growth-section {
  padding: 120px 0;
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
}

.growth-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.8;
  pointer-events: none;
}

.growth-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.growth-title {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 28px;
  color: #000000;
}

.growth-title .highlight {
  background: linear-gradient(135deg, var(--red-primary), var(--pink-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.growth-text {
  font-size: 16px;
  color: #444444;
  line-height: 1.8;
  margin-bottom: 16px;
}

.growth-text strong {
  color: #000000;
  font-weight: 700;
}

.growth-highlight-text {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-top: 24px;
  line-height: 1.4;
}

.growth-highlight-text .highlight {
  background: linear-gradient(135deg, var(--red-primary), var(--pink-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Chart */
.chart-container {
  position: relative;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 20px;
  padding: 40px 32px 20px 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.chart-label-y {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 11px;
  font-weight: 600;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.chart-markers {
  position: absolute;
  left: 12px;
  top: 40px;
  bottom: 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 10px;
  color: #666666;
  font-weight: 500;
}

.line-chart {
  width: 100%;
  height: 250px;
  overflow: visible;
}

.chart-line {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  transition: stroke-dashoffset 2.5s ease-in-out;
}

.chart-area {
  opacity: 0;
  transition: opacity 1.5s ease 1s;
}

.visible .chart-line {
  stroke-dashoffset: 0 !important;
}

.visible .chart-area {
  opacity: 1 !important;
}

.visible .chart-dot {
  opacity: 1 !important;
}

.chart-dot {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.growth-section .visible .chart-dot:nth-child(5) {
  opacity: 1;
  transition-delay: 0.5s;
}

.growth-section .visible .chart-dot:nth-child(6) {
  opacity: 1;
  transition-delay: 1s;
}

.growth-section .visible .chart-dot:nth-child(7) {
  opacity: 1;
  transition-delay: 1.4s;
}

.growth-section .visible .chart-dot:nth-child(8) {
  opacity: 1;
  transition-delay: 1.8s;
}

.growth-section .visible .chart-dot:nth-child(9) {
  opacity: 1;
  transition-delay: 2.2s;
}

.chart-labels-x {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  font-size: 11px;
  color: #666666;
  font-weight: 500;
}

.chart-baseline {
  height: 2px;
  background: rgba(123, 44, 191, 0.2);
  border-radius: 1px;
  margin-top: 4px;
}

/* Tech Badges */
.tech-badges {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.tech-badge {
  background: rgba(123, 44, 191, 0.05);
  border: 1px solid rgba(123, 44, 191, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #7b2cbf;
  animation: badgeFloat 3s ease-in-out infinite;
}

.badge-float-1 {
  animation-delay: 0s;
}

.badge-float-2 {
  animation-delay: 1s;
}

.badge-float-3 {
  animation-delay: 2s;
}

@keyframes badgeFloat {

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

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

/* ========== COMO COMEÇAR SECTION ========== */
.comecar {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
  text-align: center;
}

.comecar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-purple);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid rgba(123, 44, 191, 0.15);
  border-radius: var(--border-radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 44, 191, 0.3);
  box-shadow: var(--shadow-glow-purple);
}

.step-number {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--purple-mid), var(--red-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: white;
}

.step-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-white);
}

.step-card p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 42px;
  background: var(--red-primary);
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 25px rgba(225, 29, 72, 0.3);
}

.cta-btn:hover {
  background: var(--red-hover);
  box-shadow: 0 15px 35px rgba(225, 29, 72, 0.5);
  transform: translateY(-3px);
}

.comecar .cta-btn:hover {
  background: var(--red-hover);
  box-shadow: var(--shadow-glow-red);
  transform: translateY(-2px);
}

/* ========== CONSULTORIA SECTION ========== */
.consultoria {
  padding: 100px 0;
  background: var(--bg-primary);
  position: relative;
}

.consultoria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.consultoria-card {
  background: var(--bg-card);
  border: 1px solid rgba(123, 44, 191, 0.15);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  display: flex;
  gap: 20px;
  transition: var(--transition);
  position: relative;
}

.consultoria-card:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 44, 191, 0.3);
  box-shadow: var(--shadow-glow-purple);
}

.consultoria-number {
  font-family: 'Outfit', sans-serif;
  font-size: 52px;
  font-weight: 900;
  background: linear-gradient(180deg, rgba(123, 44, 191, 0.4) 0%, rgba(123, 44, 191, 0.05) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  min-width: 50px;
}

.consultoria-card-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.consultoria-card-content p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
}


/* ========== SOBRE / QUEM ESTÁ POR TRÁS ========== */
.sobre {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
}

.sobre::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-purple);
}

.container--small {
  max-width: 900px;
  margin: 0 auto;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
  margin-top: 60px;
}

.sobre-content {
  text-align: left;
}

.sobre-content .section-title {
  text-align: left;
  font-size: 42px;
  margin-bottom: 24px;
}

.sobre-text {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 24px;
}

.sobre-text strong {
  color: var(--text-white);
}

@media (max-width: 992px) {
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .sobre-content,
  .sobre-content .section-title {
    text-align: center;
  }

  .sobre-content .section-title {
    font-size: 32px;
  }
}


/* Contact Form */
.contact-form-container {
  flex: 1;
  background: rgba(15, 15, 15, 0.4);
  border: 1px solid rgba(123, 44, 191, 0.2);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-title {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-white);
  text-align: center;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 16px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-gray);
  margin-left: 4px;
  text-transform: uppercase;
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(123, 44, 191, 0.3);
  padding: 12px 16px;
  border-radius: 10px;
  color: white;
  font-size: 14px;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--pink-accent);
  box-shadow: 0 0 15px rgba(225, 29, 72, 0.15);
  background: rgba(30, 30, 30, 0.8);
}

.form-group select option {
  background: #111;
  color: white;
}

.contact-form .cta-btn {
  width: 100%;
  padding: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-whatsapp {
  background: #25d366 !important;
  color: #fff !important;
  border: none !important;
  font-weight: 800 !important;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3) !important;
}

.btn-whatsapp:hover {
  background: #128c7e !important;
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5) !important;
  transform: translateY(-3px);
}


/* ========== FOOTER ========== */
.footer {
  padding: 40px 0;
  background: var(--bg-primary);
  border-top: 1px solid rgba(123, 44, 191, 0.1);
  text-align: center;
}

.footer p {
  font-size: 13px;
  color: var(--text-gray);
}

.footer a {
  color: var(--purple-light);
  font-weight: 500;
}

/* ========== ANIMATIONS ========== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(225, 29, 72, 0.4);
  }

  50% {
    box-shadow: 0 0 40px rgba(225, 29, 72, 0.7);
  }
}

.pulse {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes float {

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

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

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 350px;
  }

  .hero-social-proof {
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
  }

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

  .growth-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .growth-content {
    max-width: 100%;
  }

  .growth-visual {
    width: 100%;
  }

  .descubra-inner {
    grid-template-columns: 1fr;
  }

  .descubra-content .section-title {
    text-align: center;
  }

  .sobre-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sobre-content .section-title {
    text-align: center;
  }

  .sobre-image {
    order: -1;
  }

  .sistema-grid,
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .consultoria-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

@media (max-width: 768px) {


  .hero-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .descubra-content .section-title,
  .sobre-content .section-title {
    font-size: 28px;
  }

  .cta-final h2 {
    font-size: 28px;
  }

  .stat-number {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 26px;
  }

  .hero-social-proof {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

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

  .section-title,
  .descubra-content .section-title,
  .sobre-content .section-title {
    font-size: 24px;
  }
}