/* ==========================================================================
   CONFIGURAÇÃO DE FONTES E CORES OFICIAIS DOUBLE S TECH
   ========================================================================== */

body {
    font-family: 'Arimo', 'Inter', sans-serif !important;
    background-color: #F4ECE1 !important; 
    color: #472415 !important;           
}

.font-title, h1, h2, h3 {
    font-family: 'Tenor Sans', serif !important;
}

.text-brand-ink { color: #472415 !important; }
.text-brand-accent { color: #BF9055 !important; }
.text-brand-muted { color: #767457 !important; }

.bg-brand-surface { background-color: #F4ECE1 !important; }
.bg-brand-ink { background-color: #472415 !important; }
.bg-brand-accent { background-color: #BF9055 !important; }

.bg-brand-accent:hover {
    background-color: #A67B46 !important;
}

input:focus, textarea:focus {
    border-color: #BF9055 !important;
    box-shadow: 0 0 0 2px rgba(191, 144, 85, 0.2) !important;
}

::-moz-selection { background: rgba(191, 144, 85, 0.2); color: #472415; }
::selection { background: rgba(191, 144, 85, 0.2); color: #472415; }

/* Transições Suaves para o FAQ Accordion */
.faq-content {
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out;
}

/* ==========================================================================
   SUPORTE PARA O CATÁLOGO DE PORTFÓLIO HORIZONTAL
   ========================================================================== */

/* Esconde a barra de rolagem padrão feia no Chrome/Safari/Firefox mas mantém a função ativa */
.scrollbar-thin::-webkit-scrollbar {
    height: 6px;
}

.scrollbar-thin::-webkit-scrollbar-track {
    background: rgba(71, 36, 21, 0.05); /* Um marrom bem clarinho de fundo */
    border-radius: 4px;
}

.scrollbar-thin::-webkit-scrollbar-thumb {
    background: #BF9055; /* Cor Âmbar da sua marca */
    border-radius: 4px;
}

.scrollbar-thin::-webkit-scrollbar-thumb:hover {
    background: #A67B46;
}