/* --- ESTILOS PÁGINA CONTACTO --- */
.contacto-bg {
    background-color: #0b0e14;
    color: #e2e8f0;
    font-family: 'Montserrat', sans-serif;
}

/* 1. HERO */
.contacto-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex; align-items: center; justify-content: center;
    margin-top: -100px; padding-top: 100px;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.5); z-index: 0; }
.hero-overlay-gradient {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to bottom, rgba(11,14,20,0.3), #0b0e14);
}
.hero-content { position: relative; z-index: 2; }
.hero-title { font-size: 3.5rem; color: #fff; font-weight: 800; text-transform: uppercase; margin: 10px 0; }
.hero-desc { color: #a0aec0; font-size: 1.1rem; }
.badge-pill { border: 1px solid var(--color-gold); color: var(--color-gold); padding: 5px 15px; border-radius: 50px; text-transform: uppercase; font-size: 0.7rem; }


/* 2. SPLIT SECTION */
.contact-split-section { padding: 80px 0; }
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Formulario un poco más ancho */
    gap: 4rem;
    align-items: start;
}

/* Columna Info */
.contact-info-col h3 { font-size: 2rem; color: #fff; margin-bottom: 1rem; }
.info-intro { color: #888; margin-bottom: 2.5rem; line-height: 1.6; }

.c-item {
    display: flex; gap: 20px; margin-bottom: 30px;
}
.c-icon {
    width: 50px; height: 50px; background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold); border-radius: 12px;
    display: flex; justify-content: center; align-items: center;
    font-size: 1.5rem; flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.c-item strong { display: block; color: #fff; margin-bottom: 5px; font-size: 1.1rem; }
.c-item p, .c-item a { color: #a0aec0; text-decoration: none; transition: color 0.3s; }
.c-item a:hover { color: var(--color-gold); }

.contact-social span { display: block; color: var(--color-gold); text-transform: uppercase; font-size: 0.8rem; margin-bottom: 10px; font-weight: 700; }
.social-row { display: flex; gap: 20px; }
.s-link { color: #fff; text-decoration: none; border-bottom: 1px solid #333; padding-bottom: 2px; transition: all 0.3s; }
.s-link:hover { color: var(--color-gold); border-color: var(--color-gold); }


/* FORMULARIO PREMIUM */
.contact-form-col {
    background: #151922;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: #ccc; margin-bottom: 8px; font-size: 0.9rem; }

.premium-form input, 
.premium-form select, 
.premium-form textarea {
    width: 100%;
    background: #0b0e14;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s;
}

.premium-form input:focus, 
.premium-form select:focus, 
.premium-form textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

/* Botón Formulario */
.btn-gold-solid {
    display: block; width: 100%; text-align: center; border: none; cursor: pointer;
    background: var(--color-gold); color: #000; padding: 15px; border-radius: 8px;
    font-weight: 700; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px;
    transition: transform 0.3s;
}
.btn-gold-solid:hover { background: #fff; transform: translateY(-2px); }


/* 3. MAPA (EFECTO DARK MODE) */
.map-section {
    height: 450px;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.map-container { width: 100%; height: 100%; }

/* EL TRUCO: Filtros CSS para oscurecer el mapa de Google */
.map-container iframe {
    width: 100%;
    height: 100%;
    filter: invert(90%) hue-rotate(180deg) brightness(0.9) contrast(1.2) saturate(0.3);
    /* 
       invert(90%): Vuelve el mapa blanco a negro.
       hue-rotate: Ajusta los colores invertidos para que el agua sea azulada y no naranja.
       saturate: Baja la intensidad para que se vea elegante.
    */
}

/* Responsive */
@media (max-width: 900px) {
    .contacto-hero {
        margin-top: 0;
        padding-top: 80px;
        height: auto;
        min-height: 40vh;
    }
    .contact-wrapper { grid-template-columns: 1fr; gap: 2rem; }
    .hero-title { font-size: 2rem; }
}