@import 'variables.css';

/* =========================================================================
   RESET & BASE STYLES
   ========================================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-gradient);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  background-attachment: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
}

/* Fix for Automatic Translators replacing elements and breaking styles */
font {
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

strong {
  font-weight: inherit;
}

.text-red {
  color: var(--color-red) !important;
}

.text-blue {
  color: var(--color-blue) !important;
}

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

ul {
  list-style: none;
}

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

.section {
  padding: var(--space-xl) 5%;
}

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

/* =========================================================================
   NAVBAR (ELEGANT DESIGN)
   ========================================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(10, 10, 12, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: padding 0.4s ease, background 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 12, 0.95);
  padding: 10px 5%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-brand img {
  height: 45px;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  filter: drop-shadow(0px 2px 10px rgba(0, 0, 0, 0.5));
}

.nav-brand:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0px 5px 15px rgba(25, 118, 210, 0.4));
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-white);
}

/* Elegant Center Underline Animation */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 5%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url('../Polarozados/WhatsApp Image 2026-04-10 at 11.57.48 AM.jpeg');
  background-size: cover;
  background-position: center;
  animation: slowZoom 20s infinite alternate;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  z-index: 1;
}

.hero-subtitle {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-red);
  margin-bottom: var(--space-sm);
  display: block;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero-title span {
  color: var(--color-red);
}

.hero-title span:last-child {
  color: var(--color-blue);
}

.hero-text {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  max-width: 600px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-primary {
  background: var(--color-red);
  color: var(--color-white);
  box-shadow: 0 10px 20px var(--color-red-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-20deg);
  transition: 0.5s;
}

.btn-primary:hover {
  background: var(--color-red-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(211, 47, 47, 0.6);
}

.btn-primary:hover::after {
  left: 150%;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-black);
  transform: translateY(-3px);
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
}

/* =========================================================================
   ANIMATIONS & EFFECTS
   ========================================================================= */
@keyframes slowZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.fade-in,
.fade-up,
.fade-down,
.fade-left,
.fade-right {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in {
  transform: translateY(0) scale(0.95);
}

.fade-up {
  transform: translateY(40px);
}

.fade-down {
  transform: translateY(-40px);
}

.fade-left {
  transform: translateX(40px);
}

.fade-right {
  transform: translateX(-40px);
}

.fade-in.visible,
.fade-up.visible,
.fade-down.visible,
.fade-left.visible,
.fade-right.visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Enhancing Hover Effects */
.glass-panel {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
  transform: translateY(-5px);
  border-color: var(--color-red);
  box-shadow: 0 10px 30px rgba(229, 9, 20, 0.15);
}

/* Glassmorphism utility */
.glass-panel {
  background: linear-gradient(145deg, rgba(20, 20, 25, 0.8), rgba(5, 5, 10, 0.9));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
  background: var(--color-black);
  padding: var(--space-lg) 5% var(--space-sm) 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-brand img {
  height: 60px;
  margin-bottom: var(--space-sm);
  object-fit: contain;
}

.footer-brand p {
  color: var(--text-secondary);
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50%;
  height: 2px;
  background: var(--color-blue);
}

.footer-links li {
  margin-bottom: var(--space-xs);
}

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

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

.footer-bottom {
  text-align: center;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* =========================================================================
   STATS COUNTER SECTION
   ========================================================================= */
.stats-section {
  background: linear-gradient(135deg, rgba(10, 10, 12, 0.95), rgba(22, 22, 26, 0.95));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--space-xl) 5%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  text-align: center;
}

.stat-item {
  padding: var(--space-md);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-red);
  margin-bottom: var(--space-xs);
  display: flex;
  justify-content: center;
  align-items: center;
}

.stat-number span.num-suffix {
  color: var(--color-blue);
}

.stat-number span.num-val {
  color: inherit;
}

.stat-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================================================================
   FAQ ACCORDION
   ========================================================================= */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item.active {
  border-color: var(--color-red);
  background: rgba(229, 9, 20, 0.05);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-red);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
  color: var(--text-secondary);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

/* =========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: floatPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: #FFF;
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

@keyframes floatPulse {
  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);
  }
}

/* =========================================================================
   PROCESS SECTION
   ========================================================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--color-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto var(--space-md) auto;
  box-shadow: 0 0 20px var(--color-red-glow);
  border: 4px solid var(--color-black);
}

.process-step h3 {
  margin-bottom: var(--space-xs);
  color: var(--color-white);
}

.process-step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* =========================================================================
   STORY & VALUES
   ========================================================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.value-card {
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition-normal);
}

.value-card:hover {
  background: rgba(25, 118, 210, 0.05);
  border-color: var(--color-blue);
  transform: translateY(-5px);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--color-blue);
  margin-bottom: var(--space-sm);
  display: block;
}

/* =========================================================================
   TEAM SECTION
   ========================================================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.team-card {
  background: var(--color-black);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  transition: var(--transition-normal);
}

.team-info {
  padding: var(--space-md);
}

.team-role {
  color: var(--color-red);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  display: block;
}

/* =========================================================================
   PAGE HEROES (Inner Pages)
   ========================================================================= */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 5% 0 5%;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.page-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.page-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 12, 0.5), rgba(10, 10, 12, 0.8));
  z-index: 0;
}

