/* =======================
   VARIÁVEIS
======================= */
:root {
    --background-color: #F9F9F9;
    --foreground-color: #151320;

    --card-color: #FFFFFF;

    --primary-color: #7430E8;
    --primary-foreground-color: #FFFFFF;

    --secondary-color: #eeedf2;
    --secondary-foreground-color: #201D30;

    --accent-color: #2EB8A5;

    --muted-foreground-color: #6B677E;

    --border-color: #e3e2e9;
}

/* =======================
   RESET
======================= */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    color: var(--foreground-color);
}

/* =======================
   NAVBAR
======================= */
.navbar {
    background-color: var(--card-color);
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

/* CONTAINER */
.nav-container {
    max-width: 1100px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: relative;
}

/* LOGO */
.logo {
    font-weight: 600;
}

/* LINKS */
.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 8px;

    text-decoration: none;
    color: var(--foreground-color);
    padding: 10px 14px;
    border-radius: 8px;
    transition: 0.25s ease;
    font-size: 14px;
    line-height: 1;
}

/* ÍCONES */
.nav-links a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    opacity: 0.8;
    transition: 0.2s ease;
}

/* HOVER */
.nav-links a:hover {
    background-color: var(--accent-color);
    color: white;
}

.nav-links a:hover img {
    opacity: 1;
    transform: scale(1.1);
}

/* LINK ATIVO */
.nav-links a.active {
    background-color: #6B677E;
    color: white;
}

/* BOTÃO HAMBURGUER */
.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

/* =======================
   PERFIL NAVBAR
======================= */

.profile-nav{
    background:rgba(116,48,232,0.08);

    padding:10px 16px;

    border-radius:14px;

    transition:0.3s;

    border:1px solid transparent;
}

.profile-nav:hover{
    background:rgba(116,48,232,0.14);

    border-color:rgba(116,48,232,0.2);

    transform:translateY(-2px);
}

.profile-nav img{
    width:22px;
    height:22px;

    border-radius:50%;

    object-fit:cover;
}




/* =======================
   MOBILE
======================= */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;

        width: 220px;
        flex-direction: column;

        background: var(--card-color);
        padding: 15px;
        border-radius: 12px;

        box-shadow: 0 10px 25px rgba(0,0,0,0.1);

        display: none;
        z-index: 9999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 12px;
    }
}
/* =======================
   HERO
======================= */
.hero {
    display: flex;
    justify-content: center; /* centraliza o bloco */
    align-items: center;
    min-height: 90vh;
    padding: 10px 100px;
}

/* Container */
.hero-content {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* TÍTULO */
.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 68px;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* DESTAQUE PALAVRAS */
.highlight-simple {
    color: #7430E8;
    font-weight: 600;
}

.highlight-interactive {
    color: #2EB8A5;
    font-weight: 600;
}

/* TEXTO */
.hero p {
    font-size: 16px;
    color: var(--muted-foreground-color);
    margin-bottom: 25px;
}

/* BOTÕES */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

/* BOTÃO PRINCIPAL */
.cta-button {
    background-color: var(--primary-color);
    color: var(--primary-foreground-color);
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* BOTÃO SECUNDÁRIO */
.secondary-button {
    background-color: var(--secondary-color);
    color: var(--secondary-foreground-color);
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.secondary-button:hover {
    transform: translateY(-2px);
}

/* =======================
   STATS
======================= */
.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-stats strong {
    font-size: 22px;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-stats span {
    font-size: 13px;
    color: var(--muted-foreground-color);
}


/* =======================
   EXPLORE SECTION
======================= */
.explore-section {
    padding: 100px 20px;
    text-align: center;
}

.explore-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    margin-bottom: 10px;
}

.explore-subtitle {
    color: var(--muted-foreground-color);
    max-width: 600px;
    margin: 0 auto 50px auto;
}

/* GRID CENTRALIZADO */
.explore-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

/* CARD */
.card {
    background: var(--card-color);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ÍCONE */
.icon {
    font-size: 32px;
    margin-bottom: 10px;
}

/* LINK */
.card-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
}

.card-link:hover {
    text-decoration: underline;
}

/* =======================
   ANIMAÇÃO REVEAL
======================= */

/* Estado inicial (escondido) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Quando ativa */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}



/* =======================
   INCLUSION SECTION
======================= */
.inclusion {
    background-color: #F9F9F9;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
}

/* BLOCO ROXO COM FORMATO */
.background-color {
    position: absolute;
    width: 80%;
    max-width: 900px;
    height: 250px;
    background-color: #7430E8;
    border-radius: 20px;
    z-index: 0;
}

/* CONTAINER */
.inclusion {
    position: relative;
}

/* CONTEÚDO CENTRALIZADO */
.inclusion-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    text-align: center;
    color: #FFFFFF;
}

/* TÍTULO */
.inclusion-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    margin-bottom: 15px;
}

/* TEXTO */
.inclusion-content p {
    margin-bottom: 25px;
    opacity: 0.9;
}

/* BOTÃO */
.inclusion .cta-button {
    background-color: #FFFFFF;
    color: #7430E8;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.inclusion .cta-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}


/* =======================
   FOOTER
======================= */
.footer {
    background-color: #F9F9FB;
    padding: 60px 20px 30px;
    border-top: 1px solid var(--border-color);
}

/* CONTAINER */
.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

/* BRAND */
.footer-brand h3 {
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--muted-foreground-color);
    font-size: 14px;
}

/* LINKS */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links h4 {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: var(--muted-foreground-color);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* COMUNIDADE */
.footer-community h4 {
    margin-bottom: 10px;
}

.footer-community p {
    font-size: 14px;
    color: var(--muted-foreground-color);
    margin-bottom: 10px;
}

.community-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.community-link:hover {
    text-decoration: underline;
}

/* PARTE DE BAIXO */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--muted-foreground-color);
}






/* ANIMAÇÃO GLOBAL */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* estado ativo */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =======================
   RESPONSIVO
======================= */
@media (max-width: 768px) {
    .hero {
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

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

    .hero-stats {
        gap: 20px;
    }
}