/* TalentBox - Index Page Styles - SIMPLIFIED VERSION */

/* ====== ANIMAÇÕES SUGERIDAS ====== */

/* 1. FADE-IN CONTENT (Aparecimento suave) */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 2. LISTA ANIMADA (Animated List) */
.fade-item {
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeItem 0.6s ease forwards;
}

@keyframes fadeItem {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 3. HIGHLIGHT TEXT (Texto destacado sem animação) */
.highlight-text {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* 4. ROTATING TEXT (Texto rotativo) */
.rotating-text {
  display: block;
  font-weight: bold;
  color: var(--primary-orange);
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  overflow: hidden;
  position: relative;
  min-width: 280px;
  text-align: left;
  transition: all 0.5s ease-in-out;
  width: 100%;
}

/* 5. STAR BORDER (Borda com destaque) */
.star-border {
  border: 2px solid transparent;
  background: linear-gradient(var(--white), var(--white)) padding-box,
              linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light), var(--accent-orange)) border-box;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0px var(--primary-orange);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
  }
}

/* 6. GLOW EFFECTS */
.glow-effect {
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.glow-effect:hover {
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

/* ====== ENHANCED VISUAL ELEMENTS ====== */

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.floating-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  animation: floatIcon 8s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
.floating-icon:nth-child(3) { top: 30%; right: 20%; animation-delay: 4s; }
.floating-icon:nth-child(4) { bottom: 30%; left: 15%; animation-delay: 6s; }
.floating-icon:nth-child(5) { bottom: 20%; right: 10%; animation-delay: 1s; }

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
    opacity: 0.8;
  }
}

/* Gradient Orbs */
.gradient-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.2;
  animation: orbFloat 15s ease-in-out infinite;
}

.orb-1 {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, var(--primary-orange), var(--primary-orange-light));
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, var(--accent-orange), var(--primary-orange));
  top: 50%;
  right: 10%;
  animation-delay: 5s;
}

.orb-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, var(--primary-orange-light), var(--accent-orange));
  bottom: 20%;
  left: 50%;
  animation-delay: 10s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

/* Enhanced Particles */
.animated-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.animated-particles::before,
.animated-particles::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--primary-orange);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 0 10px var(--primary-orange);
}

.animated-particles::before {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.animated-particles::after {
  top: 60%;
  right: 30%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-40px) rotate(180deg);
    opacity: 1;
  }
}

/* ====== LAYOUT PRINCIPAL ====== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ====== NAVEGAÇÃO MODERNIZADA ====== */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.05);
  /* Garantir visibilidade */
  opacity: 1;
  transform: translateY(0);
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  z-index: -1;
}

/* Navbar quando scrolled */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(255, 107, 53, 0.15);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* Brand Section Modernizada */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.nav-brand h1 {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  letter-spacing: -0.02em;
  position: relative;
}

.nav-brand h1::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-orange), transparent);
  border-radius: 1px;
  opacity: 0.4;
}

/* Menu Principal Modernizado */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

/* Links de Navegação Modernizados */
.nav-link {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  letter-spacing: -0.01em;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
  border-radius: 25px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.nav-link:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.nav-link:hover::before {
  opacity: 1;
  transform: scale(1);
}

.nav-link.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.nav-link.active::before {
  display: none;
}

/* Botão CTA Modernizado */
.btn-primary.glow-effect {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
  color: var(--white);
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.25);
  position: relative;
  overflow: hidden;
  margin-left: 1rem;
  letter-spacing: -0.01em;
}

.btn-primary.glow-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-primary.glow-effect:hover::before {
  left: 100%;
}

.btn-primary.glow-effect:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.35);
  background: linear-gradient(135deg, var(--primary-orange-light), var(--primary-orange));
}

.btn-primary.glow-effect i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.btn-primary.glow-effect:hover i {
  transform: rotate(15deg) scale(1.1);
}

/* Mobile Toggle Modernizado */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-toggle:hover {
  background: rgba(255, 107, 53, 0.1);
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-toggle:hover span {
  background: var(--primary-orange);
}

/* Efeitos especiais */
.navbar .nav-container::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
  opacity: 0.6;
}

/* Animação sutil de entrada */
.navbar.fade-in {
  animation: navbarSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes navbarSlideIn {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Garantir que a navbar permaneça visível após a animação */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.05);
  /* Garantir visibilidade */
  opacity: 1;
  transform: translateY(0);
}

