/* ======================================== */
/* 1. IMPORTAÇÃO DE FONTES (Google Fonts)
/* ======================================== */
/* * Importa as famílias de fontes usadas no site:
 * - Lora: Fonte serifada clássica, usada para títulos e corpo de texto.
 * - Poppins: Fonte sans-serif moderna, usada para UI (menus, botões) e textos miúdos.
 * - MonteCarlo: Fonte cursiva elegante, usada para o logo.
 */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:wght@400;500;600;700&family=MonteCarlo&display=swap');

/* ======================================== */
/* 2. VARIÁVEIS GLOBAIS (:root)
/* ======================================== */
/* * Define variáveis CSS globais para manter a consistência do design,
 * facilitando mudanças futuras na paleta de cores ou tipografia.
 */
:root {
    /* --- Paleta de Cores --- */
    --p1-color1: #5D4037; /* Marrom escuro (textos principais, fundo do rodapé/contato) */
    --p1-color2: #e9c550; /* Dourado (CTAs, links, detalhes) */
    --p1-color3: #faebd7; /* Antique White (fundo dos cards de conteúdo) */
    --p1-color4: #A67B5B; /* Marrom médio (subtítulos internos) */
    --p1-color5: #d5b9b0; /* Rosa queimado claro (fundo principal do body) */
    
    /* --- Mapeamento de Fontes --- */
    --font-primary: 'Lora', serif;           /* Fonte principal (clássica) */
    --font-secondary: 'Poppins', sans-serif; /* Fonte secundária (moderna) */
    --font-display: 'MonteCarlo', cursive;   /* Fonte de destaque (logo) */
}

/* ======================================== */
/* 3. RESET E CONFIGURAÇÕES GLOBAIS
/* ======================================== */
/*
 * Remove estilos padrão do navegador (margens, paddings)
 * e define a fonte principal e o box-sizing para todos os elementos.
 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Define 'Lora' como a fonte padrão para todo o site */
    font-family: var(--font-primary);
}

html {
    scroll-behavior: smooth; /* Rolagem suave ao clicar em links âncora */
    overflow-x: hidden;      /* Evita scroll horizontal */
}

/* ======================================== */
/* 4. CORPO (BODY)
/* ======================================== */
/*
 * Define o fundo principal, cor de texto padrão e altura da linha.
 */
body {
    background-color: var(--p1-color5); /* Fundo bege/amarronzado */
    color: var(--p1-color1);            /* Cor de texto padrão (marrom escuro) */
    line-height: 1.7;                   /* Espaçamento entre linhas para melhor legibilidade */
    padding-top: 70px;                  /* Espaço reservado para o header fixo (mobile) */
    overflow-x: hidden;                 /* Evita scroll horizontal */
    
    /* Melhora a renderização das fontes (anti-aliasing) */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Classe utilitária para travar o scroll (usada pelo menu mobile) */
body.no-scroll {
    overflow: hidden;
}

/* Estilo padrão para links */
a {
    text-decoration: none; /* Remove sublinhado */
    color: inherit;        /* Herda a cor do elemento pai */
}

/* ======================================== */
/* 5. SEÇÕES (SECTION)
/* ======================================== */
/*
 * Define o layout "full-width" para as seções.
 * O padding vertical é aplicado aqui, mas o horizontal fica no .container-wrapper.
 */
section {
    padding: 4rem 0; /* Espaçamento vertical entre as seções */
    
    /* Efeito de fade-in suave ao rolar a página */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

#inicio {
    padding: 0;
}

/* Classe aplicada via JS quando a seção está visível */
section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======================================== */
/* 6. CONTAINER WRAPPER
/* ======================================== */
/*
 * Centraliza o CONTEÚDO dentro das seções "full-width",
 * garantindo que o texto não fique largo demais em telas grandes.
 */
.container-wrapper {
    max-width: 1100px; /* Largura máxima do conteúdo */
    margin: 0 auto;    /* Centraliza o container */
    padding: 0 1.5rem; /* Espaçamento lateral (mobile) */
}

/* ======================================== */
/* 7. CABEÇALHO (HEADER)
/* ======================================== */
/*
 * Barra de navegação fixa no topo.
 */
header {
    background-color: var(--p1-color3); /* Fundo "card" (Antique White) */
    padding: 0.8rem 1.5rem;             /* Espaçamento interno (mobile) */
    display: flex;
    justify-content: space-between;     /* Logo na esquerda, menu na direita */
    align-items: center;
    /* Sombra suave para destacar o header do resto do conteúdo */
    box-shadow: 0 2px 10px rgba(93, 64, 55, 0.08);
    position: fixed; /* Fixo no topo */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;   /* Garante que fique acima de outros elementos */
}

/* ======================================== */
/* 8. LOGO (HEADER)
/* ======================================== */
.logo {
    font-family: var(--font-display); /* Fonte MonteCarlo */
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--p1-color1);
}

