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

:root {
  /* Cores Quentes, Empáticas e Confortáveis (Terracota & Soft Cream) */
  --primary: 24 75% 45%;        /* Terracota / Coral Escuro (#C95A32) */
  --primary-light: 24 75% 97%;  /* Creme Suave com Tom Pêssego */
  --primary-hover: 24 75% 35%;  /* Terracota Escuro */
  
  --secondary: 215 50% 18%;     /* Azul Escuro Marinho / Confiável (#16243C) */
  --secondary-muted: 215 25% 30%;
  
  --accent: 335 65% 55%;        /* Rosa Coral Empático (#DB5E7A) */
  --accent-light: 335 65% 98%;
  
  --bg-light: 30 40% 98%;       /* Fundo Creme Alabastro Suave (#FBF9F6) */
  --white: 0 0% 100%;
  
  --text-dark: 215 40% 12%;     /* Azul Quase Preto para Leitura (#0D1726) */
  --text-muted: 215 15% 45%;    /* Texto Secundário (#606B7A) */
  --border-color: 30 20% 91%;   /* Bordas cor de Areia Suave (#ECE7E1) */
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(201, 90, 50, 0.02), 0 1px 4px rgba(22, 36, 60, 0.02);
  --shadow-md: 0 8px 16px -4px rgba(201, 90, 50, 0.04), 0 4px 8px -2px rgba(22, 36, 60, 0.04);
  --shadow-lg: 0 20px 24px -8px rgba(201, 90, 50, 0.06), 0 8px 16px -6px rgba(22, 36, 60, 0.06);
  --shadow-xl: 0 30px 40px -12px rgba(201, 90, 50, 0.08), 0 16px 24px -10px rgba(22, 36, 60, 0.05);
  
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset e Configurações Gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: hsl(var(--text-dark));
  background-color: hsl(var(--bg-light));
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

/* ==================== 1. HEADER (Pill Style) ==================== */
.site-header {
  position: sticky;
  top: 1rem;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid hsl(var(--border-color));
  box-shadow: var(--shadow-md);
  border-radius: 100px;
  margin: 1rem auto 0;
  width: calc(100% - 2rem);
  max-width: 1140px;
  padding: 0.6rem 1.25rem;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: hsl(var(--primary));
  letter-spacing: -0.02em;
}

.logo span {
  color: hsl(var(--secondary));
  font-weight: 500;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: hsl(var(--primary));
  color: hsl(var(--white));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px hsl(var(--primary) / 0.3);
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: hsl(var(--primary-light));
  border: 1px solid hsl(var(--primary) / 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: hsl(var(--primary));
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: hsl(var(--primary));
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

/* ==================== 2. BOTÕES ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px; /* Fully rounded buttons */
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--white));
  box-shadow: 0 4px 14px hsl(var(--primary) / 0.25);
}

.btn-primary:hover {
  background-color: hsl(var(--primary-hover));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px hsl(var(--primary) / 0.35);
}

@keyframes btnPulse {
  0% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2), 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  70% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
  animation: btnPulse 2s infinite;
}

.btn-whatsapp:hover {
  background-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
  animation: none;
}

.btn-secondary {
  background-color: hsl(var(--white));
  color: hsl(var(--secondary));
  border: 1px solid hsl(var(--border-color));
}

.btn-secondary:hover {
  background-color: hsl(var(--primary-light));
  color: hsl(var(--primary));
  border-color: hsl(var(--primary) / 0.2);
  transform: translateY(-2px);
}

