* {
    margin: 0px;
    padding: 0px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

}

header {
    height: 100px;
    background: #4D4D5C;
    padding: 0 50px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.logo {
    text-transform: uppercase;
    color: #6CC091;
    font-weight: 200px;

}

.menu a {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0px 10px;
    transition: 0.4s;
}

.mostrar-menu,
.esconder-menu {
    font-size: 30px;
    cursor: pointer;
    display: none;
    transition: 0.4s;
}

.mostrar-menu {
    order: 1;
}

.menu a:hover,
.mostrar-menu:hover,
.esconder-menu:hover {
    color: #6cc091;

}

#check {
    display: none;
}

/* BANNER */
#banner {
    padding: 0 50px;
    background-image: url(imagenes/fondo1.webp);
    height: 45vh;
    background-size: cover;
    background-position: center;
}

#banner::before {
    content: '';
    background: rgba(77, 77, 92, 0.6);
    position: absolute;
    width: 100%;
    height: 45vh;
    left: 0;
}

.contenido-banner {
    position: relative;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contenido-banner h3 {
    font-size: 30px;
    font-weight: 400px;
    padding: 10px 0px;
}

.contenido-banner h3 span {
    font-weight: 600;
}

.boton-empezar {
    text-decoration: none;
    color: #fff;
    border: 1px solid #6cc091;
    padding: 20px 40px;
    align-self: baseline;
    transition: all 0.4s;
}

.boton-empezar:hover {
    background: #6CC09070;
}

/*PERSONAS*/
#personas {
    padding: 50px 50px;
    display: flex;
    justify-content: center;
    text-align: center;
}

#personas img {
    border-radius: 100%;
}

#personas div {
    padding: 30px 30px;
}

#personas div h4 {
    color: #4D4D5C;
    font-size: 20px;
    margin: 15px 0px;
}

#personas div p {
    color: #4D4D5C87;
    font-size: 18px;
}

.boton-saber-mas {
    display: inline-block;
    text-decoration: none;
    color: #6CC091;
    padding: 10px 30px;
    border: 3px solid #6cc091;
    border-radius: 30px;
    margin-top: 15px;
    transition: all 0.4s;
}

.boton-saber-mas:hover {
    background: #6CC091;
    color: #fff;
}

/*ICONOCOS*/
#iconos{
    padding: 0px 50px;
    background: rgba(77, 77, 92, 0.6);
}
.contenido-iconos {
    padding: 50px 50px 0px 50px;
    display: flex;
    justify-content: space-between;
    text-align: center;

}

.contenido-iconos div{
    flex: 1;
    margin: 20px 0px;
    border-right: 2px solid rgba(255,255,255, 0.2 );
}
#icono-normal{
    border:none;
}
.contenido-iconos div h4{
    color: #fff;
    font-size: 20px;
    font-weight: 100;
    margin: 10px 0px;
}
.contenido-iconos div p{
    color: rgba(255,255,255, 0.55 ) ;
    font-size: 15px;
}
.boton-iconos{
    text-align: center;
    padding-bottom: 50px ;
}

/*formulario*/
#contacto{
    background: #6CC091;
    padding: 50px 0px;
    color: #fff;
}
#contacto h4 {
    text-align: center;
    font-size: 25px;
    margin-bottom: 20px;
}
#contacto form {
    max-width: 80%;
    margin: 0 auto;
}
.datos-form{
    display: flex;
}
.datos-form div{
    padding: 10px;
    flex: 1;
    

}
form label{
    display: block;
    margin-bottom: 10px;
}
form input,
form textarea{
    background:#6cc091;
    border-radius:10px ;
    border: 2px solid #8dcca9;
    padding: 10px 5px;
    outline: 0;
    color: #fff;
    width: 100%;
}
form input:focus,
form textarea:focus{
    border-color: #4bae77;
    box-shadow: 0 0 1px #4bae77;
}
form input::placeholder,
form textarea::placeholder{
    color: #fff;
}
 
.boton-formulario .boton-saber-mas{
    display: block;
    border: 1px solid #fff;
    color: #fff;
    text-align: center;
    transition: 0.4s;
}
.boton-formulario .boton-saber-mas:hover{
    background: #4fa776ad;
}

.mensaje{
display: flex;
flex-direction: column;
padding: 10px 0px;

}

footer{
    background: #4D4D5C;
    color: #cccccc4a;
    text-align: center;
    padding:10px ;
}


/* RESPONSIVE */
@media(max-width: 768px) {

    /*header*/
    /*  .mostrar-menu, 
    .esconder-menu{
        display: block;
    }

    .menu{
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #4D4D5C;
       right: -100px;
        top: 0px;
        text-align: center;
        padding: 100px 0px;
        z-index: 100;
        transition: 0.8s;
    }


    .menu a{
        display: block;
        padding: 20px;
    }

    .esconder-menu{
        position: absolute;
        top: 40px;
        right: 40px;
    }

    #check:checked ⁓ .menu{
        right: 0;
    }
*/
    /*PERSONAS*/
    #personas {
        flex-direction: column;
    }

    /* iconos */
    .contenido-iconos{
        flex-direction: column;
    }
    .contenido-iconos div{
        border-right: none;
        border-bottom: 2px solid rgba(255,255,255, 0.2 ); 
    }
    #icono-normal{
        border-bottom: 2px solid rgba(255,255,255, 0.2 ); 
    }

    /*formulario*/
    .datos-form{
        flex-direction: column;
    }
}