/* ====== HERO SECTION MEGA ENHANCED ====== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, var(--gray-50) 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  animation-delay: 0.2s;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

/* Mega CTA Button */
.mega-cta {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
  color: var(--white);
  border: none;
  padding: 1.2rem 2rem;
  border-radius: var(--radius-xl);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

.mega-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.mega-cta:hover::before {
  left: 100%;
}

.mega-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.btn-icon {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-main {
  font-size: 1.1rem;
  font-weight: 700;
}

.btn-sub {
  font-size: 0.8rem;
  opacity: 0.9;
  font-weight: 400;
}

.btn-hero-secondary {
  background: transparent;
  color: var(--gray-700);
  border: 2px solid var(--gray-300);
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-hero-secondary:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
  background: rgba(255, 107, 53, 0.05);
}

/* Enhanced Stats */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  padding: 1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.stat-icon {
  background: var(--primary-orange);
  color: var(--white);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-orange);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-600) !important;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-600);
  font-size: 0.9rem;
}

.trust-item i {
  color: var(--success);
}

/* Enhanced Hero Visual */
.hero-image {
  display: flex;
  justify-content: center;
  animation-delay: 0.4s;
  position: relative;
}

.hero-visual {
  position: relative;
}

.main-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  max-width: 350px;
  position: relative;
  z-index: 5; /* Maior que os floating cards para o texto ficar por cima */
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.card-header i {
  background: var(--primary-orange);
  color: var(--white);
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  font-size: 1.2rem;
}

.card-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gray-900);
}

.card-content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  font-weight: 500;
}

.card-features {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.feature-dot {
  width: 6px;
  height: 6px;
  background: var(--primary-orange);
  border-radius: 50%;
}

.card-progress {
  margin-top: 1.5rem;
}

.progress-bar {
  background: var(--gray-200);
  height: 8px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-fill {
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-orange-light));
  height: 100%;
  width: 98%;
  border-radius: var(--radius-sm);
  animation: progressFill 2s ease-out;
}

@keyframes progressFill {
  from { width: 0%; }
  to { width: 98%; }
}

.progress-text {
  font-size: 0.8rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* Floating Mini Cards */
.floating-cards {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3; /* Reduzido para não tapar o texto do main-card */
}

.mini-card {
  position: absolute;
  background: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--gray-200);
  z-index: 4; /* Menor que o main-card mas visível */
}

.mini-card i {
  color: var(--primary-orange);
}

.card-1 {
  top: -40px;
  left: -80px;
  animation: floatCard1 4s ease-in-out infinite;
  z-index: 4;
}

.card-2 {
  top: 50%;
  right: -125px;
  animation: floatCard2 4s ease-in-out infinite 1s;
  z-index: 4;
}

.card-3 {
  bottom: -55px;
  left: -45px;
  transform: translateX(-50%);
  animation: floatCard3 4s ease-in-out infinite 2s;
  z-index: 4;
}

@keyframes floatCard1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes floatCard2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(-2deg); }
}

@keyframes floatCard3 {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
  50% { transform: translateX(-50%) translateY(-12px) rotate(1deg); }
}

/* ====== SEÇÕES ENHANCED ====== */

/* ====== TARGET AUDIENCE SECTION - SIMPLIFIED ====== */

.target-audience {
  padding: 6rem 0;
  background: var(--gray-50);
}

/* Section Header Simplified */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-orange);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Simplified Audience Grid */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Clean Card Design */
.audience-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid var(--gray-100);
}

.audience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Featured Card */
.audience-card.featured {
  border: 2px solid var(--primary-orange);
  position: relative;
}

.featured-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-orange);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Card Icon */
.card-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: var(--white);
  font-size: 1.5rem;
}

.card-icon.graduate {
  background: var(--primary-orange);
}

.card-icon.experienced {
  background: var(--primary-orange);
}

.card-icon.transition {
  background: var(--primary-orange);
}

/* Card Text */
.audience-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.audience-card p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Simple Stats */
.card-stats {
  background: var(--gray-50);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* Clean Button */
.btn-card {
  background: var(--gray-100);
  color: var(--gray-700);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-card:hover {
  background: var(--primary-orange);
  color: var(--white);
}

.btn-card.featured {
  background: var(--primary-orange);
  color: var(--white);
}

/* Additional Targets Simplified */
.additional-targets {
  margin: 4rem 0;
  text-align: center;
}

.additional-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.additional-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.targets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.target-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.target-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.target-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.target-icon.executive-target { background: var(--primary-orange); }
.target-icon.tech-target { background: var(--primary-orange); }
.target-icon.remote-target { background: var(--primary-orange); }
.target-icon.flexible-target { background: var(--primary-orange); }
.target-icon.international-target { background: var(--primary-orange); }
.target-icon.return-target { background: var(--primary-orange); }

.target-content {
  text-align: left;
}

.target-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.target-content p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0;
}

/* ====== FOOTER (SEM ANIMAÇÕES DE TEXTO) ====== */

.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.05), transparent);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column.about {
    grid-column: span 1 / auto;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.footer-column p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-orange);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-lg);
    color: var(--white);
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--primary-orange);
}

