/* ===============================
   PÁGINA: SOPORTE (Solo estilos específicos)
   =============================== */

/* Hero Section - Soporte */
.hero {
    padding: 120px 0 60px;
    text-align: center;
    background: rgba(2, 6, 23, 0.4);
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-display);
}

.hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-muted);
}

/* Support Section */
.support {
    padding: 60px 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: 60px;
}

.support-card {
    background: var(--bg-card);
    border-radius: 10px;
    padding: var(--spacing-lg);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition-slow);
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-lg);
}

.support-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 28px;
    color: var(--primary);
}

.support-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: var(--font-display);
}

.support-card p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.support-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-slow);
    display: inline-block;
    text-decoration: none;
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    border-radius: 10px;
    padding: 40px;
    border: 1px solid var(--border-light);
    margin-bottom: 60px;
}

.form-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-display);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--light);
    font-size: 16px;
    transition: all var(--transition-slow);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
    font-family: var(--font-base);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.submit-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-slow);
    font-size: 16px;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* FAQ Preview */
.faq-preview {
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.faq-item {
    background: var(--bg-card);
    border-radius: 8px;
    padding: var(--spacing-md);
    border: 1px solid var(--border-light);
    transition: all var(--transition-slow);
}

.faq-item:hover {
    border-color: var(--border-accent);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.faq-item p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.faq-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color var(--transition-normal);
}

.faq-link:hover {
    text-decoration: underline;
    color: var(--accent);
}

/* Status Section */
.status-section {
    background: var(--bg-card);
    border-radius: 10px;
    padding: var(--spacing-lg);
    border: 1px solid var(--border-light);
    margin-bottom: 60px;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.status-title {
    font-size: 1.5rem;
    font-family: var(--font-display);
}

.status-badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.status-operational {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.status-issues {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.status-outage {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.status-list {
    list-style: none;
}

.status-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
}

.status-item:last-child {
    border-bottom: none;
}

.status-name {
    font-weight: 500;
    display: flex;
    align-items: center;
}

.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 10px;
}

.indicator-operational {
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.indicator-issues {
    background: #f59e0b;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
}

.indicator-outage {
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

/* Responsive específico de Soporte */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .status-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