/* ======================================== */
/* 9. NAVEGAÇÃO (NAV) E MENU MOBILE
/* ======================================== */

/* --- Ícone "Hambúrguer" (Menu Mobile) --- */
.mobile-menu-toggle {
    display: block; /* Visível apenas no mobile (default) */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001; /* Acima do overlay do menu */
}

/* Estilo das 3 linhas do ícone */
.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--p1-color1);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* --- Animação do Ícone para "X" (quando ativo) --- */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0; /* Linha do meio some */
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* --- Lista de Links da Navegação (Menu Mobile) --- */
nav ul {
    position: fixed; /* Ocupa a tela inteira */
    top: 70px;       /* Abaixo do header */
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--p1-color3); /* Fundo "card" */
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 3rem;
    list-style: none;
    transform: translateX(-100%); /* Escondido fora da tela (esquerda) */
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    display: flex;
    z-index: 999; /* Abaixo do ícone "X" */
}

/* Estilo do menu quando ativo (visível) */
nav ul.active {
    transform: translateX(0);
    opacity: 1;
}

nav ul li {
    margin: 1.5rem 0; /* Espaçamento entre links (mobile) */
}

/* --- Links da Navegação (Geral) --- */
nav ul li a {
    font-family: var(--font-secondary); /* Fonte Poppins (UI) */
    color: var(--p1-color1);
    font-weight: 600;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s;
}

/* Efeito Hover/Ativo (link dourado) */
nav ul li a:hover, 
nav ul li a.active {
    color: var(--p1-color2);
}

/* Sublinhado animado (começa invisível) */
nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--p1-color2);
    transition: width 0.3s ease-out;
}

/* Sublinhado animado (aparece no hover/ativo) */
nav ul li a:hover::after,
nav ul li a.active::after {
    width: 80%;
}

/* ======================================== */
/* 10. TÍTULO DE SEÇÃO (Global)
/* ======================================== */
.section-title {
    font-family: var(--font-primary); /* Fonte Lora */
    font-weight: 700;                 /* Bold */
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--p1-color1);
    position: relative;
    padding-bottom: 1rem;
}

/* Linha dourada abaixo do título */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--p1-color2);
}

/* ======================================== */
/* 11. BOTÃO PRINCIPAL (CTA)
/* ======================================== */
.cta-button {
    font-family: var(--font-secondary); /* Fonte Poppins (UI) */
    background-color: var(--p1-color2); /* Fundo dourado */
    color: var(--p1-color1) !important; /* Texto marrom escuro (importante para sobrescrever 'a') */
    border: none;
    border-radius: 50px; /* Bordas arredondadas */
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(93, 64, 55, 0.2);
    display: inline-block;
    text-align: center;
}

/* Efeito hover do botão (inverte cores) */
.cta-button:hover {
    background-color: var(--p1-color1); /* Fundo marrom escuro */
    color: var(--p1-color2) !important; /* Texto dourado */
    transform: translateY(-3px);        /* Leve elevação */
    box-shadow: 0 6px 20px rgba(93, 64, 55, 0.3);
}

