html, body { margin:0; padding:0; background: var(--bg); color: var(--text); font-family: "Fauna One", serif; }
img { display:block; max-width:100%; }
.props-container { width: min(100% - 24px, var(--maxw)); margin-inline: auto; }

.hero { padding: 12px 0 28px; }
.carousel { position: relative; border-radius: var(--radius); overflow: hidden; background: #0e0f12; }
.carousel--desktop { display: none; }
@media (min-width: 768px) { .carousel--mobile { display: none; } .carousel--desktop { display: block; } }
.slides { display:flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.slides::-webkit-scrollbar{ display: none; }
.slide {
  min-width: 100%;
  flex: 0 0 100%;
  position: relative;
  scroll-snap-align: center;
  touch-action: pan-y;
}
.slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
  -webkit-user-drag: none;
  user-select: none;
}
.slide-overlay { position:absolute; inset:0; display:grid; place-items:end center; padding: 18px 14px; background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.38) 100%); }
.slide-copy { text-align:left; max-width: 640px; }
.eyebrow { text-transform: uppercase; letter-spacing:.16em; font-size:.8rem; color: var(--accent); margin:0 0 8px; }
.slide-copy h1 { margin:0 0 8px; font-size: clamp(1.2rem, 6vw, 2rem); }
.subtitle { color: var(--muted); margin: 0 0 14px; }
.dots { position:absolute; bottom:14px; left:50%; transform: translateX(-50%); display:flex; gap:8px; }
.dots span { width:8px; height:8px; border-radius:999px; background:#4b4b51; opacity:.7; transition: transform .2s ease, opacity .2s ease; }
.dots span.active { background:#fff; opacity:1; transform: scale(1.15); }


.value-props {
  background: #fafafa;
  padding: 0rem 1rem;
}

.props-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Mobile: 1 columna */
.prop {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.prop:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.prop-ico {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.prop h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #222;
  text-transform: uppercase;
}

.prop p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

.latest {
  position: relative;
  max-width: 1250px;
  margin: 3rem auto;
}

.latest-label {
  padding: 10px 16px;
  background: #fff;
  border: 2px solid #111;
  width: fit-content;
  font-weight: 700;
  font-size: 22px;
  color: #111;
  position: absolute;
  left: 12px;
  top: -25px;
  z-index: 1;
}

.latest-label::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #6A88B1;
  top: -6px;
  left: 6px;
  z-index: -1;
}

/* ===== NOVEDADES ===== */
.novedades {
  max-width: 1200px;
  margin: 4rem auto 2rem;
  padding: 0 1rem;
}

.novedades-title {
  display: inline-block;
  position: relative;
  z-index: 1;
  background: #fff;
  border: 2px solid #111;
  padding: 8px 16px;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.novedades-title::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #6A88B1;
  top: -6px;
  left: 6px;
  z-index: -1;
}

.novedad-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.novedad-dark {
  background-color: #111;
  color: #fff;
}

.novedad-light {
  background-color: #f0f4f8;
  color: #111;
}

.novedad-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.novedad-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.novedad-body {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.novedad-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
  margin: 0;
}

.novedad-name {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.1;
}

.novedad-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
  margin: 0;
  max-width: 480px;
}

.novedad-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.5rem;
  padding: 12px 20px;
  background-color: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 8px;
  width: fit-content;
  transition: background-color 0.2s ease;
}

.novedad-btn:hover {
  background-color: #1ebe5d;
}

.prop-ico {
  display: flex;
  justify-content: center;
}

.home-icon {
  width: 150px;
  height: 150px;
}

@media (min-width: 600px) {
  .props-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .novedad-card {
    flex-direction: row;
    min-height: 380px;
  }

  .novedad-light {
    flex-direction: row-reverse;
  }

  .novedad-img-wrap {
    width: 55%;
    aspect-ratio: unset;
    flex-shrink: 0;
  }

  .novedad-body {
    width: 45%;
    padding: 2.5rem 2rem;
  }

  .novedad-name {
    font-size: 2.2rem;
  }
}


@media (min-width: 1024px) {
  .props-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-icon {
    width: 150px;
    height: 150px;
  }

}

@media (min-width: 1300px) {
  .latest {
    grid-template-columns: repeat(3, 1fr)!important;
    justify-items: center;
  }

  .card {
    width: 80%!important;
  }

  .home-icon {
    width: 200px;
    height: 200px;
  }


}

/* ===== BRANDS SLIDER ===== */
.brands-slider {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.brands-viewport {
  flex: 1;
  overflow: hidden;
}

.brands-track {
  display: flex;
  transition: transform 0.4s ease;
}

.brand-item {
  flex: 0 0 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

.brand-item img {
  max-width: 120px;
  height: 48px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.3s ease;
}

.brand-item img:hover {
  filter: grayscale(0) opacity(1);
}

.brands-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}

.brands-arrow:hover { opacity: 1; }

.brands-arrow img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.arrow-flipped { transform: scaleX(-1); }

@media (max-width: 599px) {
  .brand-item { flex: 0 0 50%; }
}