/* ==================== 3. HERO SECTION ==================== */
.hero-section {
  position: relative;
  padding: 6rem 0 5rem;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.shape-1 {
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background-color: hsl(var(--primary) / 0.2);
}

.shape-2 {
  bottom: 10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background-color: hsl(var(--accent) / 0.15);
}

.hero-grid {
  display: grid;
  grid-template-cols: 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: hsl(var(--primary) / 0.08);
  border: 1px solid hsl(var(--primary) / 0.15);
  color: hsl(var(--primary));
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.15;
  color: hsl(var(--secondary));
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-features {
  display: grid;
  grid-template-cols: 1fr;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: hsl(var(--secondary));
}

.feature-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-container {
  width: 100%;
  max-width: 480px;
  background-color: hsl(var(--white));
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid hsl(var(--border-color));
  position: relative;
  overflow: hidden;
}

.hero-image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.visual-badge {
  position: absolute;
  bottom: -1rem;
  left: 1rem;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid hsl(var(--border-color));
  padding: 1rem 1.25rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  max-width: 260px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.visual-badge-icon {
  background-color: hsl(var(--primary-light));
  color: hsl(var(--primary));
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.visual-badge-text strong {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: hsl(var(--secondary));
  display: block;
}

.visual-badge-text p {
  font-size: 0.75rem;
  color: hsl(var(--text-muted));
}

/* ==================== 4. TICKER ==================== */
.info-ticker {
  background-color: hsl(var(--secondary));
  color: hsl(var(--white));
  padding: 0.85rem 0;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.1);
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
  width: fit-content;
}

.ticker-item {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  background-color: hsl(var(--primary));
  border-radius: 50%;
}

/* ==================== 5. VÍDEOS / STORIES ==================== */
.video-section {
  padding: 5rem 0;
  background-color: hsl(var(--white));
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-tag {
  color: hsl(var(--primary));
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: hsl(var(--secondary));
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-desc {
  color: hsl(var(--text-muted));
  font-size: 0.95rem;
  line-height: 1.6;
}

.story-videos-grid {
  display: grid;
  grid-template-cols: 1fr;
  gap: 3rem;
  max-width: 720px;
  margin: 0 auto;
}

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

.story-label {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: hsl(var(--secondary));
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.story-label svg {
  color: hsl(var(--primary));
}

.video-container {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 8px solid hsl(var(--secondary)); /* Smartphone bezel */
  background-color: #000;
  position: relative;
  aspect-ratio: 9/16;
}

.video-player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Video Overlay Badge */
.video-overlay-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(201, 90, 50, 0.95);
  color: white;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: badgePulse 2s infinite;
  z-index: 5;
  transition: opacity 0.3s ease;
}

.video-container:hover .video-overlay-badge,
.video-container.playing .video-overlay-badge {
  opacity: 0;
}

@keyframes badgePulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 4px 12px rgba(201, 90, 50, 0.4), 0 0 0 0 rgba(201, 90, 50, 0.4);
  }
  70% {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(201, 90, 50, 0.4), 0 0 0 8px rgba(201, 90, 50, 0);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 4px 12px rgba(201, 90, 50, 0.4), 0 0 0 0 rgba(201, 90, 50, 0);
  }
}

/* ==================== 6. DIFERENCIAIS (Cards) ==================== */
.diferenciais-section {
  padding: 5rem 0;
  background-color: hsl(var(--bg-light));
}

.grid-cards {
  display: grid;
  grid-template-cols: 1fr;
  gap: 2rem;
}

.card-item {
  background-color: hsl(var(--white));
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid hsl(var(--border-color));
  border-top: 4px solid hsl(var(--primary)); /* Top color bar */
  transition: var(--transition-smooth);
}

.card-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.card-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background-color: hsl(var(--primary-light));
  color: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--secondary));
  margin-bottom: 1rem;
}

