/* 🔷 Estilo para sección de formulario */
.formulario-mensajes {
    margin-top: 80px;
    text-align: center;
    background: #eaf7fa;
    padding: 40px 20px;
}

.carta-mensajes {
    background: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    position: relative;
}

.icono-sobre {
    font-size: 50px;
    margin-bottom: 10px;
    animation: latido 1.5s infinite;
}

@keyframes latido {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.mensajes label {
    display: block;
    margin-top: 15px;
    text-align: left;
    font-weight: bold;
}

.mensajes input,
.mensajes textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    background-color: #fcfcfc;
}

.mensajes textarea {
    min-height: 120px;
}

.mensajes button {
    margin-top: 20px;
    padding: 12px 30px;
    background: #00b2d8;
    border: none;
    color: white;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.mensajes button:hover {
    background: #008cb0;
}


