@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 62,5%;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

#zap-voando {
    position: fixed; /* Fixa o botão na tela */
    bottom: 2rem; /* Distância do fundo */
    right: 2rem; /* Distância da direita */
    padding: 1.2rem 1.5rem;
    border-radius: 100%;
    border: 0;
    background-color: #4CAF50;
    cursor: pointer;
    z-index: 1000;
    transition: .1s ease-in-out;
}

#zap-voando:focus {
    outline: 0;
}

#zap-voando:hover {
    background-color: #3e9643;
}

#zap-voando:active {
    background-color: #338030;
}

#zap-flutuante {
    color: white;
}


.topBar {
    background-color: #9fa0a7;
    width: 100%;
    display: flex;
    justify-content: end;
}

.top-bar {
    color: white;
    padding: .2rem 0;
    margin-right: 10rem;
    text-align: center;
    font-size: .1.5rem;
    transition: all .3s ease-in-out;
    font-size:.9rem;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
}

.top-bar a {
    color: white;
    text-decoration: none;
}

.top-bar span a:hover {
    color: #57aefe;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.top-bar i {
    margin-right: .5rem;
}

.top-bar span {
    margin: 0 1rem;
}

.header {
    z-index: 1000;
    top: 2;
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 6rem;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.301) 0px 0px 4px 0px;
}

.sticky {
    position: fixed;
    top: 0;
    transition: all 0.2s; /* Adicione a transição */
}

.logo img {
    height: 20%;
}

header {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

#btn-mobile {
    display: none;
}

#nav-contato-mobile {
    display: none;
}

#menu {
    display: flex;
    align-items: center;
}

#menu a {
    text-decoration: none;
    color: #333333;
    margin: 0 1.5rem;
    font-size: 1em;
    position: relative;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.home {
    border-bottom: 2px solid #57aefe;
}

.home:hover::after {
    opacity: 0;
}

.home:after {
    opacity: 0;
}

#menu a:hover {
    text-decoration: none;
    color: #57aefe;
}

#menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #57aefe;
    transition: width 0.3s ease-out, left 0.3s ease-out;
}

#menu a:hover::after {
    width: 100%;
}

