:root {
    --bg-color: #0a0a0a;
    --primary-color: #ffffff;
    --accent-color: #ff3b30;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #b0b0b0;
    --font-outfit: 'Outfit', sans-serif;
    --font-montserrat: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    color: var(--text-main);
    font-family: var(--font-outfit);
    display: flex;
    justify-content: center;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/bg-texture.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* Background elements removed for consistency */

.container {
    width: 100%;
    max-width: 450px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-top: calc(env(safe-area-inset-top, 20px) + 10px);
    animation: fadeInDown 1s ease-out;
}

.back-btn {
    width: 44px;
    height: 44px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.header h1 {
    font-family: var(--font-montserrat);
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(255, 59, 48, 0.5);
    margin: 0;
}

/* FAQ Intro */
.faq-intro {
    text-align: center;
    margin-bottom: 35px;
    animation: fadeInDown 0.8s ease;
}

.faq-intro i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.faq-intro h2 {
    font-family: var(--font-montserrat);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.faq-intro p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    transition: 0.3s;
    cursor: pointer;
    animation: fadeInUp 0.8s ease both;
}

.faq-item:nth-child(1) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.4s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.6s;
}

.faq-item:hover {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-montserrat);
}

.faq-question::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--accent-color);
    background: transparent;
}

/* WhatsApp CTA */
.whatsapp-cta {
    text-align: center;
    background: var(--glass-bg);
    padding: 30px 20px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    animation: fadeIn 1s ease 0.8s both;
}

.whatsapp-cta p {
    margin-bottom: 15px;
    font-weight: 600;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 16px;
    border-radius: 15px;
    text-decoration: none;
    font-family: var(--font-montserrat);
    font-weight: 800;
    font-size: 0.9rem;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #20b858;
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

/* Footer */
.footer {
    margin-top: auto;
    padding-top: 20px;
}

.dev-credits {
    font-size: 0.75rem;
    color: #ffffff;
    /* Cor branca */
    text-align: center;
    margin-top: 20px;
}

.dev-credits span {
    color: #ffffff;
    font-weight: 700;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}