/* Hero */
.hero {
    width: 100%;
    padding: 100px 20px;
    background: #A8A696;
    color: #EBE9DD;
    text-align: center;
    box-sizing: border-box;
}
.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    color: #EBE9DD;
}
.hero-subtitle {
    font-size: 24px;
    font-family: 'Lato', sans-serif;
    font-weight: lighter;
    color: #EBE9DD;
}
/* Reto containers */
.reto-container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(118,107,93,0.2);
    color: #EBE9DD;
    font-family: 'Lato', sans-serif;
}
.reto-primary {
    background: linear-gradient(135deg, #766B5D, #5c5449);
}
.reto-secondary {
    background: linear-gradient(135deg, #A8A696, #8a8a7a);
}
.reto-container h1,
.reto-container h2 {
    text-align: center;
    margin-bottom: 15px;
}
.reto-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(235,233,221,0.15);
    padding: 10px 15px;
    border-radius: 8px;
    margin: 10px 0;
}
.reto-switch {
    position: relative;
    width: 45px;
    height: 22px;
}
.reto-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.reto-slider {
    position: absolute;
    inset: 0;
    background-color: #D4C7AF;
    transition: 0.3s;
    border-radius: 34px;
    cursor: pointer;
}
.reto-slider::before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    left: 2px;
    bottom: 2px;
    background-color: #EBE9DD;
    transition: 0.3s;
}
.reto-switch input:checked + .reto-slider {
    background-color: #766B5D;
}
.reto-switch input:checked + .reto-slider::before {
    transform: translateX(23px);
}
.reto-price {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
    font-weight: bold;
    letter-spacing: 2px;
}
/* Responsive */
@media (max-width: 600px) {
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 18px; }
}
/* Carrusel */
#carouselProducts {
    position: relative;
    overflow: hidden;
    padding: 0 40px;
}
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(118,107,93,0.6);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}
.carousel-control-prev { left: 10px; }
.carousel-control-next { right: 10px; }
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
    background-color: #766B5D;
    border-radius: 50%;
}
.carousel-inner { overflow: hidden; }
.home-program {
    overflow: hidden;
    margin-bottom: 10px;
}
.home-program-img {
    position: relative;
    overflow: hidden;
}
.home-program-img img {
    width: 100%;
    height: auto;
    display: block;
}