html {
  color-scheme: dark;
  background-color: #020617;
}

body {
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: radial-gradient(circle at center, #0f172a 0%, #020617 100%);
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
}

img {
  max-width: 100%;
}

.site-logo {
  box-shadow: none !important;
  filter: none !important;
}

.hero-bg-glow {
  position: absolute;
  top: 33.333333%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 600px;
  height: 600px;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.1);
  filter: blur(120px);
  pointer-events: none;
}

@media (max-width: 639px) {
  .hero-bg-glow {
    width: min(100vw, 420px);
    height: min(100vw, 420px);
    filter: blur(72px);
  }
}

.delay-stagger-1 {
  animation-delay: 0.04s;
}

.delay-stagger-2 {
  animation-delay: 0.08s;
}

.delay-stagger-3 {
  animation-delay: 0.12s;
}

.delay-stagger-4 {
  animation-delay: 0.16s;
}

.delay-stagger-5 {
  animation-delay: 0.2s;
}

.delay-stagger-6 {
  animation-delay: 0.24s;
}

.delay-stagger-7 {
  animation-delay: 0.28s;
}

.carousel-bleed {
  width: 100vw;
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

.carousel-section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  margin-bottom: 0.5rem;
}

.carousel-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.9);
  margin-bottom: 1.25rem;
  text-align: center;
}

.carousel-viewport {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 14%,
    #000 86%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 14%,
    #000 86%,
    transparent 100%
  );
}

.carousel-track {
  display: flex;
  width: max-content;
  gap: 0;
  padding: 0.5rem 0;
  animation: lemar-marquee 56s linear infinite;
  backface-visibility: hidden;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-group {
  --carousel-gap: 1rem;
  display: flex;
  gap: var(--carousel-gap);
  flex-shrink: 0;
  padding-right: var(--carousel-gap);
}

.carousel-slide {
  position: relative;
  flex: 0 0 auto;
  width: 148px;
  height: 198px;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#whatsapp-grupo {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0, 168, 89, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

#whatsapp-grupo:focus-visible {
  outline: 3px solid rgba(52, 211, 153, 0.5);
  outline-offset: 4px;
}

@media (min-width: 640px) {
  .carousel-slide {
    width: 180px;
    height: 240px;
    border-radius: 16px;
  }
}

@media (min-width: 1024px) {
  .carousel-slide {
    width: 200px;
    height: 268px;
  }
}

@keyframes lemar-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-track,
  .animate-fade-in,
  .animate-slide-up {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