.newsletter-form button {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    white-space: nowrap;
    min-width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-500);
}


/* ====== HOW IT WORKS SECTION - ENHANCED WITH ANIMATIONS ====== */

.how-it-works {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 50%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Removido: Partículas flutuantes animadas que criavam os quadrados laranjas */

/* Timeline Container */
.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto 4rem auto;
  padding: 2rem 0;
}

/* Linha timeline com efeito de brilho pulsante */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 0; /* Começa com altura 0 para animação controlada por JS */
  background: linear-gradient(to bottom, var(--primary-orange), var(--primary-orange-light));
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
  transition: height 2.5s ease-out;
}

/* Animação da timeline crescendo */
@keyframes growLineGlow {
  0% {
    height: 0;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
  }
  100% {
    height: 100%;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
  }
}

/* Animação de pulse na timeline */
@keyframes timelinePulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.9);
    filter: brightness(1.2);
  }
}

/* Step Items - estado inicial para animação controlada por JS */
.step {
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ====== ENHANCED STEP ITEMS STYLING ====== */

/* Step Item Container */
.step-item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.step-item:nth-child(even) {
  flex-direction: row-reverse;
}

.step-item:nth-child(even) .step-content {
  margin-right: 3rem;
  margin-left: 0;
  text-align: right;
}

.step-item:nth-child(even) .step-content::before {
  right: -3rem;
  left: auto;
  border-left: none;
  border-right: 2px solid var(--primary-orange);
}

/* Enhanced Step Content Cards */
.step-content {
  flex: 1;
  margin-left: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--white) 0%, #fafafa 100%);
  border-radius: 20px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(255, 107, 53, 0.1);
  overflow: hidden;
}

.step-content::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -3rem;
  transform: translateY(-50%);
  width: 2rem;
  height: 2px;
  background: var(--primary-orange);
  border-left: 2px solid var(--primary-orange);
  z-index: 5;
}

/* Subtle gradient overlay */
.step-content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, transparent 50%);
  pointer-events: none;
  border-radius: 20px;
}

/* Enhanced hover effects */
.step-content:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 25px 60px rgba(255, 107, 53, 0.15),
    0 10px 25px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 107, 53, 0.2);
}

/* Step Icons */
.step-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--primary-orange-light), var(--primary-orange));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow:
    0 8px 25px rgba(255, 107, 53, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.step-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.step-content:hover .step-icon::before {
  left: 100%;
}

.step-icon i {
  font-size: 1.5rem;
  color: var(--white);
  z-index: 2;
  position: relative;
}

.ai-icon {
  background: linear-gradient(135deg, var(--primary-orange-light), var(--primary-orange));
  animation: aiPulse 3s ease-in-out infinite;
}

@keyframes aiPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); box-shadow: 0 0 25px rgba(255, 107, 53, 0.4); }
}

/* Step Titles */
.step-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  line-height: 1.3;
  position: relative;
}

.step-content h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 3rem;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-orange-light));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.step-content:hover h3::after {
  transform: scaleX(1);
}

/* Step Descriptions */
.step-content p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Enhanced Feature Tags */
.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gray-50), #f8f9fa);
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.feature-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  transition: left 0.6s ease;
}

.feature-tag:hover::before {
  left: 100%;
}

.feature-tag:hover {
  background: linear-gradient(135deg, var(--primary-orange-light), rgba(255, 107, 53, 0.1));
  color: var(--primary-orange);
  transform: translateY(-2px) scale(1.05);
  border-color: var(--primary-orange);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

.feature-tag i {
  color: var(--primary-orange);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.feature-tag:hover i {
  transform: rotate(15deg) scale(1.1);
}

/* Enhanced Progress Indicators */
.step-progress {
  position: relative;
  background: var(--gray-100);
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 1rem;
}

.progress-indicator {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-orange-light));
  border-radius: 3px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.progress-indicator::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: progressShine 2s infinite;
}

/* Enhanced Number Circles */
.step-number-circle {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  box-shadow:
    0 15px 35px rgba(255, 107, 53, 0.3),
    0 5px 15px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: scale(0) rotate(180deg);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 3px solid var(--white);
}

.step-number-circle::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, var(--primary-orange), var(--primary-orange-light));
  border-radius: 50%;
  z-index: -1;
  animation: numberGlow 2s ease-in-out infinite;
}

@keyframes numberGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

.step-number-circle:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow:
    0 20px 45px rgba(255, 107, 53, 0.4),
    0 8px 20px rgba(0, 0, 0, 0.15);
}

.step-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: scale(0.5) rotate(-180deg);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s;
}

/* ====== ANIMAÇÕES DE INTERAÇÃO AVANÇADAS ====== */

/* Efeito magnético nos step circles */
.step-number-circle {
  cursor: pointer;
}

