* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #ffffff;
  font-family: "Roboto", sans-serif;
  color: #333;

  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 5vh;
  padding-bottom: 15vh;
}

.container {
  width: 90%;
  max-width: 28.125rem;
  text-align: center;
}

.header {
  margin-bottom: 2.5rem;
}

.logo {
  width: 9.375rem;
  height: auto;
  margin-bottom: 1.25rem;
}

.slogan {
  font-size: 1.14rem;
  font-weight: 400;
  line-height: 1.5;
  color: #444;
}

.main-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cta-button {
  background-color: #a63238;
  color: #ffffff;
  text-decoration: none;

  display: block;
  width: 100%;
  padding: 15px 20px;
  border-radius: 0.5rem;
  border: none;

  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;

  transition: background-color 0.2s ease, transform 0.1s ease;
}

.cta-button:active {
  background-color: #8c2a30;
  transform: scale(0.98);
}

.carousel-container {
  width: 100%;
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;

  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  transition: transform 0.3s ease-in-out;
}

.slide {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
  scroll-snap-align: start;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}
.carousel-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.slide-image {
  width: 100%;
  height: auto;
  display: block;
  max-height: 25rem;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 10%;
  padding: 8px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.indicator {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.indicator.active {
  background-color: #a63238;
  border: 1px solid #ffffff;
  transform: scale(1.1);
}

.whatsapp-float {
  position: fixed;
  width: 3.75rem;
  height: 3.75rem;
  bottom: 2.5rem;
  right: 2.5rem;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
}

@media (min-width: 600px) {
  .cta-button:hover {
    background-color: #8c2a30;
  }
}
