/* 1. VARIÁVEIS E RESET GLOBAL */
:root {
    --bg-color: #0F0F0F; /* Preto/Grafite escuro */
    --card-color: #1A1A1A; /* Cor de cartão levemente mais clara */
    --text-color: #F0F0F0; /* Texto principal (branco suave) */
    --text-faded: #888;   /* Texto secundário (cinza) */
    --primary-color: #8A2BE2; /* Roxo (pode ajustar para o seu logo) */
    --primary-hover: #9F4BFF;

    /* Gradientes */
    --gradient-1-start: #1A0F2B;
    --gradient-1-end: #0F0F0F;
    --gradient-2-start: #0F0F0F;
    --gradient-2-end: #1A0F2B; /* Invertendo ou variando um pouco */

    /* Cores alternativas para seções */
    --section-alt-bg: #151515;

    /* Tipografia */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --nav-width-desktop: 300px; /* Largura do menu flutuante */
    --nav-padding-desktop: 40px; /* Espaçamento do menu para as bordas */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden; /* Previne scroll horizontal */
}

/* 2. TIPOGRAFIA (FONTES GRANDES) */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 10vw, 5.5rem); /* Fonte gigante e responsiva */
}

h2 {
    font-size: clamp(2rem, 8vw, 3.5rem);
}

h3 {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-faded);
}

p, li, blockquote {
    font-size: clamp(1rem, 4vw, 1.1rem);
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

.highlight {
    color: var(--primary-color);
}

/* 3. LAYOUT DAS SEÇÕES - REMOVIDO MAX-WIDTH AQUI */
main {
    width: 100%;
    /* No desktop, isso será ajustado para dar espaço ao menu */
}

section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80vh;
    padding: 100px 10%; /* Padding generoso no mobile */
    /* max-width: 1100px; - REMOVIDO */
    /* margin: 0 auto; - REMOVIDO */
}

.nao-precisa-cartao{
   margin-top: 20px;
   color: #ffffff47;
}
/* Novo container para o conteúdo interno das seções */
.section-content {
    margin: 0 auto; /* Centraliza o conteúdo dentro da seção */
    width: 100%; /* Garante que ocupe a largura disponível do padding */
}
.section-content h2{
    text-align: center;
    margin-top: 10px;
}

/* 4. BOTÃO CTA (CALL TO ACTION) */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #FFF;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.cta-button.secondary:hover {
    background-color: var(--primary-color);
    color: #FFF;
}

/* 5. NAVEGAÇÃO MOBILE (PADRÃO) - COM BLUR E AJUSTES */
.mobile-nav-toggle {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: transparent;
    border: 0;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.hamburger-icon {
    position: relative;
    width: 30px;
    height: 3px;
    background: var(--text-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}
.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--text-color);
    border-radius: 5px;
    left: 0;
    transition: all 0.3s ease;
}
.hamburger-icon::before { top: -8px; }
.hamburger-icon::after { bottom: -8px; }

