/* ========================================
   EZ-AD TV - Estilos CSS
   ======================================== */

/* CSS Variables */
:root {
  --background: #f8f9fc;
  --foreground: #0f172a;
  
  --primary: #1e3a5f;
  --primary-foreground: #ffffff;
  
  --secondary: #ffd93d;
  --secondary-foreground: #1e3a5f;
  
  --muted: #e2e8f0;
  --muted-foreground: #64748b;
  
  --accent: #0ea5e9;
  --accent-foreground: #ffffff;
  
  --border: #e2e8f0;
  --card: #ffffff;
  
  --radius: 0.75rem;
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #152238 0%, #1e3a5f 50%, #2563a8 100%);
  --gradient-primary: linear-gradient(135deg, #ffd93d 0%, #f59e0b 100%);
  --gradient-card: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
  
  /* Shadows */
  --shadow-card: 0 10px 40px -10px rgba(30, 58, 95, 0.15);
  --shadow-button: 0 4px 15px -3px rgba(255, 217, 61, 0.4);
  --shadow-hero: 0 25px 50px -12px rgba(30, 58, 95, 0.25);
}

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

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-primary-gradient {
  background: var(--gradient-primary);
  color: var(--secondary-foreground);
  box-shadow: var(--shadow-button);
}

.btn-primary-gradient:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--primary-foreground);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-ghost {
  background: transparent;
  color: var(--primary-foreground);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--secondary);
}

.btn-block {
  width: 100%;
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(30, 58, 95, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--secondary-foreground);
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-foreground);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--secondary);
}

.header-buttons {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .header-buttons {
    display: flex;
  }
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--primary-foreground);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.menu-icon, .close-icon {
  width: 24px;
  height: 24px;
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1rem;
}

.mobile-nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  background: var(--gradient-hero);
  min-height: 100vh;
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.bg-blob-1 {
  top: 5rem;
  right: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(255, 217, 61, 0.1);
  animation: pulse 4s ease-in-out infinite;
}

.bg-blob-2 {
  bottom: 5rem;
  left: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(14, 165, 233, 0.1);
  animation: pulse 4s ease-in-out infinite 2s;
}

.bg-blob-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50rem;
  height: 50rem;
  background: rgba(255, 255, 255, 0.05);
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 12rem);
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--secondary);
  animation: pulse 2s ease-in-out infinite;
}

.hero-badge span:last-child {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 2.80rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: rgb(255 203 2 / 90%);
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .hero-description {
    margin-left: 0;
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .trust-badges {
    justify-content: flex-start;
  }
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Hero Image */
.hero-image {
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-hero);
  position: relative;
  z-index: 10;
}

.hero-screen {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(255, 217, 61, 0.2), rgba(14, 165, 233, 0.2));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-screen-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 58, 95, 0.5), transparent);
}

