*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: zain;
    text-decoration: none;
    list-style: none;
    color: var(--black-color);
}

:root {
    --first-color : #93BF9A;
    --secondary-color : #B19BBF;
    --third-color : #3a4031;
    --white-color : #f2f2f2;
    --yellow-color : #cbd982;
    --black-color : #2e2e2e;
}

body {
    background-color: var(--white-color);
}

/* MODAL */
div.modal-container {
    display: none;
    z-index: 2;
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: #2e2e2e77;
    justify-content: center;
    align-items: center;
}
div.modal-container div.content {
    background-color: var(--yellow-color);
    padding: 1rem;
    border-radius: 1rem;
    width: 40%;
    height: 90%;
    position: relative;

    font-size: 1.5rem;
}

div.modal-container div.content form input {
    height: 2rem;
    padding: .5rem;
    border-radius: .5rem;
    border: none;
}

div.modal-container div.content form div.names {
    width: 100%;
    display: flex;
}

div.modal-container div.content form div.name,
div.modal-container div.content form div.last-name {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

div.modal-container div.content form div.mail {
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

div.modal-container div.content form div.phone {
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

div.modal-container div.content form div.experience {
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

div.modal-container div.content form div.experience div.response {
    display: flex;
    align-items: center;
}

div.modal-container div.content form div.experience div.response div.experience-yes-container,
div.modal-container div.content form div.experience div.response div.experience-no-container {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

div.modal-container div.content form div.experience div.response div.experience-yes-container input[type= radio],
div.modal-container div.content form div.experience div.response div.experience-no-container input[type= radio] {
    margin-left: 1rem;
    transform: scale(1.2);
}

div.modal-container div.content form div.experience label {
    font-size: 1.5rem;
}

div.modal-container button {
    border: none;
    padding: .5rem 1rem;
    border-radius: 1rem;
    font-size: 1.2rem;
    cursor: pointer;
}

div.modal-container button#closeModal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--first-color);
}

div.modal-container button.submit {
    margin-left: 1rem;
    background-color: var(--secondary-color);
}

/* NAVBAR */

nav ul li:nth-child(2) a{
    padding: .2rem;
    background-color: var(--yellow-color);
}

nav ul li:nth-child(2) a:hover {
    color: var(--black-color);
}

/* HERO */

section.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    
    width: 100%;
    height: 80vh;
    margin: auto;
    background-color: var(--first-color);
    background-image: url(../assets/imagenes/verdura.webp);
    background-position: center;
    background-size: cover;
}

section.hero img {
    height: 80vh;
    border-radius: .5rem;
}

section.hero div.hero-content {
    font-size: 2rem;
    width: 100%;
    height: 100%;

    display: flex;
}

section.hero div.hero-content div.image-content {
    width: 30%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

section.hero div.hero-content div.text-content {
    width: 70%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

section.hero div.hero-content div.image-content img {
    height: 90%;
    transform: rotate(-5deg);
    box-shadow:  2px 2px 20px rgba(0, 0, 0, 0.78);
}

section.hero div.hero-content div.text-content p {
    font-weight: 800;
    font-size: 3rem;
    text-align: center;
    color: var(--white-color);
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.78);
    padding: .5rem 1rem;
}

/* QUIÉNES SOMOS */
section.quienes-somos {
    height: 60vh;
    width: 100%;
    padding: 2rem;

    display: flex;
    justify-content: space-around;
    align-items: center;
}

/* QUIÉNES SOMOS */
section.quienes-somos h2 {
    font-size: 3rem;
    text-align: center;
    background-color: var(--secondary-color);
    border-radius: 50%;
    padding: 1.5rem;
}
section.quienes-somos div.content {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

section.quienes-somos div.content p {
    font-size: 2rem;
    font-weight: 400;
}

section.quienes-somos div.content button {
    background-color: var(--yellow-color);
    padding: .5rem 1rem;
    font-size: 1.5rem;
    border-radius: .5rem;
    width: fit-content;
    border: none;
    cursor: pointer;
}

/* BENTO GALLERY */
section.bento-grid {
    height: 95vh;
    width: 70%;
    margin: auto;
    padding: 1rem;
    background-color: #93BF9A;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
    border-radius: 1rem;
}

section.bento-grid div.box {
    grid-column: span 1;
    grid-row: span 1;
    background-position: center;
    background-size: cover;
}

section.bento-grid div.box-1{
    background-color: #B19BBF;
    background-image: url(../assets/imagenes/remolacha.webp);
}

section.bento-grid div.box-2 {
    background-color: #31ab26;
    background-image: url(../assets/imagenes/maceta.webp);

}

section.bento-grid div.box-3 {
    background-color: #a19bbf;
    grid-column: span 2;
    grid-row: span 2;  
    background-image: url(../assets/imagenes/chica_2.webp);

}

section.bento-grid div.box-4 {
    background-color: #bf9ba3;
    grid-column: span 2;
    grid-row: span 2;  
    background-image: url(../assets/imagenes/chicas_2.webp);

}

section.bento-grid div.box-5 {
    background-color: #bfb19b;
    background-image: url(../assets/imagenes/plantines_2.webp);

}

section.bento-grid div.box-6 {
    background-color: #9bbebf;
    background-image: url(../assets/imagenes/tomate.webp);

}

footer {
    height: 50vh;
}
footer section.info-footer{
    height: 100%;
}

@media screen and (max-width: 992px) {
    html {
        font-size: 12px;
    }
    section.hero div.hero-content div.image-content {
        width: 50%;
    }
    section.hero div.hero-content div.text-content {
        width: 50%;
    }
    section.hero div.hero-content div.image-content img  {
        height: 60%;
    }
    section.bento-grid {
        width: 80%;
        padding: 0;
        background-color: var(--yellow-color);
    }

}

@media screen and (max-width: 768px) {
    html {
        font-size: 10px;
    }
    section.hero div.hero-content div.image-content img  {
        height: 60%;
    }
    section.bento-grid {
        width: 90%;
    }
}

@media screen and (max-width: 600px) {
    section.hero {
        background-image: url(../assets/imagenes/chicas_1.webp);
    }
    section.hero div.hero-content div.image-content {
        display: none;
    }
    section.hero div.hero-content div.text-content {
        width: 100%;
    }
    section.hero div.hero-content div.text-content p  {
        font-size: 2.5rem;
    }
    div.content p {
        font-size: 1.7rem;
    }
    div.content button#comunity {
        font-size: 1.2rem;
    }
    section.bento-grid {
        width: 100%;
    }
    section.bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
    section.bento-grid div.box {
        grid-column: span 2;
    }

    section.quienes-somos {
        height: fit-content;
        flex-direction: column;
    }
    section.quienes-somos div.content {
        width: 100%;
        align-items: center;
    }
    section.quienes-somos div.content p {
        text-align: center;
    }
}