
/* Estilos Base e Customizados */

.stars-bg {
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Ajustes de scroll e foco */
:focus {
    outline: none;
}

::placeholder {
    color: #6b7280;
}

/* Transições Suaves */
#hero-carousel-text {
    transition: opacity 0.5s ease-in-out;
}

/* Custom Selection */
::selection {
    background-color: #ff5a5f;
    color: white;
}
