/* ==========================================================================
   126. ZERO WASTE: ESTRUCTURA Y TÍTULOS GENERALES
   ========================================================================== */
#zero-waste {
    overflow-x: hidden;
}

#zero-waste .section-title {
    margin: 0;
    padding-inline: 1rem;
    color: var(--primary-dark-green);
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

@media (min-width: 960px) {
    #zero-waste .section-title {
        font-size: 3rem;
        font-weight: 600;
        letter-spacing: 1px;
    }
}

/* ==========================================================================
   127. ZERO WASTE: BANNER PRINCIPAL (.banner-section)
   ========================================================================== */
#zero-waste .banner-section {
    display: grid;
    place-items: center;
    position: relative;
    width: 100%;
    height: 622px;
    padding-top: 5rem;
    background-image: url(../../assets/images/zero-waste-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: var(--cream-dark);
}

@media (min-width: 960px) {
    #zero-waste .banner-section {
        height: 664px;
        padding-top: 6.5rem;
    }
}

/* Botones de Navegación del Banner */
#zero-waste .banner-section .back-button {
    display: flex;
    align-items: center;
    position: absolute;
    top: 6rem;
    left: 1rem;
    gap: 0.25rem;
    padding: 0.5rem 0;
    background: transparent;
    border: none;
    color: var(--cream-dark);
    font-weight: 600;
    cursor: pointer;
}

#zero-waste .banner-section .back-button::before {
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    background-image: url(../../assets/images/arrow-left.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#zero-waste .banner-section .scroll-button {
    display: block;
    position: absolute;
    bottom: 4.25rem;
    left: 0;
    right: 0;
    width: fit-content;
    margin-inline: auto;
    background: transparent;
    border: none;
    cursor: pointer;
}

#zero-waste .banner-section .scroll-button img {
    rotate: -90deg;
}

@media (min-width: 960px) {
    #zero-waste .banner-section .back-button { top: 7.5rem; left: 2rem; }
}

/* Contenido del Banner */
#zero-waste .banner-section .banner-content {
    margin-inline: auto;
    padding-inline: 1rem;
    text-align: center;
}

#zero-waste .banner-section .pre-heading {
    margin: 0 0 0.25rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

#zero-waste .banner-section .title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: 0.83px;
    text-transform: uppercase;
}

#zero-waste .banner-section .description {
    line-height: 1.5;
    font-family: var(--font-main);
}

@media (min-width: 960px) {
    #zero-waste .banner-section .pre-heading { font-size: 1.25rem; font-weight: 600; line-height: 24px; }
    #zero-waste .banner-section .title { font-size: 4rem; line-height: 1.125; }
}

/* ==========================================================================
   128. ZERO WASTE: SECCIÓN DE VIDEO (.video-section)
   ========================================================================== */
#zero-waste .video-section {
    padding-top: 3rem;
    padding-bottom: 5rem;
}

#zero-waste .video-section .section-title {
    margin-bottom: 2rem;
    color: var(--cream-dark); /* Título invertido sobre fondo oscuro usualmente */
}

#zero-waste .video-section .row {
    row-gap: 2rem;
}

#zero-waste .video-section .video-container {
    max-width: 1000px !important;
    margin: 2rem auto;
    padding: 4rem 0;
}

#zero-waste .video-section .video-container iframe {
    display: block;
    width: 100%;
    height: 375px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
}

@media (min-width: 960px) {
    #zero-waste .video-section { padding-top: 5rem; }
    #zero-waste .video-section .row { row-gap: 3.5rem; }
}

@media (max-width: 62em) {
    #zero-waste .video-section .video { min-width: 100%; }
}

/* ==========================================================================
   129. ZERO WASTE: PASOS (.steps-section)
   ========================================================================== */
#zero-waste .steps-section > .section-title {
    margin-bottom: 3.5rem;
}

@media (min-width: 960px) {
    #zero-waste .steps-section > .section-title {
        margin-bottom: 5rem;
    }
}

/* ==========================================================================
   130. ZERO WASTE: PASOS (.steps-section)
   ========================================================================== */
#zero-waste .steps-section .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-inline: 1rem;
    color: var(--primary-dark-green);
    text-align: center;
}

#zero-waste .steps-section .card * {
    margin: 0;
}

#zero-waste .steps-section .card h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

#zero-waste .steps-section .card p {
    max-width: 212px;
    font-family: var(--font-main);
}

#zero-waste .steps-section .card img {
    width: 305px;
    height: 215px;
    margin: 0 auto;
    border-radius: var(--radius-lg); /* 1.5rem */
    object-fit: cover;
}

/* ==========================================================================
   131. ZERO WASTE: BENEFICIOS (.benefits-section)
   ========================================================================== */
#zero-waste .benefits-section {
    padding-top: 3.5rem;
}

#zero-waste .benefits-section > .section-title {
    margin-bottom: 3.5rem;
}

@media (min-width: 960px) {
    #zero-waste .benefits-section > .section-title {
        margin-bottom: 5rem;
    }
}

/* Grilla de tarjetas de beneficios */
#zero-waste .benefits-section .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 1rem;
    row-gap: 1.5rem;
    margin-bottom: -120px; /* Efecto de solapamiento sobre el mensaje */
    padding-inline: 1rem;
    color: var(--primary-dark-green);
}

@media (min-width: 960px) {
    #zero-waste .benefits-section .cards {
        column-gap: 8rem;
    }
}

@media screen and (max-width: 1023px) {
    #zero-waste .benefits-section .cards {
        margin-bottom: 0;
    }
}

#zero-waste .benefits-section .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 224px;
    gap: 1rem;
    text-align: center;
}

#zero-waste .benefits-section .card * {
    margin: 0;
}

/* ==========================================================================
   132. ZERO WASTE: MENSAJE FINAL (.message)
   ========================================================================== */
#zero-waste .benefits-section .message {
    display: grid;
    place-items: center;
    height: 500px;
    background-image: url(../../assets/images/zero-waste-benefits-bg.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

#zero-waste .benefits-section .text {
    max-width: 1088px;
    padding-inline: 1rem;
    color: var(--cream-dark);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

@media (min-width: 960px) {
    #zero-waste .benefits-section .text {
        font-size: 3rem;
    }
}