/* ====== CONTACTO – ESTILO GLASS ====== */

.contacto-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contacto-header {
    text-align: center;
    margin-bottom: 40px;
}

.contacto-header h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.contacto-header p {
    color: #ccc;
    font-size: 1.1rem;
}

body.contacto-body {
    background: linear-gradient(135deg, #0d0d0f, #1a1a1f, #2a1b3d);
    background-attachment: fixed;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}
body {
    background: #0d0d0f;
}

/* ====== BOTONES DE CONTACTO RÁPIDO ====== */

.contacto-rapido {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    
}

.contacto-btn {
    flex: 1;
    min-width: 200px;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    transition: 0.25s;
}

.contacto-btn:hover {
    background: rgba(140, 82, 255, 0.4);
    box-shadow: 0 0 12px rgba(140, 82, 255, 0.6);
}

/* ====== FORMULARIO ====== */

.contacto-form {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 40px;
}

.contacto-form label {
    color: #fff;
    margin-top: 15px;
    display: block;
}

.contacto-form input,
.contacto-form textarea {
    box-sizing: border-box;
}

.contacto-form input,
.contacto-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: #fff;
}

.contacto-form textarea {
    height: 140px;
    resize: vertical;
}

.contacto-form button {
    margin-top: 20px;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: #8c52ff;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.25s;
}

.contacto-form button:hover {
    background: #a974ff;
    box-shadow: 0 0 12px rgba(140, 82, 255, 0.6);
}

/* ====== MAPA ====== */

.contacto-mapa {
    margin-bottom: 40px;
}

.contacto-mapa iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 16px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
}

/* ====== INFO ====== */

.contacto-info {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 30px;
    border-radius: 16px;
    color: #fff;
}

.contacto-info h3 {
    margin-bottom: 10px;
}

.contacto-info p {
    margin: 5px 0;
    color: #ddd;
}

/* Botón Volver */
.btn-volver {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    width: auto;
    background: #4361ee;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 20px;
    transition: 0.3s ease;
}
.btn-volver:hover {
    background: #3a0ca3;
    transform: translateY(-2px);
}