

/****BANNER--------------------------------------------------------**/

.banner{
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 45px;
    width: 100%;
    min-height: 220px;
    background: var(--claro);
    
}

.logo{
    width: 20%;
    min-width: 140px;
    height: auto;
    margin-right: 1%;
    transform: rotate(20deg);
}

.logo img{
    width: 100%;
    height: 100%;
}

.texto{
    width: 100%;
}

.texto h1{
    font-size: clamp(1.5rem, 2vw + 1rem, 3.6rem);
    font-weight: bolder;
    line-height: 90%;
    text-transform: uppercase;
    color: var(--verde);
}

.texto h3{
    font-size: clamp(.2rem, .5vw + 1rem, 2rem);
    color: var(--gris);
    margin: 5px 8%;
}




/*RESPONSIVE----------------------------------------------------*/
@media (max-width: 800px){
    .banner{
        margin-top: 0;
        height: 350px;
    }
}

@media (max-width: 500px){
    
    .banner{
    display: block;
    padding-top: 40px;
    padding-bottom: 20px;
    height:auto;
    width: 100%;
    text-align: center;
    }

    .logo{
    margin: auto;
    width: 60%;
    }

    .texto h1{
    font-size: 2rem;
    line-height: 1.8rem;
    padding: 0;
    }
    
    .texto h3{
    font-size: 1.2rem;
    padding: 5px 15px;
}
}