/* ============================================
   Bello GEO — Premium Design System
   "Tu negocio, visible para la IA"
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@700&display=swap');

/* Variables */
:root {
  --navy: #0D1B2A;
  --navy-deep: #060F18;
  --navy-mid: #1B2838;
  --red: #E63946;
  --red-glow: rgba(230, 57, 70, 0.4);
  --red-hover: #FF4757;
  --blue: #457B9D;
  --blue-light: #5B95B8;
  --light: #F1FAEE;
  --off-white: #F8FAFC;
  --gray: #8D99AE;
  --gray-light: #E2E8F0;
  --dark-gray: #2B2D42;
  --green-wa: #25D366;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-glow-red: 0 0 40px rgba(230, 57, 70, 0.3);
  --shadow-glow-blue: 0 0 40px rgba(69, 123, 157, 0.2);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 50px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  color: var(--navy);
  background: var(--light);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

/* Section Title Styling */
.section h2 {
  position: relative;
  display: inline-block;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
}

.text-center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

/* ============================================
   HEADER & NAVIGATION — Glassmorphism
   ============================================ */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.8rem 0;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.header.scrolled {
  padding: 0.5rem 0;
  background: rgba(13, 27, 42, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
  color: var(--light);
  font-size: 1.4rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span.accent {
  color: var(--red);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}

.nav-link {
  color: rgba(241, 250, 238, 0.7);
  text-decoration: none;
  transition: var(--transition-fast);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--light);
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
}

.language-switch {
  background: rgba(69, 123, 157, 0.2);
  color: var(--light);
  border: 1px solid rgba(69, 123, 157, 0.3);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-fast);
  font-weight: 600;
  font-size: 0.85rem;
  font-family: inherit;
}

.language-switch:hover {
  background: var(--red);
  border-color: var(--red);
}

/* ============================================
   HERO — Immersive Gradient + Grid Pattern
   ============================================ */
.hero {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 40%, var(--navy-mid) 70%, #1a3a5c 100%);
  color: var(--light);
  text-align: center;
  padding: 10rem 0 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Animated grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(69, 123, 157, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 123, 157, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

/* Radial glow behind score */
.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(168, 218, 220, 0.85);
  max-width: 650px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* GEO Score — Big, Glowing, Animated */
.geo-score {
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 700;
  color: var(--red);
  margin: 2.5rem 0;
  display: inline-block;
  text-shadow: 0 0 60px var(--red-glow), 0 0 120px rgba(230, 57, 70, 0.15);
  animation: scoreFloat 3s ease-in-out infinite;
  line-height: 1;
}

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

.geo-score-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(168, 218, 220, 0.6);
  margin-top: 0.5rem;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.btn {
  padding: 1rem 2.2rem;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  font-family: inherit;
}

.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 4px 20px var(--red-glow);
}

.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--red-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--light);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: var(--light);
}

.about-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   SERVICES — Premium Cards
   ============================================ */
.services {
  background: var(--off-white);
}

.service-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

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

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

.service-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-top: 4px solid var(--blue);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card:hover::before {
  background: linear-gradient(90deg, var(--red), var(--red-hover));
}

.service-card:nth-child(1),
.service-card:nth-child(4) {
  border-top-color: var(--red);
}

.service-card:nth-child(1)::before,
.service-card:nth-child(4)::before {
  background: linear-gradient(90deg, var(--red), var(--red-hover));
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.service-price {
  color: var(--red);
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0.75rem 0;
}

/* ============================================
   PROCESS — How It Works
   ============================================ */
.process {
  background: var(--navy);
  color: var(--light);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(69, 123, 157, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 123, 157, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
}

.process h2::after {
  background: var(--red);
}

.process-steps {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 2;
}

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

.step {
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.step:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 1rem;
  line-height: 1;
  text-shadow: 0 0 30px var(--red-glow);
}

.step p {
  color: rgba(168, 218, 220, 0.75);
}

/* ============================================
   PRICING — With Ribbon Badge
   ============================================ */
.pricing {
  background: var(--light);
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: start;
}

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

.pricing-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

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

.pricing-card.recommended {
  border: 2px solid var(--red);
  transform: scale(1.06);
  box-shadow: var(--shadow-lg), var(--shadow-glow-red);
  z-index: 2;
}

.pricing-card.recommended:hover {
  transform: scale(1.08);
}

.pricing-card.recommended::before {
  content: "★ RECOMENDADO";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--red), var(--red-hover));
  color: white;
  padding: 0.45rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px var(--red-glow);
}