.page-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

/* =========================================================================
   SERVICE ICONS SECTION
   ========================================================================= */
.services-icons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.service-icon-card {
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-icon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(25, 118, 210, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-icon-card:hover {
  border-color: rgba(25, 118, 210, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.service-icon-card:hover::before {
  opacity: 1;
}

.service-icon-card>* {
  position: relative;
  z-index: 1;
}

.service-icon-svg {
  width: 64px;
  height: 64px;
  fill: var(--color-red);
  margin-bottom: var(--space-sm);
  transition: var(--transition-normal);
}

.service-icon-card:hover .service-icon-svg {
  transform: scale(1.1);
  fill: var(--color-blue);
}

/* =========================================================================
   PROGRESS BARS
   ========================================================================= */
.progress-container {
  margin-bottom: var(--space-md);
  background: rgba(255, 255, 255, 0.02);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.5px;
  color: var(--color-white);
}

.progress-header span:last-child {
  color: var(--color-red);
}

.progress-bar-bg {
  width: 100%;
  height: 6px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-red-dark), var(--color-red));
  width: 0;
  border-radius: 10px;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
}

/* =========================================================================
   SCROLL INDICATOR
   ========================================================================= */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.7;
  animation: bounce 2s infinite;
  z-index: 10;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--color-white);
  border-radius: 15px;
  position: relative;
}

.mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--color-red);
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% {
    top: 6px;
    opacity: 1;
  }

  100% {
    top: 20px;
    opacity: 0;
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translate(-50%, 0);
  }

  40% {
    transform: translate(-50%, -10px);
  }

  60% {
    transform: translate(-50%, -5px);
  }
}

/* =========================================================================
   FOOTER SOCIALS
   ========================================================================= */
.social-icons-wrapper {
  display: flex;
  gap: 15px;
  margin-top: var(--space-sm);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--text-secondary);
  transition: fill 0.3s ease;
}

.social-icon:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(211, 47, 47, 0.4);
}

.social-icon:hover svg {
  fill: var(--color-white);
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition-normal);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

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

  .nav-link {
    font-size: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 80px;
    align-items: flex-start;
  }

  .navbar {
    justify-content: center;
  }

  .hamburger {
    position: absolute;
    right: 5%;
  }

  .footer-grid,
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-icons-wrapper,
  .payment-methods {
    justify-content: center;
  }
}

/* =========================================================================
   FLOATING SOCIAL MENU
   ========================================================================= */
.floating-social-menu {
  position: fixed;
  bottom: 105px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-social-menu a {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-social-menu a[aria-label="Facebook"] {
  background-color: #1877F2;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
  animation: floatPulseFb 2s infinite;
}

.floating-social-menu a[aria-label="TikTok"] {
  background-color: #000000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  animation: floatPulseTk 2s infinite;
}

.floating-social-menu a[aria-label="Instagram"] {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
  animation: floatPulseIg 2s infinite;
}

.floating-social-menu a svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.floating-social-menu a:hover {
  transform: scale(1.1);
}

.floating-social-menu a[aria-label="Facebook"]:hover {
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.6);
}

.floating-social-menu a[aria-label="TikTok"]:hover {
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.floating-social-menu a[aria-label="Instagram"]:hover {
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.6);
}

@keyframes floatPulseFb {
  0% {
    box-shadow: 0 0 0 0 rgba(24, 119, 242, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(24, 119, 242, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(24, 119, 242, 0);
  }
}

@keyframes floatPulseTk {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes floatPulseIg {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 39, 67, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(220, 39, 67, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(220, 39, 67, 0);
  }
}