    /* ============================= */
    /* HEADER / NAVBAR */
    /* ============================= */

    header {
    width: 100%;
    position: relative;
    z-index: 1000;
    }

    /* Navbar fixa ao rolar */
    nav {
    position: sticky;
    top: 0;
    background: #ffffff;
    transition: all 0.3s ease;
    }

    /* Linha laranja superior */
    header .h-1 {
    background: linear-gradient(to right, #f97316, #ea580c);
    }

    /* ============================= */
    /* LOGO */
    /* ============================= */

    nav img {
    transition: transform 0.3s ease;
    }

    nav img:hover {
    transform: scale(1.05);
    }

    /* ============================= */
    /* LINKS DO MENU */
    /* ============================= */

    nav a {
    position: relative;
    font-weight: 500;
    }

    /* Efeito underline animado */
    nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background-color: #f97316;
    transition: width 0.3s ease;
    }

    nav a:hover::after {
    width: 100%;
    }

    /* ============================= */
    /* BOTÃO PRINCIPAL */
    /* ============================= */

    nav a.bg-orange-500 {
    background: linear-gradient(135deg, #f97316, #ea580c);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.25);
    transition: all 0.3s ease;
    }

    nav a.bg-orange-500:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.35);
    }

    /* ============================= */
    /* BOTÃO MOBILE */
    /* ============================= */

    nav button {
    font-size: 1.8rem;
    transition: 0.3s ease;
    }

    nav button:hover {
    transform: scale(1.1);
    }
    /* Remove barra feia */


    .bg-orange-500:hover {
    background-color: #f97316; /* laranja mais escuro */
}