html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Personalización de la barra de desplazamiento (Scrollbar) */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0B1120;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #D4AF37;
}

/* Color de selección de texto */
::selection {
    background-color: #D4AF37;
    color: #0B1120;
}

/* Animaciones Premium */
.animacion-brillo {
    animation: latido-dorado 2s infinite;
}
@keyframes latido-dorado {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.animacion-flotar {
    animation: flotar 3s ease-in-out infinite;
}
@keyframes flotar {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Prevención de Zoom molesto en iPhone */
@media screen and (max-width: 768px) {
    input, select, textarea {
        font-size: 16px !important;
    }
}