/* ======================================== */
/* 12. SEÇÃO HERO (Mobile)
/* ======================================== */
#inicio {

    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    position: relative;
    width: 100%;
    min-height: auto;
    padding: 0; 
    display: flex;
    flex-direction: column-reverse; 
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: none; 
    color: var(--p1-color1); 
}


.hero::before {
    display: none;
}

/* Posiciona o texto acima do overlay (regra mantida, mas z-index não é mais crucial) */
.hero-text, .hero-image {
    position: relative;
    z-index: 2;
    width: 100%;
}


.hero-text {
    background-color: var(--p1-color3);
    padding: 4rem 1.5rem;
}

/* --- Textos do Hero --- */
.hero-text .hero-name {
    font-family: var(--font-primary);
    font-size: 4.5rem;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--p1-color1); /* MUDANÇA: Cor do texto */
}

.hero-text .hero-subtitle {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--p1-color1); /* MUDANÇA: Cor do texto */
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 700;
    font-style: italic;
}
        
.hero-text .hero-description {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    color: var(--p1-color1); /* MUDANÇA: Cor do texto */
}


.hero-image {
    display: block;
    height: auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ======================================== */
/* 13. SEÇÃO DE CONTEÚDO (Cards)
/* ======================================== */
/* Estilo base para os "cards" brancos (Antique White) */
.content-section {
    background-color: var(--p1-color3); /* Fundo "card" */
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(93, 64, 55, 0.07); /* Sombra suave */
}
        
/* Estilos de texto dentro dos cards */
.content-section p, 
.content-section li {
    margin-bottom: 1rem; /* Espaçamento de parágrafo */
    font-size: 1.1rem;
}

.content-section ul {
    list-style-position: outside;
    padding-left: 1.5rem;
}
        
.content-section ul li {
    padding-left: 0.5rem;
}

/* Subtítulos (h3) dentro dos cards */
.content-section h3 {
    font-family: var(--font-primary); /* Lora */
    font-weight: 700;
    color: var(--p1-color4); /* Marrom médio */
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
        
/* ======================================== */
/* 14. SEÇÃO DE SERVIÇOS
/* ======================================== */
#servicos .services-container {
    display: grid;
    grid-template-columns: 1fr; /* Coluna única (mobile) */
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: var(--p1-color3); /* Fundo "card" */
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--p1-color1); /* Borda de contraste (Marrom) */
    box-shadow: 0 5px 20px rgba(93, 64, 55, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efeito hover para os cards de serviço */
.service-card:hover {
    transform: translateY(-5px); /* Eleva o card */
    box-shadow: 0 8px 25px rgba(93, 64, 55, 0.1);
}

.service-card h3 {
    font-family: var(--font-primary); /* Lora */
    font-weight: 700;
    margin-top: 0;
    font-size: 1.3rem;
}
        
#servicos .cta-container {
    text-align: center;
    margin-top: 3rem;
}

/* ======================================== */
/* 15. SEÇÃO DEPOIMENTOS (Slider)
/* ======================================== */

/* Wrapper relativo para posicionar as setas */
.slider-wrapper {
    position: relative;
    padding: 0 4rem; 
}

/* Container que esconde os slides que não estão à mostra */
.slider-overflow-container {
    overflow: hidden;
}

.depoimentos-carrossel {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0 2rem 0;
    user-select: none;
    transition: transform 0.5s ease-in-out;
}
        
.depoimento-card {
    flex: 0 0 100%; /* Ocupa 100% do container (mobile) */
    
    background: var(--p1-color3);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 16px rgba(93, 64, 55, 0.1);
    border-left: 4px solid var(--p1-color1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}
        
.depoimento-texto {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--p1-color1);
    font-style: italic;
    font-weight: 400;
    flex-grow: 1;
}
        
.depoimento-autor {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--p1-color1);
    margin-top: 1.5rem;
    text-align: right;
    font-size: 1rem;
}
        
