/* === Global Styles & Variables === */
:root {
    /* Colors from Image */
    --bg-color: #1A1A1A; /* Very dark grey instead of pure black */
    --text-color-light: #FFFFFF;
    --text-color-secondary: #C0C0C0; /* Lighter grey for inactive menu items */
    --accent-purple: #8A3FFC; /* Vibrant purple from image */
    --accent-yellow: #FFDA6A; /* Sparkles */
    --button-bg: #1C1C1E; /* Button background */
    --button-border: #3A3A3C; /* Button border */
    --floating-card-bg: #FFFFFF;
    --floating-card-text: #1C1C1E;

    /* Typography */
    --font-family: 'Poppins', sans-serif; /* Assuming Poppins, adjust if needed */
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.body-home {
    background-color: #000000;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit; /* Default link color same as text */
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === Header === */
.site-header {
   /*  background-color: var(--bg-color);  Header same bg as body */
    position: fixed; /* Or sticky if preferred */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    /* border-bottom: 1px solid #2a2a2a; */ /* Removed border */
    transition: background-color 0.3s ease;
}

/* Header com background ao fazer scroll */
.site-header.scrolled {
    background-color: rgba(26, 26, 26, 0.95); /* Mesma cor de fundo com transparência */
    backdrop-filter: blur(5px); /* Efeito de blur para maior legibilidade */
    -webkit-backdrop-filter: blur(5px); /* Suporte para Safari */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3); /* Sombra sutil */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo img {
    height: 50px; /* Adjust based on logo */
}

/* .logo-text { font-size: 1.5rem; font-weight: 600; margin-left: 10px; } */

.main-navigation {
    /* Styles for nav element */
}

.menu {
    display: flex;
    align-items: center; /* Align items vertically for separators */
    gap: 25px; /* Adjust spacing based on image */
}

.menu li {
    position: relative; /* Needed for separator positioning */
}

/* Separator Lines */
.menu li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -18px; /* Position between items (adjust with gap) */
    top: 50%;
    transform: translateY(-50%);
    height: 16px; /* Height of the separator */
    width: 1px;
    background-color: var(--accent-purple);
    opacity: 0.6; /* Slightly faded separator */
}

.menu li a {
    font-weight: 700;
    font-size: 20px;
    color: var(--text-color-secondary);
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.menu li a:hover,
.menu li a.active {
    color: var(--text-color-light);
}

/* Underline for active/hover link - Updated */
.menu li a.active::before, /* Using ::before for underline now */
.menu li a:hover::before {
    content: '';
    position: absolute;
    bottom: -8px; /* Adjust vertical position */
    left: 50%; /* Center the underline */
    transform: translateX(-50%);
    width: 60%; /* Adjust width relative to text */
    height: 6px;
    background-color: var(--accent-purple);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Remove the old ::after rule for underline */
/*
.menu li a.active::after,
.menu li a:hover::after {
    content: '';
    position: absolute;
    bottom: -10px; 
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-purple);
    border-radius: 2px;
}
*/

/* Mobile menu button styling (basic) */
#mobile-menu-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    /* Add more styles for appearance */
}

#mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--text-color-light);
    margin: 4px 0;
}

/* === Hero Section === */
.hero-section {
    padding: calc(var(--header-height) + 60px) 0 80px; /* Padding top accounts for fixed header */
    position: relative;
    overflow: hidden; /* Contain floating elements */
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 50px;
    align-items: center;
    background-color: #23232A;
    border-radius: 20px;
}

.hero-content h1 {
    font-size: 3.8rem; /* Large title */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-color-light);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-color-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px; /* Limit text width */
}

.hero-download-buttons {
    display: flex;
    gap: 15px;
}

.btn-store {
    display: flex;
    align-items: center;
    background-color: var(--button-bg);
    color: var(--text-color-light);
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid var(--button-border);
    transition: background-color 0.3s ease, border-color 0.3s ease;
    gap: 10px;
    font-size: 0.9rem;
}

.btn-store:hover {
    background-color: #2c2c2e;
    border-color: #555;
}

.btn-store img {
    height: 24px;
    width: auto;
}

.btn-store span {
    line-height: 1.2;
}

.btn-store span strong {
    display: block; /* Makes "app store" appear below */
    font-size: 1.1em;
    font-weight: 600;
}

.hero-image-wrapper {
    position: relative; /* For positioning floating elements */
    display: flex;
    justify-content: center;
    align-items: center;
    /* Add perspective for 3D effect if desired */
    /* perspective: 1000px; */
}

