/* ===== ESTILOS PROPIOS DE LA PÁGINA DE CONTACTO ===== */
.contact-page {
    padding: 4rem 0;
}
.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}
.contact-header h1 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
.contact-header p {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 40px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
}
.full-width {
    grid-column: span 2;
}

.campo {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.campo label {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}
.campo label i {
    color: var(--accent);
    margin-right: 0.4rem;
}
.campo input,
.campo select,
.campo textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0.9rem 1.2rem;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: 0.2s;
}
.campo input:focus,
.campo select:focus,
.campo textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 195, 255, 0.2);
}
.campo textarea {
    min-height: 120px;
    resize: vertical;
}
.error {
    color: #ff5e7c;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}
.checkbox input {
    width: 20px;
    height: 20px;
    accent-color: var(--accent);
}

.btn-enviar {
    background: var(--accent);
    color: #0a0f14;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 0 20px rgba(0, 195, 255, 0.3);
    width: 100%;
    margin-top: 2rem;
}
.btn-enviar:hover {
    background: white;
    box-shadow: 0 0 30px var(--accent);
}

.success-message {
    background: rgba(0, 200, 100, 0.2);
    border: 1px solid #00c864;
    border-radius: 30px;
    padding: 2rem;
    text-align: center;
    color: #a0ffc0;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.campo-otra {
    display: none;
}
.campo-otra.visible {
    display: flex;
}

@media (max-width: 700px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .full-width {
        grid-column: span 1;
    }
}

/* Estilo para selects del formulario de contacto */
.contact-form select {
    background-color: #1e2a3a;        /* Fondo oscuro como los inputs */
    border: 1px solid #2a3a4a;        /* Borde sutil */
    color: #e0e0e0;                    /* Texto claro */
    padding: 0.8rem 1rem;              /* Mismo padding que los inputs */
    border-radius: 8px;                /* Bordes redondeados */
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    width: 100%;
    appearance: none;                   /* Elimina la flecha nativa del sistema */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300c3ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    cursor: pointer;
}

/* Estilo para las opciones del select (en navegadores que lo soportan) */
.contact-form select option {
    background-color: #1e2a3a;
    color: #e0e0e0;
}

/* Efecto hover y focus */
.contact-form select:hover,
.contact-form select:focus {
    border-color: #00c3ff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 195, 255, 0.2);
}