.estrelas {
    color: var(--p1-color2);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* --- Estilos das Setas do Slider --- */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: var(--p1-color3); /* Fundo card */
    color: var(--p1-color1); /* Ícone marrom */
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(93, 64, 55, 0.2);
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: var(--p1-color1); /* Inverte cores no hover */
    color: var(--p1-color3);
}

/* Posição das setas */
.slider-arrow.prev {
    left: 0px;
}
.slider-arrow.next {
    right: 0px;
}

/* --- Estilos dos Pontos de Progresso --- */
.slider-dots {
    text-align: center;
    padding: 1rem 0;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--p1-color4); 
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
}

.dot:hover {
    background-color: var(--p1-color3); 
}

.dot.active {
    background-color: var(--p1-color1); 
}


/* ======================================== */
/* 16. SEÇÃO FAQ (Acordeão)
/* ======================================== */
#faq .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--p1-color3);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    border-left: 3px solid var(--p1-color1);
    box-shadow: 0 4px 10px rgba(93, 64, 55, 0.05);
}

.faq-question {
    font-family: var(--font-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
}

/* --- Resposta do FAQ (escondida) --- */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}
        
.faq-answer .answer-content {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}
        
.faq-answer .answer-content ul {
    list-style-position: outside;
    padding-left: 1.5rem;
}
 .faq-answer .answer-content li {
    margin-bottom: 0.5rem;
 }

/* --- Estilos do FAQ (ativo) --- */
.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

#faq .cta-container {
    text-align: center;
    margin-top: 3rem;
}
        
#faq .cta-container p {
    margin-bottom: 1rem;
    color: var(--p1-color1);
}

/* ======================================== */
/* 17. SEÇÃO CONTATO (Removida)
/* ======================================== */
/* Estilos antigos para #contato foram removidos */


/* ======================================== */
/* 18. RODAPÉ (FOOTER) - NOVO DESIGN
/* ======================================== */
/* MUDANÇA: O ID #contato foi movido para o footer */
footer#contato {
    background-color: var(--p1-color1);
    color: #FFFFFF;
    padding-top: 5rem; 
    font-family: var(--font-secondary); /* Poppins em todo o footer */
}

/* Container principal do footer */
.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column; /* Mobile-first: colunas empilhadas */
    gap: 3rem;
}

/* Título das colunas do footer (ex: "Navegação") */
.footer-col h4 {
    font-family: var(--font-primary); /* Lora para o título */
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--p1-color2); /* Dourado */
    margin-bottom: 1.5rem;
}

/* --- Coluna 1: Marca e Contato --- */
#footer-brand .logo {
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    display: inline-block;
}
#footer-brand p {
    font-size: 1rem;
    line-height: 1.6;
    color: #f0f0f0; /* Branco suave */
    max-width: 400px;
    margin-bottom: 1.5rem;
}
#footer-brand .contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}
#footer-brand .contact-info a {
    color: var(--p1-color2);
    transition: color 0.3s;
}
#footer-brand .contact-info a:hover {
    color: #FFFFFF;
}
#footer-brand .cta-button {
    margin-top: 2rem;
}

/* --- Coluna 2: Navegação --- */
#footer-nav ul {
    list-style: none;
}
#footer-nav ul li a {
    display: block;
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: #f0f0f0;
    transition: color 0.3s, transform 0.3s;
}
#footer-nav ul li a:hover {
    color: var(--p1-color2);
    transform: translateX(5px); /* Efeito de hover sutil */
}

/* --- Base do Rodapé (Copyright) --- */
.footer-bottom {
    text-align: center;
    padding: 2rem 1.5rem;
    margin-top: 4rem;
    border-top: 1px solid var(--p1-color4); /* Linha divisória */
    font-size: 0.9rem;
    color: #f0f0f0;
}

.footer-bottom p {
    margin: 0.25rem 0;
}
        
/* ======================================== */
/* 19. MEDIA QUERIES (Responsividade)
/* ======================================== */
        