.step-number-circle:hover {
  animation: magneticPull 0.6s ease-out;
}

@keyframes magneticPull {
  0% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.15) rotate(5deg); }
  50% { transform: scale(1.05) rotate(-2deg); }
  75% { transform: scale(1.12) rotate(3deg); }
  100% { transform: scale(1.1) rotate(5deg); }
}

/* Efeito de ondas no hover dos step contents */
.step-content {
  position: relative;
}

.step-content:hover {
  animation: contentWave 0.8s ease-out;
}

@keyframes contentWave {
  0% { transform: translateY(0) scale(1); }
  25% { transform: translateY(-8px) scale(1.01); }
  50% { transform: translateY(-12px) scale(1.02); }
  75% { transform: translateY(-10px) scale(1.015); }
  100% { transform: translateY(-12px) scale(1.02); }
}

/* Animação de loading nos progress indicators */
.progress-indicator {
  position: relative;
  overflow: hidden;
}

.progress-indicator::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: progressShine 2s infinite;
}

@keyframes progressShine {
  0% { left: -30%; }
  100% { left: 100%; }
}

/* ====== ENHANCED FLOATING PARTICLES ====== */

/* Partículas interativas que seguem o mouse */
.interactive-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary-orange);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 3s ease-in-out infinite;
}

.particle:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
.particle:nth-child(2) { top: 20%; left: 85%; animation-delay: 0.5s; }
.particle:nth-child(3) { top: 40%; left: 20%; animation-delay: 1s; }
.particle:nth-child(4) { top: 60%; left: 80%; animation-delay: 1.5s; }
.particle:nth-child(5) { top: 80%; left: 40%; animation-delay: 2s; }

@keyframes particleFloat {
  0%, 100% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translateY(-30px) scale(1.5);
  }
}

/* ====== MICRO-INTERACTIONS ====== */

/* Efeito de ripple nos elementos clicáveis */
.ripple-effect {
  position: relative;
  overflow: hidden;
}

.ripple-effect::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.ripple-effect:active::before {
  width: 200px;
  height: 200px;
}

/* ====== ENHANCED CTA SECTION (WITHIN HOW IT WORKS) ====== */

/* CTA Section inside How It Works */
.cta-section {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
  box-shadow:
    0 20px 60px rgba(255, 107, 53, 0.3),
    0 8px 25px rgba(0, 0, 0, 0.1);
}

.cta-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Enhanced CTA Button */
.mega-cta-enhanced {
  background: var(--white);
  color: var(--primary-orange);
  border: none;
  padding: 1.5rem 2.5rem;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  z-index: 2;
}

.mega-cta-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  transition: left 0.6s ease;
}

.mega-cta-enhanced:hover::before {
  left: 100%;
}

.mega-cta-enhanced:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.2),
    0 8px 20px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.mega-cta-enhanced .btn-icon {
  background: var(--primary-orange);
  color: var(--white);
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.mega-cta-enhanced:hover .btn-icon {
  transform: rotate(15deg) scale(1.1);
  background: var(--primary-orange-dark);
}

.mega-cta-enhanced .btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.mega-cta-enhanced .btn-main {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 0.25rem;
}

.mega-cta-enhanced .btn-sub {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* Pulse Animation for CTA Button */
.btn-pulse {
  animation: ctaPulse 3s infinite ease-in-out;
}

@keyframes ctaPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.15),
      0 4px 12px rgba(0, 0, 0, 0.1);
  }
  50% {
    transform: scale(1.02);
    box-shadow:
      0 16px 40px rgba(0, 0, 0, 0.2),
      0 6px 16px rgba(0, 0, 0, 0.15);
  }
}

/* Trust Indicators */
.cta-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.cta-trust .trust-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.cta-trust .trust-item i {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

/* ====== RESPONSIVIDADE ====== */

@media (max-width: 1024px) {
  .audience-grid {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
  }

  .card-featured {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .target-audience {
    padding: 4rem 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .targets-grid {
    grid-template-columns: 1fr;
  }

  .target-item {
    flex-direction: column;
    text-align: center;
  }

  .target-content {
    text-align: center;
  }

  .how-it-works {
    padding: 5rem 0;
  }

  .timeline-line {
    display: none;
  }

  .step-item {
    flex-direction: column;
    text-align: center;
    margin-bottom: 3rem;
  }

  .step-content {
    margin-left: 0;
    margin-top: 1.5rem;
  }

  .step-content::before {
    display: none;
  }

  .cta-title {
    font-size: 2rem;
  }

  .mega-cta-enhanced {
    padding: 1.2rem 2rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .cta-trust {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .step-features {
    flex-direction: column;
    align-items: center;
  }

  .feature-tag {
    justify-content: center;
  }
}