/* Animação do 'X' do hamburger */
.mobile-nav-toggle[aria-expanded="true"] .hamburger-icon {
    background: transparent;
}
.mobile-nav-toggle[aria-expanded="true"] .hamburger-icon::before {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-nav-toggle[aria-expanded="true"] .hamburger-icon::after {
    transform: rotate(-45deg) translate(5px, -5px);
}

.sidebar-nav {
    position: fixed;
    top: 0;
    right: -100%; /* Começa fora da tela */
    width: 80%;
    max-width: 400px;
    height: 100vh;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar-nav[data-visible="true"] {
    right: 0; /* Entra na tela */
}

/* Container interno do menu para o blur e background */
.sidebar-nav .nav-blur-bg {
    background: rgba(10, 10, 10, 0.812); /* Fundo semi-transparente */
    backdrop-filter: blur(10px); /* Efeito de desfoque */
    -webkit-backdrop-filter: blur(10px); /* Para compatibilidade Webkit */
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 80px 30px 40px; /* Padding ajustado para o mobile */
    border-left: 1px solid rgba(255,255,255,0.1); /* Borda sutil */
}




.sidebar-nav .nav-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.sidebar-nav .nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-nav .nav-links a {
    color: var(--text-color);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}
.sidebar-nav .nav-links a:hover {
    color: var(--primary-color);
}

.sidebar-nav .nav-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.nav-button {
    text-align: center;
    padding: 0.75rem;
    border-radius: 6px;
    font-family: var(--font-heading);
}
.nav-button.login {
    background: var(--bg-color);
    color: var(--text-color);
}
.nav-button.signup {
    background: var(--primary-color);
    color: #FFF;
}


/* 6. ESTILOS DAS SEÇÕES & CORES/GRADIENTES */

/* Cores e gradientes para as seções */
.section-gradient-1 {
    background: linear-gradient(135deg, var(--gradient-1-start), var(--gradient-1-end));
}

.section-gradient-2 {
    background: linear-gradient(45deg, var(--gradient-2-start), var(--gradient-2-end));
}

.section-dark-alt {
    background-color: var(--section-alt-bg);
}

/* Seção 2: Barreira */
.barrier-section blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    font-size: 1rem;
    color: var(--text-faded);
    font-style: italic;
    max-width: 1100px;
    margin: 30px auto;
}

/* Seção 3: Como Funciona */
.how-it-works-container {
    display: flex;
    flex-direction: column; /* Mobile: empilhado */
    gap: 2rem;
    margin-top: 4rem;
}
.how-it-works-card {
    background: var(--card-color);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #222;
}

/* Seção 4: Planos */
.plans-container {
    display: flex;
    flex-direction: column; /* Mobile: empilhado */
    gap: 2rem;
    margin-top: 4rem;
    align-items: center;
}
.plan-card {
    background: var(--card-color);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
}
.plan-card.highlight {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}
.plan-tag {
    background: var(--primary-color);
    color: #FFF;
    font-family: var(--font-heading);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    align-self: flex-start;
    margin-bottom: 1rem;
}
.plan-card.highlight .plan-tag {
    background: var(--primary-color);
}
.plan-card:not(.highlight) .plan-tag {
    background: var(--text-faded);
}
.plan-card h3 {
    font-size: 2rem;
    color: var(--text-color);
}
.plan-description {
    color: var(--text-faded);
    min-height: 3.5rem; /* Alinha os cards */
}
.plan-card ul {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1; /* Faz os botões alinharem embaixo */
}
.plan-card li {
    margin-bottom: 0.75rem;
}
.faded-note {
    color: var(--text-faded);
    font-style: italic;
    font-size: 0.9rem;
}
.plan-card .cta-button {
    width: 100%;
}

/* Seção 5: Missão */
.mission-section {
    text-align: center;
}
.mission-section p {
    font-size: 1.2rem;
    color: var(--text-faded);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Seção 6: CTA Final */
.cta-section {
    text-align: center;
}
.cta-section .section-content { /* Ajusta o fundo do conteúdo interno */
    background: var(--card-color);
    padding: 50px 30px;
    border-radius: 12px;
}


/* 7. ANIMAÇÕES DE SCROLL */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 8. MEDIA QUERY (DESKTOP) - A MÁGICA DO MENU FLUTUANTE */

@media (min-width: 1024px) {


    .container{
        display: flex;
    }
    /* Esconde o menu hamburger */
    .mobile-nav-toggle {
        display: none;
    }

    /* Menu lateral flutuante no meio */
    .sidebar-nav {
        position: fixed;
        left: var(--nav-padding-desktop); /* Descola da borda */
        top: 50%; /* Centraliza verticalmente */
        transform: translateY(-50%); /* Ajusta para centralização exata */
        right: auto;
        width: var(--nav-width-desktop); /* Largura fixa */
        height: auto; /* Altura adapta ao conteúdo */
        max-height: 90vh; /* Para garantir que não saia da tela */
        border-right: none; /* Remove borda */
        z-index: 999;
        min-width: 300px;
        border-radius: 40px;
        /* Remove o padding direto do nav para o nav-blur-bg cuidar */
        padding: 0; 
        overflow-y: auto; /* Se o menu for muito grande, permite scroll */
        transition: none; /* Remove transição de slide */
    }

    /* O fundo com blur do menu lateral flutuante */
    .sidebar-nav .nav-blur-bg {
        border-radius: 30px; /* Bordas arredondadas */
        padding: 60px 40px; /* Padding dentro do card flutuante */
        border: 1px solid rgba(255,255,255,0.15); /* Borda mais visível */
        box-shadow: 0 10px 30px rgba(0,0,0,0.3); /* Sombra para dar profundidade */
                       background-color: rgba(0, 0, 0, 0.558);
        backdrop-filter: blur(30px);
        transition: .4s;
    }

    .sidebar-nav.transparent .nav-blur-bg{
         backdrop-filter: blur(0px);
        background-color: transparent;
    }
.sidebar-nav:hover .nav-blur-bg{
                       background-color: rgba(0, 0, 0, 0.558);
        backdrop-filter: blur(30px);
    }


    .sidebar-nav .nav-logo {
        margin-bottom: 2rem;
    }

    .sidebar-nav .nav-links {
        gap: 1.2rem; /* Espaçamento menor no desktop */
        margin-bottom: 2rem; /* Espaço antes do footer */
    }
    .sidebar-nav .nav-links a {
        font-size: 1.1rem; /* Tamanho da fonte menor para os links */
    }



    /* Ajusta o padding das seções no desktop */
    section {
        padding: 100px 5%; /* Mantém um padding horizontal razoável */
                padding-left: calc(var(--nav-width-desktop) + (var(--nav-padding-desktop) * 2) + 30px); /* Largura do menu + 2x padding */

        min-height: 100vh;
    }

    /* Ajusta layouts de grid */
    .how-it-works-container {
        flex-direction: row; /* Lado a lado */
        justify-content: space-between;
    }
    .how-it-works-card {
        flex: 1; /* Ocupa espaço igual */
        max-width: 48%; /* Pequeno espaço entre eles */
    }

    .plans-container {
        flex-direction: row; /* Lado a lado */
        justify-content: center;
        align-items: stretch; /* Faz os cards terem a msm altura */
    }
    .plan-card {
        flex: 1;
        margin: 0 15px; /* Espaçamento entre os cards */
    }
}

/* Acessibilidade: Helper para leitores de tela */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/* Seção DEMO: Mockups de Celular */
.demo-section {
    background: var(--bg-color);
    min-height: auto;
    padding: 80px 5%;
}

.demo-container {
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
    align-items: center;
}

.demo-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 40px;
    position: relative;
}

/* Fundos coloridos para cada card */
.telegram-demo {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    box-shadow: 0 30px 80px rgba(0, 136, 204, 0.3);
}

.whatsapp-demo {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 30px 80px rgba(37, 211, 102, 0.3);
}

.demo-header {
    text-align: center;
    margin-bottom: 3rem;
}

.demo-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.demo-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

/* Mockup do Celular */
.phone-mockup {
    width: 100%;
    max-width: 360px;
    /* LINHA REMOVIDA/MODIFICADA: height: 700px; */ 
    height: auto; /* Deixa o height ser determinado pelo aspect-ratio ou conteúdo */
    aspect-ratio: 9/19; /* Adiciona uma proporção (9 de largura para 19 de altura) típica de smartphones modernos */
    border-radius: 45px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 12px solid #1a1a1a;
}

/* Notch do iPhone */
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 1000;
}

