/* ============================================================
   ESTRUTURA DA HOME
   ============================================================ */

.home-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 50px; /* altura do header */
}

/* CONTEÚDO PRINCIPAL (ajustado para não empurrar do header) */
.main-content {
    flex: 1;
    width: 100%;

    padding-top: 20px;
    padding-right: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
}

/* Espaço fixo para BottomBar */
.main-content::after {
    content: "";
    display: block;
    
    width: 100%;
}

/* ============================================================
   SCROLL GLOBAL - LUX STYLE
   ============================================================ */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 20px;
    border: 3px solid transparent;
    background-clip: content-box;
    transition: 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
    background-clip: content-box;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
}

/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 768px) {

    .main-content {
        padding-top: 15px;
        padding-right: 20px;
        padding-bottom: 30px;
        padding-left: 20px;
    }
}



/* REMOVE BACKGROUND BRANCO DE AUTOFILL */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px var(--navy-panel) inset !important;
    -webkit-text-fill-color: var(--text-white) !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* REMOVE COR DE SELEÇÃO */
::selection {
    background: rgba(197, 160, 89, 0.3);
    color: var(--text-white);
}

.icon-lux {
    font-size: 40px;
    color: var(--gold);
}