.hero-app-image {
    max-width: 100%; /* Adjust if needed */
    position: relative;
    z-index: 5;
    /* Example for slight 3D tilt */
    /* transform: rotateY(-5deg) rotateX(2deg); */
    /* filter: drop-shadow(0 15px 25px rgba(0,0,0,0.3)); */
}

/* Floating Elements Styling */
.floating-element {
    position: absolute;
    background-color: var(--floating-card-bg);
    color: var(--floating-card-text);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-weight: 600;
    z-index: 10;
    line-height: 1.3;
}

.floating-element.palpiteiros {
    top: 30%;
    left: -10%; /* Adjust position */
    font-size: 1.1rem;
}

.floating-element.bolao {
    bottom: 25%;
    right: -5%; /* Adjust position */
    font-size: 1.1rem;
}

.floating-element.sparkles {
    /* Style the yellow sparkles - could use a background image or ::before/::after */
    background: none; /* Remove card background */
    box-shadow: none;
    width: 50px;
    height: 50px;
    /* Position near the top-right of the text column, overlapping image */
    top: 10%;
    left: 45%; /* Example position */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 100 100"><path fill="%23FFDA6A" d="M50 0 L61.8 38.2 L100 38.2 L69.1 61.8 L80.9 100 L50 76.4 L19.1 100 L30.9 61.8 L0 38.2 L38.2 38.2 Z" transform="rotate(15 50 50)"/><path fill="%23FFDA6A" d="M50 15 L58 43 L85 43 L63 58 L70 85 L50 68 L30 85 L37 58 L15 43 L42 43 Z" transform="rotate(-25 50 50) scale(0.6)"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    padding: 0;
}

/* === Responsive Styles === */
@media (max-width: 992px) {
    .container {
        max-width: 960px;
    }
    .hero-container {
        grid-template-columns: 1fr; /* Stack columns */
        text-align: center;
        gap: 40px;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
        max-width: 600px;
    }
    .hero-download-buttons {
        justify-content: center;
    }
    .hero-image-wrapper {
        margin-top: 30px;
        order: -1; /* Image comes first on smaller screens */
    }
    .hero-app-image {
         max-width: 80%; /* Adjust image size */
    }
    .floating-element {
        /* Adjust positions or hide on smaller screens */
        font-size: 1rem;
        padding: 10px 15px;
    }
    .floating-element.palpiteiros {
        top: 10%;
        left: 5%;
    }
    .floating-element.bolao {
        bottom: 10%;
        right: 5%;
    }
    .floating-element.sparkles {
        top: 5%;
        left: 70%;
        width: 40px;
        height: 40px;
    }
    .main-navigation {
        display: none; /* Hide desktop nav */
    }
    #mobile-menu-toggle {
        display: block; /* Show mobile menu button */
    }
}

@media (max-width: 576px) {
    html {
        font-size: 15px;
    }
    .hero-section {
        padding-top: calc(var(--header-height) + 30px);
        padding-bottom: 60px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .hero-download-buttons {
        flex-direction: column; /* Stack buttons */
        align-items: center;
        gap: 12px;
    }
    .btn-store {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .hero-app-image {
         max-width: 70%; /* Smaller image */
    }
     .floating-element {
        /* Further adjust or hide */
        display: none; /* Hide floating elements on very small screens */
    }
}

/* === How To Section === */
.how-to-section {
    padding: 80px 0;
    /* background-color: var(--bg-color); Fundo preto/cinza escuro */
    position: relative;
}

/* Adicionando um título visualmente oculto para SEO */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Título principal da seção (pode ser o h2 ou um p estilizado) */
.section-subtitle {
    font-size: 2.5rem; /* Tamanho grande */
    font-weight: 600;
    text-align: center;
    color: var(--text-color-light);
    margin-bottom: 4rem; /* Espaçamento abaixo */
    line-height: 1.3;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Três colunas iguais */
    gap: 30px; /* Espaçamento entre os cards */
    position: relative; /* Para a linha pontilhada */
}

.step-card {
    background-color: #23232A; /* Cor de fundo dos cards */
    border-radius: 16px; /* Bordas arredondadas */
    padding: 40px 30px;
    text-align: center;
    position: relative;
    z-index: 1; /* Card fica na camada base */
}

.step-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--floating-card-bg); /* Fundo branco para o ícone */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem auto; /* Centraliza e adiciona espaço abaixo */
    position: relative; /* Para a linha pontilhada */
    z-index: 3; /* Icon wrapper acima da linha */
}

