/*Reset*/
*{
  margin: 0;
  padding: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/*Header*/
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: 200;
}

.menu a{
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 10px;
    transition: 0.4s; /*lo deja como comentario*/
}

.mostrar-menu, 
.esconder-menu{
    font-size: 30px;
    cursor: pointer;
    display: none; /*lo deja como comentario*/
    transition: 0.4s;
}

.mostrar-menu{
    order: 1; /*lo deja como comentario*/

}

.menu a:hover,
.mostrar-menu:hover,
.esconder-menu:hover{
    color: #6cc091;
}

#check{
    display: none;
}

/*Banner*/
#banner{
    padding: 0 50px;
    background-image: url(Banner.jpg);
    height: 60vh;
    background-size: cover;
    background-position: center;
}

#banner::before{
    content:'';
    /*background: ;*/
    position:absolute ;
    width: 100%;
    height: 45vh;
    left: 0;
}

.contenido-banner{
    position: relative;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    -webkit-text-stroke: 2px black;
}

.contenido-banner h3{
    font-size: 30px;
    font-weight: 600;
    padding: 10px 0px;
    font-family: "Archivo", sans-serif;
    font-style: normal;
    font-size: 40px;
}

.contenido-banner span{
  font-size: 50px;  
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.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;
    flex-direction:row;
}

#personas img{
    border-radius: 5%;
}

#personas div{
    padding: 30px 30px;
}

#personas div h4{
    color: #40405c;
    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;
}

/*Iconos*/
#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-mobile{
    border: none;
}

.contenido-iconos div i{
    color: #093d20;
}

.contenido-iconos div h6{
    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;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 10px 10px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button::before {
    content: "";
    display: inline-block;
    width: 60px; /* Ajusta el tamaño */
    height: 60px;
    background-image: url('wap.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 0px; /* Espacio entre el ícono y el texto */
    vertical-align: middle;
}

/*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 0 1px #4bae77;
}

form input::placeholder,
form textarea::placeholder{
    color: #fff;
}

.mensaje{
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.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;
}

/*Footer*/
footer{
    background: #4d4d5c;
    color: #cccccc4a;
    text-align: center;
    padding: 10px 0px;
}

/*Responsive*/
@media(max-width: 768px){
    /*header*/
    .mostrar-menu,
    .esconder-menu{
        display: block;
    }    

    
    .menu{
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #4d4d5c;
        right: -100%; /*lo deja como comentario*/
        top: 0;
        text-align: center;
        padding: 100px 0px;
        z-index: 100;
        transition: 0.8s; /*lo deja como comentario*/
    }

    .menu a{
        display: block;
        padding: 20px;
    }

    .esconder-menu{
        position: absolute;
        top: 40px;
        right: 40px;
    }

    #check:checked ~ .menu{
        right: 0;
    }

    /*Banner*/
    .contenido-banner{
    -webkit-text-stroke: 0px white;
    }

    /*Personas*/
    #personas{
        flex-direction: column;
    }

    /*Iconos*/
    .contenido-iconos{
        flex-direction: column;
    }

    .contenido-iconos div{
        border:none;
    }

    /*Formulario*/
    .datos-form{
        flex-direction: column;
    }

    /*WhatsApp*/
    .whatsapp-button{
        flex-direction: column;
    }

}