.hablemos {
    background-image: url(../img/backgrounds/contactbackground.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    color: white;
    font-family: Arial, sans-serif;
    padding-top: 30px;
    padding-bottom: 30px;
        }

.hablemoscont h2 {
    color: white;
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Lato',sans-serif;
}

.hablemoscont form {
    
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: 2px solid white;
    
}

.hablemoscont label {
    display: block;
    margin-bottom: 10px;
    background: transparent;
}    

.hablemoscont input,
.hablemoscont textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid white;
    border-radius: 5px;
    color: white;

}

input[type="submit"] {
    background-color: white;
    color: black;
    cursor: pointer;
        }

input[type="submit"]:hover {
    background-color: #ddd;
        }

.g-recaptcha {
    margin-bottom: 15px;
        }

.hablemoscont button {
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid white;
    border-radius: 5px;
    color: white;
    padding: 10px 20px;
    font-family: 'Lato', sans-serif; /* Agrega la fuente Lato al botón */
    cursor: pointer;
    margin: 0 auto; /* Centra el botón horizontalmente */
    width: 100%; /* Ocupa el 100% del ancho del contenedor */
    box-sizing: border-box;
    font-size: 1rem;
}

/* Añade estilos adicionales para cuando el botón se coloca sobre él o se enfoca (hover y focus) */
.hablemoscont button:hover,
.hablemoscont button:focus {
    background-color: rgba(0, 0, 0, 0.2); /* Cambia el color de fondo al pasar el ratón o enfocar */
    font-weight: 600;
    font-size: 1.1rem;
}


@media only screen and (max-width: 500px) {
    .hablemoscont form {
    
    max-width: 400px;
    margin-left: 20px;
    margin-right: 20px;
    }
}


