/* ============================================================
   STYLE.CSS — Base & Global Styles
   Clínica Dra. Elenita Luzardo
   ============================================================ */

/* BASE */
body {
    font-family: 'Lato', sans-serif;
    background-color: #FDFBF7;
    color: #292524;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.text-balance {
    text-wrap: balance;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #FDFBF7;
}

::-webkit-scrollbar-thumb {
    background: #DFCAA4;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #C29B5B;
}

/* HIDE SCROLLBAR (carrossel mobile) */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* GOLD GRADIENT TEXT */
.text-gradient-gold {
    background: linear-gradient(135deg, #cdac79 0%, #edc57d 50%, #ffc16a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
