/* Estilos customizados que complementam o Tailwind CSS */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animação suave para links de navegação */
nav a {
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #fbbf24; /* yellow-400 */
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Estilo para inputs em foco */
input:focus, textarea:focus {
    border-color: #2563eb; /* blue-600 */
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}
