/* support_contact.css - Estilos para el modal de soporte técnico */
:root {
    --support-primary: #4f46e5;
    --support-primary-dark: #4338ca;
    --support-primary-light: #818cf8;
    --support-bg: #0f172a;
    --support-surface: #1e293b;
    --support-text: #ffffff;
    --support-text-muted: #cbd5e1;
    --support-error: #ef4444;
    --support-success: #10b981;
    --support-border: rgba(148, 163, 184, 0.2);
}

.support-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.support-modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.support-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 28px;
    max-width: 500px;
    width: 90%;
    padding: 32px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border: 1px solid rgba(79, 70, 229, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(79, 70, 229, 0.2);
}

.support-modal-overlay.visible .support-card {
    transform: translateY(0);
}

.support-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #818cf8, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.support-card .support-subtitle {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.close-support {
    position: absolute;
    top: 20px;
    right: 24px;
    background: rgba(148, 163, 184, 0.1);
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #94a3b8;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.close-support:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    transform: scale(1.05);
}

.support-form-group {
    margin-bottom: 20px;
    text-align: left;
}

.support-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 8px;
}

.support-form-group input,
.support-form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    font-size: 0.9rem;
    color: #ffffff;
    transition: all 0.2s;
    font-family: inherit;
}

.support-form-group input:focus,
.support-form-group textarea:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
    background: rgba(15, 23, 42, 1);
}

.support-form-group input::placeholder,
.support-form-group textarea::placeholder {
    color: #64748b;
}

.support-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.support-phone-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    padding: 0 12px;
    transition: all 0.2s;
}

.support-phone-wrapper:focus-within {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
    background: rgba(15, 23, 42, 1);
}

.support-phone-prefix {
    color: #94a3b8;
    font-weight: 600;
    font-size: 1rem;
}

.support-phone-wrapper input {
    border: none;
    background: transparent;
    padding: 12px 0;
    flex: 1;
}

.support-phone-wrapper input:focus {
    box-shadow: none;
}

.support-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #4f46e5, #4338ca);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.support-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
}

.support-submit-btn:active {
    transform: translateY(0);
}

.support-message {
    margin-top: 16px;
    padding: 10px;
    border-radius: 10px;
    font-size: 0.85rem;
    text-align: center;
}

.support-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.support-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Responsive para móvil */
@media (max-width: 640px) {
    .support-card {
        padding: 24px 20px;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }

    .support-card h3 {
        font-size: 1.4rem;
    }

    .support-form-group input,
    .support-form-group textarea {
        font-size: 1rem;
    }
}