.hero-screen-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-icon {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.hero-screen-title {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.hero-screen-subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.floating-badge {
  position: absolute;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.floating-badge-1 {
  top: 1rem;
  right: 1rem;
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.floating-badge-2 {
  bottom: 1rem;
  left: 1rem;
  background: var(--accent);
  color: var(--accent-foreground);
}

.hero-deco {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
}

.hero-deco-1 {
  top: -1rem;
  right: -1rem;
  width: 6rem;
  height: 6rem;
  background: rgba(255, 217, 61, 0.3);
}

.hero-deco-2 {
  bottom: -1rem;
  left: -1rem;
  width: 8rem;
  height: 8rem;
  background: rgba(14, 165, 233, 0.3);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
}

/* ========================================
   Sections
   ======================================== */
.section {
  padding: 6rem 0;
}

.section-muted {
  background: rgba(226, 232, 240, 0.3);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  background: rgb(255 217 61 / 90%);
  color: var(--secondary-foreground);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 57rem;
  margin: 0 auto;
}

/* ========================================
   Steps (How It Works)
   ======================================== */
.steps-grid {
  display: grid;
  gap: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.steps-line {
  display: none;
  position: absolute;
  top: 6rem;
  left: 25%;
  right: 25%;
  height: 2px;
  background: linear-gradient(to right, var(--secondary), var(--accent), var(--secondary));
  opacity: 0.3;
}

@media (min-width: 768px) {
  .steps-line {
    display: block;
  }
}

.step-card {
  background: var(--gradient-card);
  box-shadow: var(--shadow-card);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.5);
}

.step-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 25px 50px -12px rgba(30, 58, 95, 0.15);
}

.step-number {
  position: absolute;
  top: -0.75rem;
  left: 2rem;
  background: var(--secondary);
  color: var(--secondary-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.step-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: rgba(30, 58, 95, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  background: rgba(255, 217, 61, 0.2);
}

.step-icon svg {
  color: var(--primary);
  transition: color 0.3s ease;
}

.step-card:hover .step-icon svg {
  color: var(--secondary-foreground);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.step-description {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.step-arrow {
  display: none;
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 217, 61, 0.2);
  align-items: center;
  justify-content: center;
  z-index: 10;
}

@media (min-width: 768px) {
  .step-arrow {
    display: flex;
  }
}

.step-arrow svg {
  color: var(--secondary-foreground);
}

/* ========================================
   Features
   ======================================== */
.features-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--gradient-card);
  box-shadow: var(--shadow-card);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.5);
}

.feature-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 25px 50px -12px rgba(30, 58, 95, 0.15);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(255, 217, 61, 0.2), rgba(14, 165, 233, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--secondary);
}

.feature-icon svg {
  color: var(--primary);
  transition: color 0.3s ease;
}

.feature-card:hover .feature-icon svg {
  color: var(--secondary-foreground);
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
  color: var(--primary);
}

.feature-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ========================================
   Pricing
   ======================================== */
.pricing-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }
}

.pricing-card {
  background: var(--gradient-card);
  box-shadow: var(--shadow-card);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.5);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-0.5rem);
}

.pricing-card-popular {
  background: var(--primary);
  border: 2px solid var(--secondary);
  transform: scale(1.05);
  box-shadow: var(--shadow-hero);
}

.pricing-card-popular:hover {
  transform: scale(1.05) translateY(-0.5rem);
}

.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-card-popular .pricing-name {
  color: var(--primary-foreground);
}

.pricing-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.pricing-card-popular .pricing-description {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
}

.price-highlight {
  color: var(--secondary);
}

.period {
  color: var(--muted-foreground);
}

.pricing-card-popular .period {
  color: rgba(255, 255, 255, 0.6);
}

.pricing-original {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: line-through;
  margin-top: 0.25rem;
}

.pricing-card-popular .pricing-original {
  color: rgba(255, 255, 255, 0.4);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.pricing-card-popular .pricing-features li {
  color: rgba(255, 255, 255, 0.9);
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(255, 217, 61, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon::after {
  content: '✓';
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--secondary-foreground);
}

.check-highlight {
  background: var(--secondary);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
  background: var(--gradient-hero);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.cta-blob-1 {
  top: 2.5rem;
  right: 5rem;
  width: 16rem;
  height: 16rem;
  background: rgba(255, 217, 61, 0.2);
}

.cta-blob-2 {
  bottom: 2.5rem;
  left: 5rem;
  width: 20rem;
  height: 20rem;
  background: rgba(14, 165, 233, 0.1);
}

.cta-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  max-width: 57rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.cta-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.cta-contact-link:hover {
  color: var(--secondary);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .footer-brand {
    grid-column: span 3;
  }
}

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-description {
  color: rgb(255 214 0 / 79%);
  margin-bottom: 1.5rem;
  max-width: 20rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  text-decoration: none;
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

/* ========================================
   Animations
   ======================================== */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

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

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 4px 15px -3px rgba(255, 217, 61, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px -3px rgba(255, 217, 61, 0.6);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse-slow {
  animation: pulse 4s ease-in-out infinite;
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

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