/* ==========================================
   BASE CSS - SoloTurnos Landing
   Tipografías, resets y utilidades base
   ========================================== */

/* Tipografías base */
body { 
    font-family: 'Inter', sans-serif; 
    background-color: #ffffff; 
    overflow-x: hidden; 
}

h1, h2, h3, h4, h5, h6 { 
    font-family: 'Poppins', sans-serif; 
}

/* Scrollbar oculto */
.scrollbar-hide::-webkit-scrollbar { 
    display: none; 
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Selection color */
::selection {
    background-color: rgba(59, 130, 246, 0.2);
    color: #0f172a;
}
