/* Estilos para la página de contacto */
.contacto-page {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 120px 20px 40px;
    min-height: 100vh;
}

.contacto-page h1 {
    margin-bottom: 24px;
    color: #0A2E6D;
}

.contacto-container {
    display: block;
    width: 100%;
}

.formulario-contacto {
    width: 100%;
}

.formulario-contacto {
    width: 100%;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 2rem;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section h2 {
    margin-bottom: 1rem;
    color: #0A2E6D;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #0A2E6D;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 0.9rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group small {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.8rem;
    color: #666;
}

.informacion-contacto {
    width: 100%;
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.2rem;
    color: #2A5CAA;
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

.info-item p {
    margin: 0;
}

.info-item a {
    color: #2A5CAA;
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.mensaje-exito {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.mensaje-error {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.mensaje-error ul {
    margin: 0;
    padding-left: 1.5rem;
}

button,
input[type="submit"],
.btn-enviar {
    display: inline-block;
    background: #0A2E6D;
    color: white;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

button:hover,
input[type="submit"]:hover,
.btn-enviar:hover {
    background: #1a4a9e;
}