/* =========================================================
   HOME-0008
   NATURALEZA Y ENTORNO
   ========================================================= */


.nature-section {
    padding: 95px 35px;
    background: #ffffff;
}


.nature-container {
    width: min(1240px, 100%);
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 75px;
}


/* =========================================================
   IMAGEN
   ========================================================= */

.nature-image {
    width: 100%;

    overflow: hidden;

    border-radius: 12px;
}


.nature-image img {
    display: block;

    width: 100%;
    height: 400px;

    object-fit: cover;

    transition:
        transform 8s ease;
}


.nature-image:hover img {
    transform: scale(1.035);
}


/* =========================================================
   CONTENIDO
   ========================================================= */

.nature-content {
    max-width: 560px;
}


.nature-eyebrow {
    margin: 0 0 8px;

    color: var(--color-green);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 1.4px;
}


.nature-content h2 {
    margin: 0 0 22px;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    color: var(--color-green);

    font-size: 45px;
    line-height: 1.1;
    font-weight: 500;
}


.nature-content > p:not(.nature-eyebrow) {
    margin: 0 0 16px;

    color: #50524d;

    font-size: 16px;
    line-height: 1.7;
}


.nature-content > p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .nature-section {
        padding: 75px 25px;
    }


    .nature-container {
        gap: 45px;
    }


    .nature-image img {
        height: 350px;
    }


    .nature-content h2 {
        font-size: 38px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .nature-section {
        padding: 55px 20px 65px;
    }


    .nature-container {
        display: block;
    }


    .nature-image {
        margin-bottom: 38px;

        border-radius: 10px;
    }


    .nature-image img {
        height: auto;
        aspect-ratio: 2 / 1;

        object-fit: cover;
    }


    .nature-content {
        max-width: none;
    }


    .nature-content h2 {
        margin-bottom: 18px;

        font-size: 34px;
    }


    .nature-content > p:not(.nature-eyebrow) {
        font-size: 15px;
        line-height: 1.65;
    }

}


/* =========================================================
   MOBILE PEQUEÑO
   ========================================================= */

@media (max-width: 420px) {

    .nature-section {
        padding-left: 15px;
        padding-right: 15px;
    }


    .nature-content h2 {
        font-size: 30px;
    }

}

