/* --- SECCIÓN CONTACTO PREMIUM --- */
.contacto-seccion-premium {
    padding: 80px 0;
    background-color: #fdfdfd;
    display: flex;
    justify-content: center;
}

.contacto-layout-container {
    display: flex; /* Esto pone los elementos uno al lado del otro */
    width: 90%;
    max-width: 1200px;
    gap: 40px;
    align-items: center; /* Centra verticalmente el mapa y la info */
}
/* --- COLUMNA MAPA --- */
.columna-mapa {
    flex: 1.2; /* El mapa es un poco más ancho */
}s

.mapa-card {
    background: white;
    padding: 15px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 4px; /* Bordes más rectos = más profesional/serio */
}

.mapa-card iframe {
    display: block;
    border-radius: 2px;
}

.mapa-caption {
    font-family: 'Monserrat', sans-serif;
    margin-top: 15px;
    text-align: center;
    font-size: 15px;
    color: #000000;
}

/* --- COLUMNA INFO (ESTILO VINTAGE/MODERNO) --- */
.columna-info {
    flex: 0.8;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
}

.columna-info {
    flex: 0.8; /* La info es un poco más estrecha */
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.info-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.info-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    color: #358cff;
    font-weight: 800;
}

.decor-star {
    color: #1a73e8;
    font-size: 18px;
}

.info-group {
    margin-bottom: 30px;
}

.info-label {
     font-family: 'Poppins', sans-serif;
    display: block;
    font-size: 25px;
    color: #358cff;
    font-weight: 500;
    margin-bottom: 8px;
}

.info-value {
    font-family: 'Monserrat', sans-serif;
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    transition: 0.3s;
}

.info-value:hover {
    color: #333;
}

.info-footer {
    margin-top: 20px;
}

.divider-line {
    height: 1px;
    background: #eee;
    width: 60%;
    margin: 20px auto;
}

.info-footer p {
    font-size: 25px;
    color: #358cff;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.info-footer span {
    font-family: 'Monserrat', sans-serif;
    font-size: 16px;
    color: #000000;
}

/* --- RESPONSIVIDAD --- */
@media (max-width: 992px) {
   .contacto-layout-container {
        flex-direction: column; /* Mapa arriba, Info abajo en móviles */
    }
    
    .columna-mapa, .columna-info {
        width: 100%;
    }
    
    .contacto-seccion-premium {
        padding: 40px 0;
    }
}