.dropdown ul {
    display: none;
    position: absolute;
    background-color: #fff;
    list-style: none;
    margin: 0;
    width: 15rem;
    border-radius: .5rem;
    transition: opacity 0.3s;
    opacity: 0;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

/* Mostra o submenu quando o mouse passa sobre o item com a classe dropdown */

.dropdown:hover ul {
    display: block;
    opacity: 1;
}

.dropdown ul li {
    width: 100%;
    padding-bottom: 1rem;
    transform: translate(0, -30%);
}

.dropdown ul li a {
    text-decoration: none;
    color: #333333;
    display: block;
    margin-bottom:.5rem;
    transition: background-color 0.2s ease, color 0.2s ease;
    transition: 0.5s;
}

.dropdown ul li a:hover {
    color: #57aefe;
    transform: translate(2%, 0);
    transition: 0.5s;
}

.dropdown ul li a:hover::after {
    width: 30%;
}

/* ^^^ SUB CATEGORIAS ^^^ */

.contact-button {
    background-color: #ff51ee;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease-out;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

.contact-button a {
    color: white;
}
.contact-button a:hover {
    color: white;
    text-decoration: none;
}

/* Efeito ao passar o mouse no botão */
.contact-button:hover {
    background-color: #57aefe; /* Muda a cor de fundo */
}

article {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

article img {
    width: 100%;
}

/* ----------- RODAPÉ ----------------- */
footer {
    width: 100%;
    height: 30rem;
    background-color: #F3F3F3;
    justify-content: center;
}
.footer-principal {
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.footer-cima {
    width: 100%;
    height: 80%;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-baixo {
    width: 100%;
    height: 20%;
    border-top: #3333332f 1px solid;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-container1 {
    width: 40%;
    height: 95%;
    display: flex;
    justify-content: end;
    flex-direction: column;
}

.footer-container1 img {
    width: 6.5rem;
}

.footer-social {
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.footer-social a {
    color: #ff51ee;
    transition: .4s;
}

.footer-social a:hover {
    color: #57aefe;
    transition: .5s;
}

.footer-social a .bi-facebook {
    width: 2.2rem;
    height: 2.2rem;
}

.footer-social a .bi-instagram {
    width: 2.2rem;
    height: 2.2rem;
}


.footer-container1 p {
    font-family: 'Montserrat', sans-serif;
    font-size: .9rem;
    width: 80%;
    margin: 2rem 0;
    color: #333333;
}

.footer-container2 {
    width: 30%;
    height: 95%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-container2 h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: #333333;
    margin-bottom: 1.5rem;
}

.footer-container2 ul li {
    list-style: none;
    margin-bottom: 1rem;
    width: 50%;
}

.footer-container2 ul li:hover  {
    transform: translate(1.5%, 0%);
    transition: .4s;
}

.footer-container2 ul li a {
    color: #333333;
    font-family: 'Montserrat', sans-serif;
}

.footer-container2 ul li a:hover {
    color: #57aefe;
    text-decoration: 0;
}

.footer-container3 {
    width: 30%;
    height: 95%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-container3 h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: #333333;
    margin-bottom: 2rem;
}

.footer-container3 ul li {
    list-style: none;
    margin-bottom: 1rem;
    width: 20rem;
}


.footer-container3 ul li:hover  {
    transform: translate(1.5%, 0%);
    transition: .4s;
}

.footer-container3 ul li a {
    color: #333333;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}


.footer-container3 ul li a:hover {
    color: #57aefe;
    text-decoration: 0;
}

.footer-baixo p {
    color: #333333ab;
    font-family: 'Montserrat', sans-serif;
}

.i-github {
    color: #808080;
    transition: .3s;
}

.i-github:hover {
    color: #57aefe;
    transition: .3s;
}

.i-github svg {
    width: 1.5rem;
    height: 1.5rem;
}


/*----------------------------------------------------*/




@media  (max-width: 768px){

    body {
        margin: 0;
        font-family: Arial, sans-serif;
    }
        
    .dropdown:hover ul {
        display: none;
    }
        
    .dropdown ul li {
        display: none;
    }
        
    .topBar {
        background-color: #979696;
        width: 100%;
    }
        
    .top-bar {
        display: none;
    }
        
    .header {
        z-index: 1000;
        top: 2;
        position: fixed;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1rem;
        background-color: rgb(255, 255, 255);
        box-shadow: rgba(0, 0, 0, 0.301) 0px 0px 4px 0px;
    }
        
    .sticky {
        position: fixed;
        top: 0;
        display: none;
        transition: all 0.2s; /* Adicione a transição */
    }
        
    .logo img {
        height: 3rem;
        width: 4rem;
    }
        
    header {
        display: flex;
        justify-content: center;
    }
        
    #btn-mobile {
        display: block;
        padding: 0 1rem;
        font-size: 2rem;
        color: #333333;
        background: none;
        border: 0;
    }
        
    #btn-mobile:focus {
        outline: 0;
    }
        
        
    #menu {
        display: flex;
        position: absolute;
        align-items: start;
        justify-content: start;
        flex-direction: column;
        width: 100%;
        top: 70px;
        right: 0;
        background-color: white;
        height: 0;
        transition: .6s;
        z-index: 1000;
        visibility: hidden;
        overflow-y: hidden;
    }
        
    #menu a {
        margin: 1rem 1rem;
        font-size: 1.2rem;
    }
        
    .dropdown {
        margin: 1rem 0;
        font-size: 1.2rem;
    }
        
    #nav.ativo #menu {
        display: flex;
        height: calc(100vh - 70px);
        visibility: visible;
        overflow-y: auto;
    }
        
    #nav-contato-mobile {
        display: block;
    }
        
        
    #contato-link {
        display: none;
    }
        
    
    /* ^^^ SUB CATEGORIAS ^^^ */
    
    .contact-button {
        display: none;
    }
/* ----------- RODAPÉ ----------------- */
footer {
    width: 100%;
    height: 65rem;
    background-color: #F3F3F3;
    justify-content: center;
}
.footer-principal {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.footer-cima {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-baixo {
    width: 90%;
    height: 20%;
    border-top: #3333332f 1px solid;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.footer-container1 {
    width: 90%;
    height: 95%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.footer-container1 img {
    width: 6.5rem;
}

.footer-social {
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: .5rem;
}

.footer-social a {
    color: #ff51ee;
    transition: .1s;
}

.footer-social a:active {
    color: #57aefe;
    transition: .1s;
}

.footer-social a .bi-facebook {
    width: 2.2rem;
    height: 2.2rem;
}

.footer-social a .bi-instagram {
    width: 2.2rem;
    height: 2.2rem;
}


.footer-container1 p {
    font-family: 'Montserrat', sans-serif;
    font-size: .9rem;
    width: 100%;
    text-align: center;
    margin: 2rem 0;
    color: #333333;
}

.footer-container2 {
    width: 90%;
    height: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-container2 h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: #333333;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.footer-container2 ul {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-container2 ul li {
    list-style: none;
    margin-bottom: 1rem;
    text-align: center;
}

.footer-container2 ul li a {
    color: #333333;
    font-family: 'Montserrat', sans-serif;
}

.footer-container2 ul li a:active {
    color: #57aefe;
    text-decoration: 0;
    transition: .1s;
}

.footer-container3 {
    width: 90%;
    height: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-container3 h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: #333333;
    margin-bottom: 2rem;
}

.footer-container3 ul li {
    list-style: none;
    margin-bottom: 1rem;
    text-align: center;
}

.footer-container3 ul li a {
    color: #333333;
    font-family: 'Montserrat', sans-serif;
}

.footer-container3 ul li a:active {
    color: #57aefe;
    text-decoration: 0;
    transition: .1s;
}

.footer-baixo p {
    color: #333333ab;
    margin-top: 1rem;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}





}

@media screen and (min-width: 769px) and (max-width: 1150px) {

    .topBar {
        background-color: #9fa0a7;
        width: 100%;
        display: flex;
        justify-content: end;
    }
    
    .top-bar {
        color: white;
        padding: .2rem 0;
        margin-right: 10rem;
        text-align: center;
        transition: all .3s ease-in-out;
        font-size:.6rem;
        font-weight: 300;
        font-family: 'Montserrat', sans-serif;
    }
    
    .top-bar a {
        color: white;
        text-decoration: none;
    }
    
    .top-bar span a:hover {
        color: #57aefe;
        transition: all 0.3s ease-in-out;
        text-decoration: none;
    }
    
    .top-bar i {
        margin-right: .5rem;
    }
    
    .top-bar span {
        margin: 0 1rem;
    }
    
    .header {
        z-index: 1000;
        top: 2;
        position: fixed;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1rem;
        background-color: rgb(255, 255, 255);
        box-shadow: rgba(0, 0, 0, 0.301) 0px 0px 4px 0px;
    }
    
    .sticky {
        position: fixed;
        top: 0;
        transition: all 0.2s; /* Adicione a transição */
    }
    
    .logo img {
        width: 4rem;
        height: 3rem;
    }
    
    header {
        display: flex;
        justify-content: center;
        gap: 2rem;
    }
    
    #menu a {
        text-decoration: none;
        color: #333333;
        margin: 0 1.5rem;
        font-size: .8em;
        position: relative;
        font-weight: 600;
        font-family: 'Montserrat', sans-serif;
    }

    /* ///////////////////////// */

    
    article {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
    }
    



    /* ----------- RODAPÉ ----------------- */
    footer {
        width: 100%;
        height: 31rem;
        background-color: #F3F3F3;
        justify-content: center;
    }
    .footer-principal {
        width: 80%;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .footer-cima {
        width: 100%;
        height: 80%;
        display: flex;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-baixo {
        width: 100%;
        height: auto;
        border-top: #3333332f 1px solid;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-container1 {
        width: 40%;
        height: 95%;
        display: flex;
        justify-content: end;
        flex-direction: column;
    }
    
    .footer-container1 img {
        width: 6.5rem;
    }
    
    .footer-social {
        width: 100%;
        height: 10%;
        display: flex;
        align-items: center;
        gap: .5rem;
    }
    
    .footer-social a {
        color: #ff51ee;
        transition: .4s;
    }
    
    .footer-social a:hover {
        color: #57aefe;
        transition: .5s;
    }
    
    .footer-social a .bi-facebook {
        width: 2.2rem;
        height: 2.2rem;
    }
    
    .footer-social a .bi-instagram {
        width: 2.2rem;
        height: 2.2rem;
    }
    
    
    .footer-container1 p {
        font-family: 'Montserrat', sans-serif;
        font-size: .9rem;
        width: 80%;
        margin: 2rem 0;
        color: #333333;
    }
    
    .footer-container2 {
        width: 30%;
        height: 95%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .footer-container2 h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.3rem;
        color: #333333;
        margin-bottom: 1.5rem;
    }
    
    .footer-container2 ul li {
        list-style: none;
        margin-bottom: 1rem;
        width: 50%;
    }
    
    .footer-container2 ul li a {
        color: #333333;
        font-family: 'Montserrat', sans-serif;
    }
    
    .footer-container3 {
        width: 30%;
        height: 95%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .footer-container3 h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.3rem;
        color: #333333;
        margin-bottom: 2rem;
    }
    
    .footer-container3 ul li {
        list-style: none;
        margin-bottom: 1rem;
        width: 15rem;
    }

    .footer-baixo p {
        color: #333333ab;
        margin-top: 1rem;
        font-family: 'Montserrat', sans-serif;
    }

}
