/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Delays de animación (no incluidos en Tailwind por defecto) */
.delay-500  { animation-delay: 500ms; }
.delay-700  { animation-delay: 700ms; }
.delay-1000 { animation-delay: 1000ms; }

/* Lucide: los SVG heredan el tamaño del contenedor <i> */
[data-lucide] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
[data-lucide] svg {
    width: 100%;
    height: 100%;
}

/* Inputs: fix del color del texto en algunos navegadores */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: 0 0 0px 1000px #1f2937 inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* Textarea resize deshabilitado */
textarea { resize: vertical; }
