@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


:root{
    --white: #f9f9f9;
    --grisoscuro:#d3d3d7;
    --oscurito:#4a4a4a;
    --oscuro: #042608;
    --claro: #FAEDD9;
    --medio:#808F12;
    --intermedio: #2A5C0B;
    --naranja:#EA2A15;
    --font: "Montserrat", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font);
}


.area_totalgris_01{
    background-color: var(--grisoscuro);
    width: 100%;
    margin:auto;
}



.container .dos_Areas{
    display:flex;
    justify-content: space-around;
    width: 100%;
    height: 50%;
}


.texto_area{
    width: 50%;
}


.img_area{
    width: 50%;
}

.texto_area{
    width: 100%;
}

.texto_area .cuadrado_verde h1{
    background-color: var(--intermedio);
    padding: 0.5rem 1rem;
    width: 90%;
    color:var(--claro);
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.texto_area .cuadrado_verde h2{
    color:var(--intermedio);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    width: 90%;
    text-align: justify;
}

.sub_cuadrado p{
    width: 90%;
    font-size: 1.2rem;
    line-height: 1.5rem;
    text-align: justify;
    color:var(--oscurito);
}

.img_area{
    width: 100%;
}

.img_area .foto_img{
    width: 100%;
    margin: auto;
}

.img_area .foto_img img{
    margin-top: 3rem;
    width: 450px;
}

.img_area .foto_img img:hover{
    filter: contrast(50%);
    filter: blur(2px);
    transform: scale(1.1);
}

.btn_area{
    margin-top: 3rem;
}

.btn_area .btn_area_naranja{
    background-color: var(--naranja);
    color:var(--claro);
    font-size: 1rem;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 20px;
    transition: all 0.5s;
}

.btn_area .btn_area_naranja:hover{
    background-color: var(--intermedio);
    
}

@media (max-width: 768px) {

    .container .dos_Areas{
    height: 70%;
    }

    .container .dos_Areas{
    flex-direction: column;
    width: 100%;
    }

    .texto_area .cuadrado_verde h1{
        font-size: 1.2rem;
     }

    .texto_area .cuadrado_verde h2{
        font-size: 1rem;
     }

    .sub_cuadrado p{
        font-size: 0.8rem;
        line-height: 15px;
    }

    .img_area{
        width: 90%;
        text-align: center;
    }
    .img_area .foto_img img{
        margin-top: 1rem;
        width: 250px;
        margin: auto;
    }

    .btn_area{
    margin-top: 1.5rem;
    }
    
    .btn_area .btn_area_naranja{
        padding: 10px 40px;
    }
}