/* Support Page Styles */

.hero-support {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f3a 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 102, 255, 0.1) 0%, transparent 50%);
}

.hero-support .container {
    position: relative;
    z-index: 1;
}

.hero-support h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00e5ff 0%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-support > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
}

.support-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00e5ff;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Support Content */
.support-content {
    padding: 80px 0;
    background: #0a0e1a;
}

.support-contact {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 229, 255, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    margin-bottom: 4rem;
}

.support-contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.support-contact p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.support-phone {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00e5ff;
    text-decoration: none;
    padding: 1rem 2rem;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 50px;
    border: 2px solid #00e5ff;
    transition: all 0.3s ease;
}

.support-phone:hover {
    background: #00e5ff;
    color: #0a0e1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 229, 255, 0.3);
}

/* FAQ Container */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section {
    margin-bottom: 4rem;
}

.faq-section > h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #00e5ff;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 229, 255, 0.2);
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 229, 255, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #00e5ff;
}

.faq-icon {
    font-size: 1.5rem;
    color: #00e5ff;
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 5000px;
    padding: 0 2rem 2rem;
}

.faq-answer h3 {
    font-size: 1.3rem;
    color: #00e5ff;
    margin: 1.5rem 0 1rem;
}

.faq-answer h4 {
    font-size: 1.1rem;
    color: #fff;
    margin: 1.2rem 0 0.8rem;
}

.faq-answer ul {
    margin: 1rem 0 1rem 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.faq-answer li strong {
    color: #fff;
}

.faq-answer ol {
    margin: 1rem 0 1rem 1.5rem;
}

.faq-answer ol li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.faq-answer p {
    margin-bottom: 1rem;
}

/* Special Notes */
.product-tagline {
    font-style: italic;
    color: #00e5ff !important;
    font-weight: 500;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 229, 255, 0.2);
}

.tech-note {
    background: rgba(0, 102, 255, 0.1);
    border-left: 3px solid #0066ff;
    padding: 1rem;
    margin: 1rem 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.info-note {
    background: rgba(0, 229, 255, 0.1);
    border-left: 3px solid #00e5ff;
    padding: 1rem;
    margin: 1rem 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.warning-note {
    background: rgba(255, 69, 58, 0.1);
    border-left: 3px solid #ff453a;
    padding: 1rem;
    margin: 1rem 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   TEMA CLARO - Support Page
   ============================================ */

/* Hero Support - Tema Claro */
[data-theme="light"] .hero-support {
    background: linear-gradient(135deg, #f5f7fa 0%, #e0e7f0 100%);
}

[data-theme="light"] .hero-support::before {
    background: radial-gradient(circle at 50% 0%, rgba(0, 82, 204, 0.08) 0%, transparent 50%);
}

[data-theme="light"] .hero-support h1 {
    background: linear-gradient(135deg, #0066cc 0%, #0052cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .hero-support p {
    color: rgba(26, 31, 54, 0.7) !important;
}

/* Stats - Tema Claro */
[data-theme="light"] .stat-number {
    color: #0052cc;
}

[data-theme="light"] .stat-label {
    color: rgba(26, 31, 54, 0.6);
}

/* Support Content - Tema Claro */
[data-theme="light"] .support-content {
    background: #ffffff;
}

/* Support Contact - Tema Claro */
[data-theme="light"] .support-contact {
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.08) 0%, rgba(0, 102, 204, 0.05) 100%);
    border: 1px solid rgba(0, 82, 204, 0.2);
}

[data-theme="light"] .support-contact h2 {
    color: #1a1f36;
}

[data-theme="light"] .support-contact p {
    color: rgba(26, 31, 54, 0.8);
}

[data-theme="light"] .support-phone {
    color: #0052cc;
    background: rgba(0, 82, 204, 0.08);
    border-color: #0052cc;
}

[data-theme="light"] .support-phone:hover {
    background: #0052cc;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 82, 204, 0.25);
}

/* FAQ Section - Tema Claro */
[data-theme="light"] .faq-section > h2 {
    color: #0052cc;
    border-bottom-color: rgba(0, 82, 204, 0.2);
}

/* FAQ Items - Tema Claro */
[data-theme="light"] .faq-item {
    background: rgba(0, 82, 204, 0.03);
    border-color: rgba(0, 82, 204, 0.1);
}

[data-theme="light"] .faq-item:hover {
    border-color: rgba(0, 82, 204, 0.3);
    background: rgba(0, 82, 204, 0.05);
}

/* FAQ Question - Tema Claro */
[data-theme="light"] .faq-question {
    color: #1a1f36;
}

[data-theme="light"] .faq-question:hover {
    color: #0052cc;
}

[data-theme="light"] .faq-icon {
    color: #0052cc;
}

/* FAQ Answer - Tema Claro */
[data-theme="light"] .faq-answer {
    color: rgba(26, 31, 54, 0.9);
}

[data-theme="light"] .faq-answer h3 {
    color: #0052cc;
}

[data-theme="light"] .faq-answer h4 {
    color: #1a1f36;
}

[data-theme="light"] .faq-answer li {
    color: rgba(26, 31, 54, 0.8);
}

[data-theme="light"] .faq-answer li strong {
    color: #1a1f36;
}

[data-theme="light"] .faq-answer ol li {
    color: rgba(26, 31, 54, 0.8);
}

[data-theme="light"] .faq-answer p {
    color: rgba(26, 31, 54, 0.9);
}

/* Special Notes - Tema Claro */
[data-theme="light"] .product-tagline {
    color: #0052cc !important;
    border-top-color: rgba(0, 82, 204, 0.2);
}

[data-theme="light"] .tech-note {
    background: rgba(0, 82, 204, 0.08);
    border-left-color: #0052cc;
    color: rgba(26, 31, 54, 0.8);
}

[data-theme="light"] .info-note {
    background: rgba(0, 102, 204, 0.08);
    border-left-color: #0066cc;
    color: rgba(26, 31, 54, 0.9);
}

[data-theme="light"] .warning-note {
    background: rgba(255, 69, 58, 0.08);
    border-left-color: #ff453a;
    color: rgba(26, 31, 54, 0.9);
}

.privacy-note {
    background: rgba(48, 209, 88, 0.1);
    border-left: 3px solid #30d158;
    padding: 1rem;
    margin: 1rem 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.security-badge {
    background: rgba(48, 209, 88, 0.1);
    border: 1px solid #30d158;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.stat-highlight {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00e5ff;
    text-align: center;
    padding: 1rem;
    margin: 1rem 0;
}

/* Threshold Options */
.threshold-option {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.threshold-option h4 {
    color: #00e5ff;
    margin-bottom: 0.5rem;
}

.threshold-option p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

/* Age Restrictions */
.age-restrictions {
    display: grid;
    gap: 1rem;
    margin: 1rem 0;
}

.age-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem 1.5rem;
}

.age-item strong {
    color: #fff;
}

.age-item span {
    color: #00e5ff;
    font-weight: 600;
}

/* Certifications Grid */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.cert-item {
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cert-item strong {
    color: #00e5ff;
    font-size: 1.2rem;
    font-weight: 700;
}

.cert-item span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Bottom CTA */
.support-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 229, 255, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    margin-top: 4rem;
}

.support-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.support-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-support {
        padding: 80px 0 60px;
    }

    .hero-support h1 {
        font-size: 2.5rem;
    }

    .support-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .support-contact {
        padding: 2rem 1.5rem;
    }

    .support-phone {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }

    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .support-cta h2 {
        font-size: 2rem;
    }

    .support-cta p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}
