.d-flex{
    display: flex;
}
.justify-content-center{
    justify-content: center;
}
.gap-15px{
    gap: 15px;
}
.margin-bottom-20px{
    margin-bottom: 20px;
}
.margin-bottom-100px{
    margin-bottom: 100px;
}
.container{
    max-width: calc(100% - 10em);
    width: 40em;
}
.p-primary{
    font-weight: bold;
    text-align: center;
    color: #ff5722;
    font-size: 1.4em;
}


.nav-link:hover, .nav-link:hover .separator {
    color: #007bff !important;
}
.separator {
    font-size: 20px;
    line-height: 0;
    color: #333;
}
.btn-primary {
    background-color: #FF5E00 !important;
    border: none;
}
.btn-primary:hover {
    opacity: 0.9;
}
.navbar-nav {
    gap: 30px;
}

.banner-container {
  position: relative;
  width: 100%;
}

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

.banner-button-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner-button {
  padding: 14px 30px;
  background-color: #ff5722;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.banner-button:hover {
  background-color: #e64a19;
}

@media (max-width: 768px) {
  .banner-button {
    font-size: 18px;
    padding: 10px 20px;
  }
}


.carousel-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 15%;
    box-sizing: border-box;
    padding: 0 10px;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        border: none;
}

.carousel-slide-border-color {
    border-radius: 8px;
    border: 3px solid #000;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    font-size: 18px;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-btn:hover {
    background-color: rgba(0,0,0,0.8);
}
.carousel-p{
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}


.suscripcion-hover:hover{
    background-color: #121212;
    color: #fff
}
html, body {
  overflow-x: hidden !important;
}

.carousel-track {
  margin-right: 0 !important;
}

.carousel-slide img {
  border: none !important;
}
@media (max-width: 768px) {
  .carousel-slide {
    min-width: 50%;
  }

  .banner-button {
    font-size: 22px;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
  }

  .container {
    width: 90%;
    max-width: 100%;
  }

  .navbar-nav {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }

  .carousel-btn {
    padding: 10px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .carousel-slide {
    min-width: 80%;
  }

  .banner-button {
    font-size: 18px;
    bottom: 80px;
  }
}
@media (max-width: 768px) {
  .contador-wrapper h2 {
    font-size: 20px !important;
    text-align: center;
  }

  #contador {
    --w: 70px !important;
  }

  #contador .contador-box {
    width: var(--w);
    height: var(--w);
    font-size: 20px;
  }

  .contador-wrapper a {
    font-size: 16px !important;
    padding: 10px 20px !important;
  }
}
.contador-section {
  background-color: #008dfe;
  padding: 40px 20px;
}

.contador-titulo {
  color: white;
  font-weight: bold;
  font-size: 28px;
  margin: 0;
}

.btn-suscribite {
  background-color: #f3038e;
  color: white;
  padding: 14px 30px;
  font-size: 18px;
  border-radius: 12px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.btn-suscribite:hover {
  background-color: #d9027a;
}
@media (max-width: 768px) {
  .contador-titulo {
    font-size: 20px;
  }

  .btn-suscribite {
    font-size: 16px;
    padding: 10px 20px;
  }

  #contador {
    --w: 70px;
  }

  #contador .contador-box {
    width: var(--w);
    height: var(--w);
    font-size: 20px;
  }
}
#contador {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.box {
  width: 95px;
  height: 95px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.valor {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
}

.unidad {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 3px;
  letter-spacing: 1px;
}

.box-amarillo {
  background-color: #ffe600;
}

.box-rosa {
  background-color: #f590d6;
}

.box-azul {
  background-color: #87bfff;
}