/* --- Telas Maiores (Tablet - 768px+) --- */
@media (min-width: 768px) {
    body {
        padding-top: 80px;
    }

    header {
        padding: 1rem 2rem;
    }
    
    .mobile-menu-toggle { 
        display: none; 
    }

    /* --- Navegação (Desktop) --- */
    nav ul {
        position: static;
        flex-direction: row;
        height: auto;
        width: auto;
        background-color: transparent;
        transform: translateX(0);
        opacity: 1;
        padding-top: 0;
    }
    
    nav ul li { 
        margin: 0 0 0 1.5rem;
    }
    
    nav ul li a {
        font-size: 1.1rem;
        font-weight: 500;
    }
    
    nav ul li a::after { 
        left: 0; 
        transform: translateX(0); 
    }
    nav ul li a:hover::after, 
    nav ul li a.active::after { 
        width: 100%; 
    }
    
    /* --- Ajustes Gerais (Tablet) --- */
    .section-title {
        font-size: 2.5rem;
    }

    .content-section {
        padding: 3rem;
    }

    .service-card {
        padding: 2.5rem;
    }

    #servicos .services-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .depoimento-card {
        flex-basis: calc(50% - 0.75rem);
    }

    /* --- MUDANÇA: Footer 2 Colunas (Tablet+) --- */
    .footer-container {
        flex-direction: row; /* Lado a lado */
        justify-content: space-between;
        gap: 2rem;
    }
    
    #footer-brand {
        flex-basis: 50%;
    }
    
    #footer-nav {
        flex-basis: 30%;
        min-width: 200px;
    }
}

/* --- Telas Grandes (Desktop - 1024px+) --- */
@media (min-width: 1024px) {
    #inicio {
        padding: 0;
        min-height: auto;
        display: block;
    }

    /* --- Layout Hero (Desktop) --- */
    .hero {
        flex-direction: row; 
        align-items: stretch;
        gap: 0;
        background-color: transparent;
        border-radius: 0;
        padding: 0;
        min-height: calc(100vh - 80px); /* REATIVADO */
        box-shadow: none;
        max-width: none;
        width: 100%;
    }

    /* --- Bloco de Texto (Hero Desktop) --- */
    .hero-text {
        flex: 1.2;
        min-width: 300px;
        transform: translateY(0);
        background-color: var(--p1-color3);
        padding: 4rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-shadow: 0 10px 30px rgba(93, 64, 55, 0.1);
        text-align: left; 
    }
            
    .hero-text .hero-name,
    .hero-text .hero-subtitle,
    .hero-text .hero-description {
        color: var(--p1-color1);
    }

    .hero-text .hero-name {
        font-size: 5.5rem;
        font-style: italic;
    }

    .hero-text .hero-subtitle {
        font-size: 1.6rem;
        font-family: var(--font-primary);
        font-weight: 700;
        font-style: italic;
    }
            
    .hero-text .hero-description {
        font-weight: 400;
    }

    /* --- Bloco de Imagem (Hero Desktop) --- */
    .hero-image {
        display: block;
        flex: 0.8;
        max-width: none;
        aspect-ratio: auto;
        position: relative;
        height: calc(100vh - 80px); /* REATIVADO */
        width: auto; 
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 0;
        transition: none;
        opacity: 1; 
        mask-image: none;
        -webkit-mask-image: none;
    }

    .hero-image:hover img {
        transform: none;
    }
}

/* ======================================== */
/* 20. SCROLLBAR PERSONALIZADA
/* ======================================== */
/*
    width: 10px;
}

/* Fundo da barra */
::-webkit-scrollbar-track {
    background: var(--p1-color1); /* Marrom escuro */
}

/* A "alça" da barra */
::-webkit-scrollbar-thumb {
    background: var(--p1-color2); /* Dourado */
    border-radius: 5px;
}

/* Alça no hover */
::-webkit-scrollbar-thumb:hover {
    background: #FFD700; /* Dourado um pouco mais claro/vivo */
}


