.CuadAviPriv{
float: left;
width: 100%;
max-width: 1200px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
background-color: #fff;
padding: 20px;
margin: 10px;
text-align: justify;
}

.ImagenPubVM img{
    float: left;
    width: 100%;
    max-width: 1200px;
}

.CajaContactoVM{
    width: 100%;
    max-width: 1200px;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* centra horizontalmente */
    align-items: center;
}

.redcontactVM{
text-decoration: none;}

.redcontactVM:hover{
    color:#921E30;}

.ContactoVM{
float: left;
width: 450px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
background-color: #fff;
padding: 20px;
margin: 10px;
}

.ContactoVM-Datos a{
    color: #424949;
    font-size: 16px;
}

.form-container {
    float: left;
    width: 300px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    margin: 10px;
}

.form-container a{
    color: #424949;
    font-size: 17px;
}

label {
    display: block;
    margin: 3px 0 3px;
    color: #424949;
    font-size: 15px;
}

input, textarea {
    width: 100%;
    padding: 4px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #2853c8;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}

button:hover {
    background-color: #2346a5;
}

/* Mensajes de error */
.error-message {
    color: red;
    font-size: 12px;
    display: none; /* Inicialmente oculto */
}

/* Mensaje de respuesta (Enviado o Error) */
.response-message {
    font-size: 14px;
    color: green;
    margin-left: 10px;
    display: none;
}

.response-message.error {
    color: red;
}

.BotonWhats{
    width: 100%;
    padding: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

.BotonWhats:hover{
    background-color: #218838;
    }