@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #663399;
    --primary-light: #663399;
    --background: #0d090e;
    --surface: #1e161f;
    --surface-light: #2a1f2b;
    /* Novo tom para o box de dúvidas */
    --text-main: #f1ddee;
    --text-muted: #d8bfd6;
    --outline: rgba(255, 255, 255, 0.08);
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --telegram: #0088cc;
    --whatsapp: #25d366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Header & Menu Hambúrguer */
header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 100;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: #ffffff;
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.8;
}

nav a.active {
    opacity: 1;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 4px;
}

.btn-header {
    background-color: var(--primary);
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Menu Mobile CSS-only */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
}

#menu-checkbox {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(to right, rgba(13, 9, 14, 0.95) 0%, rgba(13, 9, 14, 0.8) 40%, rgba(13, 9, 14, 0) 70%),
        url('imagens/banner-desktop.jpg');
    background-size: cover;
    background-position: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    max-width: 600px;
    text-align: left;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.hero h1 span {
    color: var(--primary-light);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 500px;
}

.cta-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 380px;
}

.btn-hero {
    padding: 16px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 64px;
    gap: 16px;
    text-transform: uppercase;
    border: none;
    height: 56px;
}

.btn-hero svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}


.btn-telegram {
    background-color: var(--telegram);
    color: #ffffff;
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: #ffffff;
}

/* Features Grid */
.features {
    padding: 8rem 0;
    background-color: var(--background);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    padding: 0 2rem;
}

.feature-card {
    background-color: #270944;
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--outline);
}

.card-alerts {
    grid-column: span 2;
}

.card-community {
    background-color: var(--primary-light);
    color: #ffffff !important;
}

.card-community h3,
.card-community p {
    color: #ffffff !important;
}

.card-curation {
    grid-column: span 2;
}

.tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.tag {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
}

.watermark {
    position: absolute;
    bottom: -15px;
    right: -10px;
    opacity: 0.04;
    transform: rotate(-10deg);
}

/* Box de Dúvidas (Clareado) */
.footer-cta {
    text-align: center;
    padding: 6rem 3rem;
    max-width: 900px;
    margin: 4rem auto;
    background-color: #270944;
    border-radius: 32px;
    border: 1px solid var(--outline);
}

.footer-cta h2 {
    margin-bottom: 1rem;
}

.footer-cta p {
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

.btn-help {
    background-color: #ffffff;
    color: #1a101b;
    padding: 1rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

/* Rodapé */
footer {
    border-top: 1px solid var(--outline);
    padding: 4rem 2rem;
    margin-top: 6rem;
}

/* MEDIA QUERIES */
@media (max-width: 850px) {
    header {
        padding: 1rem 1.5rem;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface);
        padding: 2rem;
        flex-direction: column;
        display: none;
        border-bottom: 1px solid var(--outline);
    }

    nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    #menu-checkbox:checked~nav {
        display: flex;
    }

    .btn-header {
        display: none;
    }

    /* Esconde o botão grande no mobile header */

    .hero {
        padding: 1rem 1.5rem 4rem;
        align-items: flex-start;
        text-align: center;
        background: linear-gradient(to bottom, rgba(13, 9, 14, 0.95) 0%, rgba(13, 9, 14, 0.6) 40%, rgba(13, 9, 14, 0) 80%),
            url('imagens/hero-banner-mob.jpg');
        background-size: cover;
        background-position: center bottom;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero h1 {
        font-size: 3.2rem;
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-stack {
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }

    .card-alerts,
    .card-curation {
        grid-column: span 1;
    }

    .feature-card {
        padding: 2.5rem;
    }

    .footer-cta {
        margin: 2rem 1.5rem;
        padding: 4rem 1.5rem;
    }

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

    footer div {
        flex-direction: column;
        gap: 2rem;
        text-align: center !important;
    }
}