html {
    scroll-behavior: smooth;
  }
  
.header-contacto{
    height: 70vh;
    background-image: linear-gradient(rgba(176, 236, 176, 0.4), rgba(105, 177, 105, 0.4)), url('../img/contacto.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.header-contacto h1{
    font-size: 4rem;
    color: var(--fondo);
    margin-top: 120px;
    margin-left: 50px;
    background-color: rgba(17, 55, 29, 0.6); /* Fondo semitransparente opcional */
    border-radius:10px;
    padding: 0px 20px;
    font-weight: bold;
}

.contacto-hs{
    color: #c43737; 
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 40px;
}

.chat-box{
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background: #c43737;
    color:#fff; 
    border-radius: 30px;
}

.chat-headset{
    text-align: center;
    font-size: 70px;
}

.chat{
    margin: 10px 55px;
    background: #fff;
    color: #005441;
}

.chat:hover{
    color: #000;
    background: #fff;
}

.img-chat{
    margin-bottom: 0px !important;
}

.form-contact{
    color: #005447;
    padding-left: 40px;
    margin-bottom: 0px !important;
}

@media(max-width:412px){
    .header-contacto h1{
        font-size: 2.5rem;
        color: var(--fondo);
        margin-top: 120px;
        margin-left: 25px;
        background-color: rgba(17, 55, 29, 0.6); /* Fondo semitransparente opcional */
        border-radius:10px;
        padding: 0px 20px;
        font-weight: bold;
    }

    .img-chat{
        display: none;
    }

    .form-contact{
        color: #005447;
        padding-left: 20px;
        margin-bottom: 10px !important;
    }

    .chat{
        margin: 10px 10px 30px 20px;        
        width: 90%;

    }

}