/* Temas de cor */
.telegram-theme {
    background: #17212b;
}

.whatsapp-theme {
    background: #ece5dd;
}

/* Header do Chat */
.phone-header {
    display: flex;
    align-items: center;
    padding: 50px 16px 12px 16px;
    gap: 12px;
    position: relative;
    z-index: 100;
}

.telegram-theme .phone-header {
    background: #527da3;
}

.whatsapp-theme .phone-header {
    background: #075e54;
}

.back-btn {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    margin-right: 5px;
}

.chat-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.chat-name {
    color: #fff;
    font-weight: 600;
    font-size: 17px;
}

/* Área de Chat */
.phone-chat {
    flex: 1;
    padding: 20px 14px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.telegram-theme .phone-chat {
    background: #0e1621;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.02) 10px,
            rgba(255, 255, 255, 0.02) 20px
        );
}

.whatsapp-theme .phone-chat {
    background: #ece5dd;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0c16.569 0 30 13.431 30 30 0 16.569-13.431 30-30 30C13.431 60 0 46.569 0 30 0 13.431 13.431 0 30 0z' fill='%23d5d0c9' fill-opacity='0.15'/%3E%3C/svg%3E");
}

/* Mensagens */
.message {
    display: flex;
    margin-bottom: 4px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-message {
    justify-content: flex-end;
}

.bot-message {
    justify-content: flex-start;
}

.message-bubble {
    max-width: 78%;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14.5px;
    line-height: 1.5;
    word-wrap: break-word;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Mensagens do Usuário */
.telegram-theme .user-message .message-bubble {
    background: #2b5278;
    color: #fff;
    border-radius: 12px 12px 4px 12px;
}

.whatsapp-theme .user-message .message-bubble {
    background: #dcf8c6;
    color: #000;
    border-radius: 8px 8px 0 8px;
}

/* Mensagens do Bot */
.telegram-theme .bot-message .message-bubble {
    background: #182533;
    color: #fff;
    border-radius: 12px 12px 12px 4px;
}

.whatsapp-theme .bot-message .message-bubble {
    background: #fff;
    color: #303030;
    border-radius: 8px 8px 8px 0;
}

.message-bubble strong {
    font-weight: 600;
}

.telegram-theme .message-bubble strong {
    color: #5ca3d9;
}

.whatsapp-theme .message-bubble strong {
    color: #075e54;
}

/* Input de Mensagem */
.phone-input {
    padding: 8px 12px 20px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.telegram-theme .phone-input {
    background: #17212b;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.whatsapp-theme .phone-input {
    background: #f0f0f0;
}

.phone-input span {
    flex: 1;
    padding: 12px 16px;
    border-radius: 24px;
    font-size: 15px;
}

.telegram-theme .phone-input span {
    background: #0e1621;
    color: #707579;
}

.whatsapp-theme .phone-input span {
    background: #fff;
    color: #667781;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Responsivo para Desktop - Demo Section */
@media (min-width: 1024px) {
    .demo-container {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }
    
    .demo-card {
        width: 100%;
    }
    
    .phone-mockup {
        max-width: 380px;
        height: 740px;
    }
}
/* ANIMAÇÕES DAS MENSAGENS */
.msg-animated {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}

/* Só anima quando a seção está ativa (visível) */
.demo-section.demo-active .msg-animated {
    animation: messageSlideIn 0.5s ease forwards;
}

@keyframes messageSlideIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* INDICADOR DE DIGITANDO */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    border-radius: 18px;
    width: fit-content;
    opacity: 0;
}

/* Só anima quando a seção está ativa */
.demo-section.demo-active .typing-indicator {
    animation: messageSlideIn 0.5s ease forwards;
}

.telegram-theme .typing-indicator {
    background: #182533;
}

.whatsapp-theme .typing-indicator {
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.typing-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

/* Só anima quando a seção está ativa */
.demo-section.demo-active .typing-dot {
    animation: typingDot 1.4s infinite ease-in-out;
}

.telegram-typing .typing-dot {
    background: #5ca3d9;
}

.whatsapp-typing .typing-dot {
    background: #8696a0;
}

.typing-dot:nth-child(1) {
    animation-delay: 0s;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Esconder o indicador de digitando após a mensagem aparecer */
.demo-section.demo-active .msg-animated.typing-indicator {
    animation: typingFadeOut 0.5s ease forwards;
    animation-delay: inherit;
}

@keyframes typingFadeOut {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        display: none;
        height: 0;
        padding: 0;
        margin: 0;
    }
}

/* Suavizar o scroll automático */
.phone-chat {
    scroll-behavior: smooth;
}

/* Efeito de pulso nas mensagens importantes */
.demo-section.demo-active .message-bubble strong {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* MENSAGENS COM IMAGEM */
.message-image {
    padding: 4px !important;
    max-width: 85% !important;
    background: transparent !important;
}

.message-image img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    display: block;
    margin-bottom: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.whatsapp-theme .message-image img {
    border-radius: 8px 8px 0 0;
}

.image-caption {
    display: block;
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 0 0 8px 8px;
}

.whatsapp-theme .user-message .image-caption {
    background: #dcf8c6;
    color: #000;
}

.telegram-theme .user-message .image-caption {
    background: #2b5278;
    color: #fff;
}

/* Container da mensagem com imagem */
.whatsapp-theme .user-message .message-image {
    background: #dcf8c6 !important;
    border-radius: 8px;
    overflow: hidden;
    padding: 0 !important;
}

.telegram-theme .user-message .message-image {
    background: #2b5278 !important;
    border-radius: 12px;
    overflow: hidden;
    padding: 0 !important;
}

/* 9. FOOTER */
footer {
    background-color: var(--card-color); /* Cor mais escura que o fundo, como um card */
    padding: 40px 10%;
    border-top: 1px solid #222;
    font-size: 0.95rem;
    color: var(--text-faded);
    text-align: center;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
    margin-bottom: 25px;
}

.footer-links a {
    color: var(--text-color);
    transition: color 0.3s ease;
    font-family: var(--font-heading);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.footer-info {
    margin-top: 20px;
    line-height: 1.5;
}

.footer-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Ajuste no desktop */
@media (min-width: 1024px) {
    footer {
        padding-left: calc(var(--nav-width-desktop) + (var(--nav-padding-desktop) * 2) + 30px); /* Alinha com o conteúdo da seção */
        text-align: left;
    }
    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .footer-links {
        justify-content: flex-end;
        margin-bottom: 0;
    }
    .footer-links li {
        margin-left: 20px;
    }
    .footer-info {
        margin-top: 0;
        text-align: left;
    }
}

.sidebar-nav {
   
        &::-webkit-scrollbar {
            display: none;
            width: 0 !important;
            height: 0 !important;
        }
    }