.card-text {
  color: hsl(var(--text-muted));
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==================== 7. METRICAS ==================== */
.metrics-section {
  padding: 5rem 0;
  background-color: hsl(var(--secondary));
  color: hsl(var(--white));
  position: relative;
  overflow: hidden;
}

.metrics-grid {
  display: grid;
  grid-template-cols: 1fr;
  gap: 3.5rem;
  align-items: center;
}

.metrics-left .section-tag {
  color: hsl(var(--primary));
}

.metrics-left .section-title {
  color: hsl(var(--white));
}

.metrics-left .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.metrics-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.progress-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.progress-track {
  width: 100%;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: hsl(var(--primary));
  border-radius: 99px;
  transform-origin: left;
  animation: fillBar 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ==================== 8. DEPOIMENTOS ==================== */
.testimonials-section {
  padding: 5rem 0;
  background-color: hsl(var(--white));
}

.testimonials-grid {
  display: grid;
  grid-template-cols: 1fr;
  gap: 2rem;
}

.testimonial-card {
  background-color: hsl(var(--bg-light));
  border-radius: 24px;
  padding: 2.25rem;
  border: 1px solid hsl(var(--border-color));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.stars {
  display: flex;
  gap: 0.25rem;
  color: #FBBF24;
  margin-bottom: 1.25rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: hsl(var(--text-dark));
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: hsl(var(--primary-light));
  color: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: hsl(var(--secondary));
}

.testimonial-info span {
  font-size: 0.75rem;
  color: hsl(var(--text-muted));
}

/* ==================== 9. FAQ ==================== */
.faq-section {
  padding: 5rem 0;
  background-color: hsl(var(--bg-light));
}

.faq-wrapper {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: hsl(var(--white));
  border-radius: 16px;
  border: 1px solid hsl(var(--border-color));
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-trigger {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-trigger h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: hsl(var(--secondary));
}

.faq-icon {
  font-size: 1.35rem;
  font-weight: 300;
  color: hsl(var(--primary));
  transition: transform 0.3s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 1.5rem;
  color: hsl(var(--text-muted));
  font-size: 0.9rem;
  line-height: 1.6;
}

.faq-item.active {
  border-color: hsl(var(--primary) / 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-content {
  max-height: 200px;
  padding-bottom: 1.25rem;
}

/* ==================== 10. FOOTER ==================== */
.site-footer {
  background-color: hsl(var(--secondary));
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-cols: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-left h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: hsl(var(--white));
  margin-bottom: 1rem;
}

.footer-left p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 1.5rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a:hover {
  color: hsl(var(--primary));
}

/* ==================== 11. FLOATING WHATSAPP ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  z-index: 99;
  cursor: pointer;
  animation: pulseFloat 2.5s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* ==================== 12. MODALS ==================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(13, 23, 38, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-card {
  position: relative;
  background-color: hsl(var(--white));
  border-radius: 24px;
  padding: 2.5rem 2rem;
  max-width: 440px;
  width: 90%;
  box-shadow: var(--shadow-xl);
  border: 1px solid hsl(var(--border-color));
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

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

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  font-weight: 300;
  cursor: pointer;
  color: hsl(var(--text-muted));
  transition: color 0.2s ease, transform 0.2s ease;
  line-height: 1;
  padding: 0.25rem;
}

.modal-close-btn:hover {
  color: hsl(var(--primary));
  transform: scale(1.1);
}

.modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: hsl(var(--primary-light));
  color: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
}

.modal-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: hsl(var(--secondary));
}

.modal-card p {
  color: hsl(var(--text-muted));
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* ==================== 13. ANIMATIONS ==================== */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 hsl(var(--primary) / 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px hsl(var(--primary) / 0);
  }
  100% {
    box-shadow: 0 0 0 0 hsl(var(--primary) / 0);
  }
}

@keyframes pulseFloat {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes fillBar {
  to {
    transform: scaleX(1);
  }
}

/* ==================== 14. MEDIA QUERIES ==================== */
@media (min-width: 576px) {
  .hero-ctas {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .status-badge {
    display: none;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  
  .header-container {
    gap: 0.5rem;
  }
  
  .site-header {
    top: 0.5rem;
    margin: 0.5rem auto 0;
    width: calc(100% - 1rem);
    padding: 0.5rem 1rem;
  }
  
  .logo {
    font-size: 1.1rem;
  }
  
  #header-cta {
    padding: 0.5rem 0.85rem;
    font-size: 0.75rem;
  }
  
  .hide-mobile {
    display: none;
  }
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-cols: 1.2fr 0.8fr;
    gap: 4rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .grid-cards {
    grid-template-cols: repeat(3, 1fr);
  }
  
  .testimonials-grid {
    grid-template-cols: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-cols: 2fr 1fr;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 992px) {
  .hero-section {
    padding: 8rem 0 7rem;
  }
  
  .story-videos-grid {
    grid-template-cols: 1fr 1fr;
    max-width: 1000px;
    gap: 4rem;
  }
  
  .metrics-grid {
    grid-template-cols: 1fr 1fr;
    gap: 6rem;
  }
}