.step-icon-wrapper img {
    width: 30px; /* Tamanho do ícone */
    height: 30px;
    object-fit: contain;
}

.step-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color-light);
    margin-bottom: 1rem;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-color-secondary);
    line-height: 1.6;
}

/* Linhas Pontilhadas Conectando os Ícones */
.steps-container::before {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(16.66% + 30px); /* Ajustado para começar a partir do primeiro ícone */
    width: calc(33.33% - 30px); /* Largura até o meio (segundo ícone) */
    height: 40px; /* Aumentado para uma curva mais pronunciada */
    border: none;
    background-image: 
        repeating-linear-gradient(90deg, 
        var(--accent-yellow), 
        var(--accent-yellow) 5px, 
        transparent 5px, 
        transparent 10px);
    background-size: 10px 2px;
    background-repeat: repeat-x;
    background-position: center;
    z-index: 2;
    transform: translate3d(0, 0, 0); /* Melhora a performance */
    clip-path: path('M0,0 Q33%,40px 50%,40px T100%,0'); /* Curva mais elegante */
}

/* Segunda curva entre o segundo e terceiro card */
.steps-container::after {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(50% + 30px); /* Começa do segundo ícone */
    width: calc(33.33% - 30px); /* Largura até o terceiro ícone */
    height: 40px; /* Altura aumentada para curva mais pronunciada */
    border: none;
    background-image: 
        repeating-linear-gradient(90deg, 
        var(--accent-yellow), 
        var(--accent-yellow) 5px, 
        transparent 5px, 
        transparent 10px);
    background-size: 10px 2px;
    background-repeat: repeat-x;
    background-position: center;
    z-index: 2;
    transform: translate3d(0, 0, 0);
    clip-path: path('M0,0 Q33%,-40px 50%,-40px T100%,0'); /* Curva mais elegante invertida */
}

/* Adiciona os pontos roxos na linha */
.step-icon-wrapper::before,
.step-icon-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background-color: var(--accent-purple);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 4; /* Pontos roxos acima de tudo */
}

/* Ponto à esquerda do ícone (exceto no primeiro card) */
.step-card:not(:first-child) .step-icon-wrapper::before {
    left: -30px; /* Ajuste conforme o espaçamento e tamanho */
}

/* Ponto à direita do ícone (exceto no último card) */
.step-card:not(:last-child) .step-icon-wrapper::after {
     right: -30px; /* Ajuste conforme o espaçamento e tamanho */
}

/* Esconde os pontos desnecessários no primeiro e último */
.step-card:first-child .step-icon-wrapper::before,
.step-card:last-child .step-icon-wrapper::after {
    display: none;
}

/* Ajustes Responsivos para a Seção "Como Baixar" */
@media (max-width: 992px) {
    .steps-container {
        grid-template-columns: 1fr; /* Empilha os cards */
        gap: 40px; /* Aumenta o espaçamento vertical */
    }

    /* Oculta as linhas pontilhadas curvadas */
    .steps-container::before,
    .steps-container::after {
        display: none;
    }

    .section-subtitle {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 576px) {
    .section-subtitle {
        font-size: 1.8rem;
    }

    .step-card {
        padding: 30px 20px;
    }

    .step-card h4 {
        font-size: 1.15rem;
    }

    .step-card p {
        font-size: 0.9rem;
    }
}

/* === Testimonials Section === */
.testimonials-section {
    padding: 100px 0;
    position: relative;
}

.testimonials-section .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-color-light);
    margin-bottom: 4rem;
    line-height: 1.3;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-carousel {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
}

/* Container de slides */
.testimonial-slides-container {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-card {
    background-color: #23232A;
    border-radius: 20px;
    padding: 60px 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Estilo das aspas decorativas */
.quote-mark {
    position: absolute;
    font-size: 7rem;
    line-height: 1;
    color: var(--accent-purple);
    z-index: 1;
}

.left-quote {
    top: 30px;
    left: 40px;
}

.right-quote {
    bottom: 80px; /* Ajuste para ficar acima dos botões de navegação */
    right: 40px;
}

/* Conteúdo do depoimento */
.testimonial-content {
    position: relative;
    z-index: 2;
    padding: 0 60px;
    text-align: center;
}

.testimonial-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-color-light);
    margin-bottom: 2rem;
    font-weight: 400;
}

.testimonial-content cite {
    display: block;
    font-size: 1.5rem;
    color: var(--text-color-light);
    font-weight: 600;
    font-style: normal;
}

