/* REUTILIZACIÓN DE ESTILOS BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f4f7f9;
    color: #333;
}

/* HEADER DE CONTACTO (Estilo Hero) */
.contacto-header {
    background: linear-gradient(135deg, #060d16 0%, #0e2a4a 45%, #1E5FA8 100%);
    padding: 80px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Efecto de puntos y brillo similar al slide */
.contacto-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(110,193,228,0.07) 1px, transparent 1px);
    background-size: 28px 28px;
}

.contacto-header .titulo-seccion {
    color: white; /* Cambiado a blanco para resaltar sobre el azul oscuro */
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
    font-size: 2.5rem;
    font-weight: 900;
}

.contacto-header p {
    color: rgba(255,255,255,0.8);
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

/* CONTENEDOR PRINCIPAL */
.contact-wrapper {
    max-width: 1100px;
    margin: -50px auto 60px; /* Sube un poco para entrar en el área del header */
    display: flex;
    gap: 30px;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}

/* COLUMNA DE INFORMACIÓN (Estilo Card) */
.contact-info {
    flex: 1;
    background: #0B1F2E;
    color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.contact-info h2 {
    font-weight: 900;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: #2FA4E7;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item .icon {
    font-size: 1.5rem;
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 8px;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #2FA4E7;
}

.info-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

/* FORMULARIO (Estilo Card Blanca) */
.contact-form {
    flex: 2;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: #0B1F2E;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #1E5FA8;
}

/* BOTÓN (Estilo btn-hero) */
.btn-submit {
    background: #1E5FA8;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: #2FA4E7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        margin-top: 20px;
    }
    
    .contacto-header {
        padding: 60px 5%;
    }
}