.gradient {
  background: linear-gradient(90deg, #182449 0%, #d84c2f 100%);
}

:root {
  --ink-navy: #182449;
  --stamp-red: #d84c2f;
  --paper-cream: #f7f4ec;
  --highlight-yellow: #f5c343;
}

body {
  background-color: var(--ink-navy);
}

.paper-cream {
  background-color: var(--paper-cream);
}

.highlight-yellow {
  color: var(--highlight-yellow);
}

.brand-red {
  color: var(--stamp-red);
}

.seasonal-notice {
  position: relative;
  z-index: 10;
  width: fit-content;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  border: 2px solid var(--highlight-yellow);
  border-radius: 9999px;
  background-color: var(--paper-cream);
  color: var(--ink-navy);
  font-weight: 700;
  text-align: center;
}

.hero-slider {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.content-slider {
  position: relative;
  min-height: 31rem;
  padding-bottom: 3.5rem;
}

.content-slider.config-loading .content-slide {
  visibility: hidden;
}

.content-slide {
  position: absolute;
  inset: 0 0 3.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  transition: opacity 1s ease-in-out;
}

.content-slider-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: var(--stamp-red);
  color: white;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.content-slider-control:focus-visible,
.content-dot:focus-visible {
  outline: 3px solid var(--highlight-yellow);
  outline-offset: 3px;
}

.content-slider-prev {
  left: -1rem;
}

.content-slider-next {
  right: -1rem;
}

.content-slider-dots {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.content-dot {
  width: 0.75rem;
  height: 0.75rem;
  border: 2px solid var(--stamp-red);
  border-radius: 9999px;
  background-color: transparent;
}

.content-dot.active {
  background-color: var(--stamp-red);
}

.content-slide-cta {
  display: inline-block;
}

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 40;
  display: flex;
  width: 3.5rem;
  height: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: var(--stamp-red);
  box-shadow: 0 8px 20px rgba(24, 36, 73, 0.3);
  transition: transform 0.2s ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: white;
}