/* Navegação do carousel */
.carousel-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    position: relative;
    z-index: 3;
}

.nav-button {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-color-light);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 6px 10px;
}

.nav-button:hover {
    color: var(--accent-purple);
}

.nav-button.disabled {
    opacity: 0.5;
    cursor: default;
}

.nav-button.disabled:hover {
    color: var(--text-color-light);
}

.prev-button {
    padding-left: 0;
}

.next-button {
    padding-right: 0;
}

.nav-icon {
    font-size: 1.1rem;
    margin: 0 8px;
}

/* Responsividade para a seção de depoimentos */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 40px 20px;
    }
    
    .quote-mark {
        font-size: 5rem;
    }
    
    .left-quote {
        top: 20px;
        left: 20px;
    }
    
    .right-quote {
        bottom: 100px;
        right: 20px;
    }
    
    .testimonial-content {
        padding: 0 30px;
    }
    
    .testimonial-content p {
        font-size: 1.1rem;
    }
    
    .testimonial-content cite {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .testimonials-section .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .quote-mark {
        font-size: 4rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .nav-button {
        font-size: 0.9rem;
    }
}

/* === FAQ Section === */
.faq-section {
    padding: 100px 0;
    position: relative;
}

.section-tag {
    display: block;
    font-size: 1rem;
    color: var(--text-color-secondary);
    text-align: center;
    margin-bottom: 1rem;
}

.faq-section .section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-color-light);
    margin-bottom: 4rem;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 2fr; /* 1/3 para a coluna do personagem, 2/3 para as perguntas */
    gap: 50px;
}

/* Estilo da coluna do personagem */
.faq-character-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.faq-character {
    position: relative;
    margin-bottom: 40px;
}

.character-img {
    max-width: 100%;
    height: auto;
}

.question-mark {
    position: absolute;
    top: -20px;
    right: -10px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-yellow);
    color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
}

.social-links {
    margin-top: auto;
}

.social-links p {
    font-size: 0.9rem;
    color: var(--text-color-secondary);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--accent-purple);
    border-radius: 12px;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #7030e0; /* Versão mais escura do roxo */
    transform: translateY(-3px);
}

/* Estilo dos itens FAQ */
.faq-items-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #23232A;
    border-radius: 16px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color-light);
    margin: 0;
}

.toggle-btn {
    background: none;
    border: none;
    color: var(--accent-purple);
    font-size: 1.8rem;
    font-weight: 500;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px; /* Altura suficiente para o conteúdo */
}

.faq-answer p {
    color: var(--text-color-secondary);
    line-height: 1.6;
    margin-top: 0;
}

/* Responsividade para a seção FAQ */
@media (max-width: 992px) {
    .faq-container {
        grid-template-columns: 1fr; /* Uma coluna em telas menores */
        gap: 30px;
    }
    
    .faq-character-column {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }
    
    .faq-character {
        width: 200px;
        margin-bottom: 0;
    }
    
    .social-links {
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .faq-section .section-title {
        font-size: 2.5rem;
    }
    
    .faq-character-column {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-character {
        width: 150px;
        margin-bottom: 30px;
    }
    
    .social-links {
        text-align: center;
        width: 100%;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
}

/* === Footer === */
.site-footer {
    background-color: #23232A;
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Duas colunas de tamanho igual */
    gap: 50px;
    margin-bottom: 50px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-description {
    color: var(--text-color-secondary);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 400px;
}

.app-download p {
    color: var(--text-color-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.download-links {
    display: flex;
    gap: 15px;
}

.store-link img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.store-link:hover img {
    transform: translateY(-3px);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Duas sub-colunas */
    gap: 30px;
}

.footer-nav h4,
.footer-contact h4 {
    color: var(--text-color-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-nav ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav ul li a,
.footer-contact ul li a {
    color: var(--text-color-secondary);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover,
.footer-contact ul li a:hover {
    color: var(--text-color-light);
}

.copyright {
    background-color: #1f1f25;
    padding: 20px 0;
    text-align: center;
}

.copyright p {
    color: var(--text-color-secondary);
    font-size: 0.9rem;
}

/* Responsividade para o Footer */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-description {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding-top: 40px;
    }
    
    .footer-container {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-nav,
    .footer-contact {
        text-align: center;
    }
    
    .footer-content {
        align-items: center;
        text-align: center;
    }
    
    .download-links,
    .footer-social {
        justify-content: center;
    }
} 