.box_header {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    align-content: flex-start;
    width: 85%;
}
#new_header .hero-content h1 {
    font-size: clamp(2rem,4vw,4rem);
    line-height: 1.3;
    margin-bottom: 60px;
    font-weight: 700;
    color: white!important;
}
#new_header .hero-content p {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: white!important;
}
#new_header .cta-btn {
    background-color: #e2542a;
    padding: 15px 55px;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
}

.value-proposition {
  text-align: center;
  padding: 2rem 1rem;
}

.value-proposition h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.value-proposition p {
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #666;
  font-size: 1rem;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.feature-item {
  max-width: 270px;
  text-align: center;
}

.feature-item .icon {
  margin: 0 auto 1rem;
}

.feature-item p {
  font-size: 16px;
  color: #444;
}

.carrusel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.carrusel-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}

.carrusel-track.animate {
  animation: scroll 18s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-20%);
  }
}

.tarjeta {
  flex: 0 0 250px;
  aspect-ratio: 1 / 0.6;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  border-radius: 1rem;
  border: solid 1px #000;
  padding: 10px 15px;
}

.carrusel-track:not(.animate) {
  justify-content: center;
}

.tarjeta a {
    color: #4c4c4c;
}

.category_name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 15px;
    color: #1e1e1e;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0;
}

.bg_subcategory {
    background-color: #f3b60785;
    border-radius: 3px;
    padding: 0 3px;
}

#bowser_city{
    margin-top: 0!important;
}

@media (min-width: 992px) and (max-width: 1399px) {
  .feature-item {
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  .features {
    gap: 1.5rem;
  }
  .feature-item {
    max-width: 310px;
  }
}

@media (max-width: 500px) {
  .features {
    flex-direction: column;
    align-items: center;
  }
  .feature-item {
    max-width: 365px;
  }
}
