/* ============================================================================
   ESTILOS: PÁGINA DE CONTACTO AXV.ES
   ============================================================================ */

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

@media (max-width: 850px) {
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Panel de Información (Izquierda) */
.contacto-info {
    padding-right: 2rem;
}

.contacto-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contacto-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.bloque-dato {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bloque-dato-icono {
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.bloque-dato-texto h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.2rem;
}

.bloque-dato-texto p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Formulario de Contacto (Derecha) */
.caja-formulario {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

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

.grupo-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.input-axv,
.textarea-axv,
.select-axv {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: #fafafa;
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s ease;
    outline: none;
}

.input-axv:focus,
.textarea-axv:focus,
.select-axv:focus {
    border-color: var(--accent-color);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1);
}

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

.btn-enviar {
    background: var(--accent-color);
    color: #ffffff;
    border: none;
    padding: 1.2rem;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.2s ease;
}

.btn-enviar:hover {
    background: #026aa2;
}

/* Alertas de Estado */
.alerta-mensaje {
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}
.alerta-exito {
    background: #ecfdf5;
    border: 1px solid #10b981;
    color: #047857;
}
.alerta-error {
    background: #fef2f2;
    border: 1px solid #ef4444;
    color: #b91c1c;
}
