:root {
    --color-gold-base: #D4AF37;
}

/* Aplicación de dvh para mejor respuesta en todos los dispositivos */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100dvh;
    background-color: #050505;
    color: #ffffff;
    overflow-x: hidden;
}

/* Overlay de ruido */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
}

/* Clases para el Gradiente Dorado Brillante Animado */
.gold-shiny-bg {
    background: linear-gradient(110deg,
            #AA8A29 0%,
            #D4AF37 25%,
            #F9E596 50%,
            #D4AF37 75%,
            #AA8A29 100%);
    background-size: 200% auto;
    color: #000;
    transition: all 0.3s ease;
}

.gold-shiny-bg:hover {
    animation: goldShine 2s linear infinite;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(212, 175, 55, 0.4);
}

.gold-shiny-text {
    background: linear-gradient(110deg,
            #AA8A29 0%,
            #D4AF37 25%,
            #F9E596 50%,
            #D4AF37 75%,
            #AA8A29 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShine 3s linear infinite;
}

@keyframes goldShine {
    to {
        background-position: 200% center;
    }
}

/* Input Styles Customizados */
.input-glass {
    background-color: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.input-glass:focus {
    border-color: var(--color-gold-base);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    outline: none;
}

/* Resplandores de fondo adaptados para pantallas grandes */
.glow-behind-right {
    position: fixed;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.glow-behind-left {
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    top: 10%;
    left: -10%;
    z-index: 0;
    pointer-events: none;
}

/* assets/css/input.css */

/* Seleccionamos el estado de autocompletado */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    /* Mantiene el color del texto en blanco */
    -webkit-text-fill-color: white !important;
    
    /* Reemplaza el fondo blanco con un shadow interno de tu color oscuro */
    -webkit-box-shadow: 0 0 0px 1000px #0a0a0a inset !important;
    
    /* Mantiene la tipografía y el suavizado */
    font-family: 'Outfit', sans-serif !important;
    
    /* Una transición infinita para que el navegador no intente repintar el fondo */
    transition: background-color 5000s ease-in-out 0s;
}

/* Para navegadores que no son Webkit */
input:autofill {
    background-color: #0a0a0a !important;
    color: white !important;
}