* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }

body { background: #f0f2f5; overflow-x: hidden; }

.header { background: white; padding: 15px 5%; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.header-content { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.logo { color: #008f7a; font-weight: bold; text-decoration: none; font-size: 1.2rem; }
.back-btn { text-decoration: none; color: #888; font-size: 0.9rem; }

/* --- SECCION CONTACTO --- */
.contact-hero { padding: 60px 5%; display: flex; justify-content: center; }

.glass-card {
    display: flex;
    max-width: 1000px;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.side-image { flex: 1; position: relative; min-height: 400px; }
.side-image img { width: 100%; height: 100%; object-fit: cover; }
.img-overlay { position: absolute; bottom: 0; padding: 30px; background: linear-gradient(transparent, rgba(0,0,0,0.7)); color: white; width: 100%; }

.contact-form { flex: 1; padding: 40px; background: white; }
.contact-form h2 { color: #008f7a; margin-bottom: 5px; }
.contact-form p { margin-bottom: 25px; color: #666; font-size: 0.9rem; }

.input-group { margin-bottom: 20px; }
.input-group label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 5px; color: #444; }
.input-group input, .input-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; outline: none; transition: 0.3s; }
.input-group input:focus, .input-group textarea:focus { border-color: #008f7a; box-shadow: 0 0 8px rgba(0, 143, 122, 0.1); }

.btn-send { width: 100%; padding: 15px; background: #008f7a; color: white; border: none; border-radius: 8px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.btn-send:hover { background: #006b5c; transform: translateY(-2px); }

/* --- MAPA FULL --- */
.map-section { width: 100%; margin-top: 50px; }
.map-container { width: 100%; height: 450px; filter: grayscale(0.2); }
.security-info { text-align: center; padding: 20px; background: #f8f9fa; color: #777; font-size: 0.8rem; }
.security-info i { color: #008f7a; margin-right: 5px; }

/* --- RESPONSIVE --- */
@media (max-width: 800px) {
    .glass-card { flex-direction: column; }
    .side-image { min-height: 250px; }
}