.price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1rem 0;
  line-height: 1;
}

.features {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
}

.features li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.95rem;
  color: var(--dark-gray);
}

.features li:last-child {
  border-bottom: none;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--off-white);
}

.testimonial-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

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

.testimonial {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  transition: var(--transition);
}

.testimonial:hover {
  box-shadow: var(--shadow);
}

.testimonial::before {
  content: '"';
  font-size: 5rem;
  color: var(--blue);
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  opacity: 0.12;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author {
  font-weight: 700;
  color: var(--navy);
  margin-top: 1rem;
}

/* ============================================
   FAQ — Clean Accordion
   ============================================ */
.faq {
  background: var(--light);
}

.faq-item {
  margin-bottom: 0.75rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--blue);
}

.faq-question {
  background: white;
  padding: 1.3rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.faq-question:hover {
  color: var(--blue);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  background: white;
  border-top: 1px solid var(--gray-light);
  color: var(--dark-gray);
  line-height: 1.7;
}

/* ============================================
   FOOTER — Dark & Clean
   ============================================ */
.footer {
  background: var(--navy-deep);
  color: var(--light);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

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

.footer p {
  color: rgba(168, 218, 220, 0.6);
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(241, 250, 238, 0.6);
  text-decoration: none;
  transition: var(--transition-fast);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--red);
  padding-left: 4px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  color: rgba(241, 250, 238, 0.5);
  text-decoration: none;
  transition: var(--transition-fast);
  font-size: 1.1rem;
}

.social-link:hover {
  color: var(--red);
  transform: translateY(-2px);
}

.copyright {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(168, 218, 220, 0.4);
  font-size: 0.85rem;
}

/* ============================================
   WHATSAPP BUTTON — Pulse Animation
   ============================================ */
.whatsapp-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--green-wa);
  color: white;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  z-index: 999;
  font-size: 1.8rem;
}

.whatsapp-button::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.3);
  animation: waPulse 2s ease-in-out infinite;
}

@keyframes waPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0; }
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

/* Tooltip */
.whatsapp-button::after {
  content: 'Chatea con nosotros';
  position: absolute;
  right: 80px;
  background: var(--navy);
  color: var(--light);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  box-shadow: var(--shadow);
}

.whatsapp-button:hover::after {
  opacity: 1;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.35s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(9) { transition-delay: 0.45s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy-deep);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    gap: 0.25rem;
  }

  .nav-menu.active { right: 0; }

  .nav-link {
    font-size: 1.1rem;
    padding: 0.8rem 1rem;
    width: 100%;
    border-radius: var(--radius-sm);
  }

  .hero { padding: 7rem 0 4rem; min-height: auto; }
  .hero h1 { font-size: 2rem; }
  .geo-score { font-size: 5rem; }
  .section { padding: 4rem 0; }

  .pricing-card.recommended {
    transform: scale(1);
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-blue { color: var(--blue); }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }
/* ============================================
   GEO GAUGE — Circular Progress Component
   ============================================ */
.geo-gauge {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 2rem auto;
}

@media (min-width: 768px) {
  .geo-gauge {
    width: 320px;
    height: 320px;
  }
}

.geo-gauge-ring {
  width: 100%;
  height: 100%;
  animation: gaugeAppear 0.8s ease-out;
}

@keyframes gaugeAppear {
  from { opacity: 0; transform: scale(0.8) rotate(-10deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

.geo-gauge-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.geo-gauge-number {
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: #E63946;
  text-shadow: 0 0 40px rgba(230, 57, 70, 0.5);
  transition: color 0.5s ease, text-shadow 0.5s ease;
}

@media (min-width: 768px) {
  .geo-gauge-number { font-size: 5.5rem; }
}

@keyframes gaugeNumberPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.geo-gauge-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(168, 218, 220, 0.5);
  margin-top: 0.25rem;
}

.geo-gauge-status {
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 0.5rem;
  color: #E63946;
  transition: color 0.4s ease;
  min-height: 1.5em;
}

/* Particles */
.geo-particle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--size);
  height: var(--size);
  background: var(--color);
  border-radius: 50%;
  pointer-events: none;
  animation: particleBurst 1s ease-out var(--delay) forwards;
  opacity: 0;
  box-shadow: 0 0 6px var(--color);
}

@keyframes particleBurst {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(0);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(var(--distance) * -1));
  }
}
