#fondo-contacto{
    display: none; /* Inicialmente oculta */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro semi-transparente */     
    z-index: 2000;
}

#div-contacto{
    display: block;
    position: absolute;
    background-color: rgb(92, 6, 6);
    background-size: cover;  /* Ajusta la imagen para que cubra todo el div */
    background-position: center; /* Centra la imagen */    
    background-repeat: no-repeat;    
    top:20%;
    left:5%;
    width: 90%;
    height: 50%;  
    border: 2px solid black;
    border-radius: 20px;       
    overflow: hidden;   /* para que se vean las puntas redondeadas*/
    box-shadow: 8px 8px 40px white;
}

#div-barrasuperior-contacto{
    position: absolute;
    display: flex;
    width: 100%;
    height: 8%;
    background-color: black;
    justify-content:right;
    font-family: poppins;
    font-size: 35px;
    color: white;
    text-align: center;
    align-items: center;
}

#div-cruz-contacto{
    display: flex;
    justify-content:right;
    align-items: center;
    padding-right: 10px;
    height: 80%;
}

#cruz-contacto{
    height: 100%;
}


#datos-contacto{
    position: absolute;
    width: 90%;
    height: 100%;
    top:8%;
    left:5%;
    
}

#etiqueta-nombre-contacto{
    display: flex;  
    align-items: center;    
    font-family: poppins;
    font-size: 40px;
    width: 100%;
    height: 10%;
    top:20%;
    color: white;
}

#div-nombre-contacto{
    width: 100%;    
    height: 7%;
}

#nombre-contacto{
    width: 100%;
    height: 100%;
    font-family: poppins;
    font-size: 45px;
    color: black;     
    border: 0px;
    margin: 0px;
    padding: 0px;   
    outline: none; 
    caret-color: black;  /* Asegura que el cursor sea visible */
}

#etiqueta-mensaje-contacto{
    display: flex;
    align-items:center;    
    font-family: poppins;
    font-size: 40px;
    color: white;
    width: 100%;
    height: 10%;
}

#div-mensaje-contacto{
    width: 100%;
    height: 45%;
}

#mensaje-contacto{
    font-family: poppins;
    font-size: 40px;
    color: black;     
    width: 100%;
    height: 100%;
    border: 0px;
    margin: 0px;
    padding: 0px;
    outline: none;
    caret-color: black;  /* Asegura que el cursor sea visible */
}

#div-espacio-contacto{
    width: 100%;
    height: 2%;
}

#boton-enviar-contacto{
    display: flex;
    width: 100%;
    height: 10%;
    font-family: poppins;
    font-size: 45px;
    color: white; 
    background-color: rgba(255, 255, 255, 0.2); 
    justify-content: center;
    align-items: center;
    outline: none;
}

#boton-enviar-contacto:hover{
    box-shadow: 0px 0px 40px white;   
    border: 1px solid black;
}

#estado-contacto{
    display: flex;
    align-items: center;
    font-family: poppins;
    height: 8%;
    font-family: poppins;
    font-size: 35px;
    color: white; 
}
