body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #0a0a1a;
    color: white;
    margin: 0;
    padding: 0;
}

/* Navegación */
nav {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}
.logo-text {
    font-size: 1.4rem;
    color: #00ffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 10px #00ffff;
}
.nav-links a {
    color: #00ffff;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}
.nav-links a:hover,
.nav-links .active {
    color: #ff00ff;
}

/* Encabezado */
.contact-header {
    padding-top: 120px;
    text-align: center;
}
.contact-header h1 {
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 15px #00ffff;
}
.contact-header p {
    max-width: 600px;
    margin: auto;
    color: #ccc;
    font-size: 1.1rem;
}

/* Contenedor principal */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 50px 20px;
}

/* Formulario */
.contact-form {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0,255,255,0.2);
    max-width: 400px;
    flex: 1;
}
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #00ffff;
    border-radius: 8px;
    padding: 12px;
    color: white;
    font-size: 1rem;
    transition: 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff00ff;
    box-shadow: 0 0 10px #ff00ff;
    outline: none;
}
.contact-form textarea {
    resize: none;
    height: 120px;
}

/* Botón neon */
.btn-neon {
    background: transparent;
    color: #00ffff;
    border: 2px solid #00ffff;
    padding: 12px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    text-shadow: 0 0 10px #00ffff;
    box-shadow: 0 0 15px #00ffff;
    transition: 0.3s ease-in-out;
}
.btn-neon:hover {
    background: #00ffff;
    color: #0a0a1a;
    box-shadow: 0 0 25px #ff00ff, 0 0 40px #00ffff;
}

/* Mapa */
.map-container {
    flex: 1;
    max-width: 500px;
}
.map-container h2 {
    text-align: center;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
    margin-bottom: 10px;
}
#map {
    height: 300px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,255,255,0.3);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    text-align: center;
    padding: 15px;
}
footer p {
    margin: 5px 0;
}
.icon {
    width: 28px;
    margin: 0 8px;
    transition: transform 0.3s ease;
}
.icon:hover {
    transform: scale(1.2);
}
