@import url('https://fonts.googleapis.com/css2?family=Delius&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Orbitron:wght@400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Orbitron:wght@400..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Orbitron:wght@400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
    padding: 0;
    margin: 0;
}

body {
    padding-top: 8vh;
}

/* Navbar */

/* Navbar Container */
.navigation-header {
    display: flex;
    justify-content: space-around;
    position: relative;

    align-items: center;
    font-family: "bebas neue";
    font-weight: 500;
    background: #ffffff;
    height: 8dvh;

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    z-index: 1000;
    background: #ffffff;

}

.Povo-Fixed {
    display: flex;
    border-radius: 20px;
    width: 100%;
    height: 6vh;
    background: white;
    padding: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);

    transition: all 0.3s ease;
    cursor: default;
}
 /* corrigir
.povo-fixed-image {
    align-self: center;
    margin: 0 45%;
    height: 180px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #b4b1b1;
}

*/
/*Navbar items */
.logo {
    width: 20dvh;
}

.nav-list {
    display: flex;
    list-style: none;

}

.nav-list li {
    letter-spacing: 3px;
    margin-left: 4rem;

}

.nav-button {
    position: relative;

    font-size: 24px;
    color: #034e90;

    text-decoration: none;
    list-style: none;

    white-space: nowrap;
    flex-shrink: 1;

    transition: color 0.2s ease;

}

.nav-button:hover::after {
    width: 100%;
    left: 0;
}

/* animaçao hover linha vermelha */
.nav-button::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;

    width: 0;
    height: 3px;

    background-color: #e41f2a;
    border-radius: 2px;

    transition:
        width 0.25s ease,
        left 0.25s ease;
}

/* Botão link do whatsapp */

.zap-button-header {
    display: flex;
    align-items: center;
    /* centraliza verticalmente */
    justify-content: center;
    /* centraliza horizontalmente */
    gap: 10px;

    /*Margem na Direita do Botão do zap*/
    margin-right: 5em;

    background-color: #034e90;
    color: #ffffff;

    padding: 10px 40px;
    border-radius: 20px;
    background-color: #034e90;
    box-shadow: 0 6px 16px rgba(3, 78, 144, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.zap-button-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(3, 78, 144, 0.35);
}

a, span.zap-button:visited {
    font-family: "bebas neue";
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-decoration: none;
    color: #ffffff;
    text-align: center;
}

.zap-button-header-image {
    width: 20px;
}

.menu-mobile {
    display: none;
}

@media (max-width: 1024px) {

    .navigation-header {
        justify-content: space-between;
        padding: 0 2rem;
    }

    .nav-list li {
        margin-left: 2rem;
        letter-spacing: 2px;
    }

    .nav-button {
        font-size: 20px;
    }

    .zap-button-header {
        padding: 8px 28px;
        margin-right: 0;
    }

    .menu-mobile {
        display: none;
    }
}

@media (max-width: 768px) {

    .navigation-header {
        height: auto;
        padding: 1rem;
    }

    .nav-list li {
        margin-left: 1.5rem;
    }

    .nav-button {
        font-size: 18px;
    }

    /* remove hover (mobile não tem hover real) */
    .nav-button::after {
        display: none;
    }
}

@media (max-width: 600px) {

    .navigation-header {
        justify-content: space-between;
        padding: 1rem;
    }

    .nav-list {
        position: absolute;
        top: 100%;
        right: 0;

        flex-direction: column;
        align-items: center;

        background: #ffffff;
        width: 100%;

        max-height: 0;
        overflow: hidden;

        transition: max-height 0.3s ease;
    }

    .nav-list li {
        margin: 1.5rem 0;
    }

    .nav-list.active {
        max-height: 500px;
    }

    .zap-button-header {
        display: none;
    }

    /* botão hamburguer */
    .menu-mobile {
        display: flex;
        position: relative;

        right: 2rem;
        top: 50%;
        transform: translateY(-20%);

        flex-direction: column;
        gap: 6px;
        cursor: pointer;
    }

    .menu-mobile span {
        width: 26px;
        height: 3px;
        background: #034e90;
        border-radius: 2px;
    }
}

/* footer */

.footer {
    position: relative;
    display: flex;
    height: 20vh;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
    background-color: #022f5e;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #ef4444);
    transition: height 0.3s ease;
}

.footer a {
    color: #ffffff;
    margin-top: 10px;
}

.footer a:hover {
    color: #e41f2a;
}

/* Footer list */
ul.footerlist {
    list-style: none;
    flex-direction: column;
    display: flex;
    align-items: center;
    gap: 16px;

}

ul.footerlist li {
    margin-top: 1rem;
}

/* Icones */
.example-2 {
    row-gap: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
}

.example-2 .icon-content {
    margin: 0 10px;
    position: relative;
}

.example-2 .icon-content .tooltip {
    position: absolute;
    top: 50%;
    right: 110%;

    transform: translateX(10px) translateY(-50);
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;

    white-space: nowrap;
    font-size: 14px;
    transition: all 0.3s ease;
}

.example-2 .icon-content:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.example-2 .icon-content a {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #4d4d4d;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

.example-2 .icon-content a:hover {
    box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}

.example-2 .icon-content a svg {
    position: relative;
    z-index: 1;
    width: 30px;
    height: 30px;
}

.example-2 .icon-content a:hover {
    color: white;
}

.example-2 .icon-content a .filled {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #000;
    transition: all 0.3s ease-in-out;
}

.example-2 .icon-content a:hover .filled {
    height: 100%;
}

.example-2 .icon-content a[data-social="instagram"] .filled,
.example-2 .icon-content a[data-social="instagram"]~.tooltip {
    background: linear-gradient(45deg,
            #405de6,
            #5b51db,
            #b33ab4,
            #c135b4,
            #e1306c,
            #fd1f1f);
}

.example-2 .icon-content a[data-social="whatsapp"] .filled,
.example-2 .icon-content a[data-social="whatsapp"]~.tooltip {
    background-color: #25D366;
}

@media (max-width: 768px) {

    .footer {
        flex-direction: column;
        height: auto;
        /* remove altura fixa */
        padding: 2rem 1rem;
        gap: 2rem;
        text-align: center;
    }

    /* Lista de links */
    ul.footerlist {
        gap: 12px;
    }

    ul.footerlist li {
        margin-top: 0;
    }

    /* Ícones sociais */
    .example-2 {
        flex-direction: row;
        /* ícones lado a lado no mobile */
        column-gap: 1rem;
        row-gap: 0;
    }

    .example-2 .icon-content {
        margin: 0;
    }

    /* Tooltip some no mobile (não faz sentido em touch) */
    .example-2 .icon-content .tooltip {
        display: none;
    }

    /* Ícones um pouco menores */
    .example-2 .icon-content a {
        width: 44px;
        height: 44px;
    }

    .example-2 .icon-content a svg {
        width: 24px;
        height: 24px;
    }
    .povo-fixed-image{
        margin: 0 33%;
    }

}

