:root {
    --main-color: #f9a40e;
}



.top-menu {
    display: flex;
    align-items: center;
    padding: 0 15px 0 60px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.top-menu .logo {
    margin-right: 30px;
    padding: 4px 0;
    position: relative;
}

.top-menu ul {
    display: flex;
    align-items: center;
}

.top-menu ul li {
    margin-right: 2rem;
    list-style: none;
    position: relative;
}

.top-menu ul li a {
    font-weight: 500;
    position: relative;
    color: #ccc;
    /* cor base, depois o Tailwind aplica as suas utilidades */
    text-decoration: none;
}

.top-menu ul li a.active {
    color: #fff;
}

/* Seta por baixo do link activo */
.top-menu ul li a.active::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-width: 0 7px 8px 7px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
    bottom: -8px;
    left: calc(50% - 6px);
    transform: translateY(100%);
}

/* Botão "Abra sua conta" */
.button-content {
    display: flex;
    margin-left: auto;
    align-items: center;
    justify-content: center;
}

.button-content .btn-register {
    color: #fff;
    padding: 5px 20px;
    font-weight: 700;
    background-color: var(--main-color);
    transition: all 0.5s;
    cursor: pointer;
    text-decoration: none;
}

.button-content .btn-register span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    margin-right: 10px;
    transition: 0.5s;
}

.button-content .btn-register span:after {
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.button-content .btn-register:hover span {
    padding-right: 5px;
}

.button-content .btn-register:hover span:after {
    opacity: 1;
    right: 0;
}

/* =========================
   RESPONSIVIDADE NAVBAR
   ========================= */

/* Até 968px: esconde UL, mostra select */
@media (max-width: 968px) {
    .top-menu ul {
        display: none;
    }

    .menu-select {
        display: block;
        font-size: 13px;
        font-weight: 500;
        background-color: transparent;
        color: var(--main-color);
        border: none;
        cursor: pointer;
    }

    .top-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 60px;
    }
}

/* Até 768px: ajusta padding e botão */
@media (max-width: 768px) {
    .top-menu {
        padding: 0 20px;
    }

    .button-content .btn-register {
        padding: 5px 20px;
        margin-left: 8px;
        font-size: 12px;
    }

    .button-content .btn-register span {
        margin-right: 5px;
        display: none;
    }

    /* Opcional: alterar o ícone no mobile */
    .fa-arrow-right::before {
        content: "\f007";
        /* ícone de utilizador (Font Awesome) */
    }
}

/* A partir de 968px: select do menu some (desktop) */
@media (min-width: 968px) {
    .menu-select {
        display: none;
    }
}

/* =========================
   FOOTER
   ========================= */

footer .footer-area-first {
    padding: 23px 23px;
}

footer .footer-area-first .footer-menu {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 120px;
}

footer .footer-area-first .footer-menu-list h4 {
    color: var(--main-color);
    font-weight: 500;
    margin-bottom: 20px;
}

footer .footer-area-first .footer-menu-list ul {
    color: #fff;
}

footer .footer-area-first .footer-menu-list ul li {
    padding: 2px;
}

footer .footer-area-first .footer-menu-list ul li a:hover {
    color: var(--main-color);
    transition: all ease 0.3s;
}



footer .footer-area-second {
    text-align: center;
    padding: 23px 23px 13px;
}