*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "DM Sans", sans-serif;
}
html{
    scroll-behavior: smooth;
}
:root{
    --cor_primaria: #00cdac;
    --cor_secundaria: #8ddad5;
    --cor-fundo: #117a9a;
    --cor-fundo-opaco: #0a3342c2;
    --cor-cinza: #ffffff47;
}
body{
    background-color: black;
}
.particula{
    background-color: var(--cor-fundo);
    filter: blur(200px);
    border-radius: 50%;
    width: 20rem;
    height: 20rem;
    display: block;
    position: absolute;
    inset: -8% auto auto -13%;
    z-index: 1;
}
.direita{
    opacity: 0.6;
    filter: blur(180px);
    margin-top: 10rem;
    inset: 0% 0% auto auto;
    z-index: 1;
}
.navegation{
    width: 100%;
    height: 70px;
    padding: 10px 8%;
    background-color: #0c0d0dda;
    backdrop-filter: blur(5px);
    border-bottom: 1px solid var(--cor-cinza);
    box-shadow: 0 9px 20px -10px #000000ad;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo img{
    height: 42px;       
    width: auto;         
    object-fit: contain;
    display: block;
    cursor: pointer;
    transition: .3s ease;
}
.logo img:hover {
    transform: scale(1.04);
    opacity: .9;
}
.hamburger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}
.menu{
    display: flex;
    gap: 40px; 
    height: 100%;
    list-style: none;
    align-self: center;
    align-items: center;
    justify-content: space-between;
}
.menu a{
    position: relative;
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 4px 0;
}
.menu a::after{
    content: '';
    height: 2px;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--cor_primaria), var(--cor_secundaria));
    transition: width 0.5s ease;
}
.menu a:hover::after{
    width: 100%;
}


.galeria-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 5%;          
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    box-sizing: border-box;
}


.galeria {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.img-box {
    width: 100%;
    overflow: hidden;        
    border-radius: 12px;
    transition: box-shadow .4s ease;
    box-sizing: border-box;
    z-index: 99;
}


.galeria img {
    width: 100%;      
    height: auto;           
    border-radius: 12px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.img-box:hover img {
    transform: scale(1.05);
}

.img-box:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}




.footer-container{
    padding: 120px 8%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.links-contatos{
    color: white;
    border: 1px solid var(--cor-cinza);
    border-radius: 999rem;
    flex-direction: row;
    align-items: center;
    display: flex;
    justify-content: space-around;
}
.links-contatos a{
    justify-content: center;
    text-decoration: none;
    color: white;
    align-items: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-weight: 500;
    transition: all .2s;
    display: flex;
    gap: 10px;
    cursor: pointer;
}
.links-contatos a:hover{
    color: var(--cor_primaria);
}
.footer-infos{
    color: white;
    display: flex;
    justify-content: space-between;
}







/* RESPONSIVIDADE */
@media screen and (max-width: 991px) {
       .navegation {
        z-index: 999;
        padding-top: .5rem;
        padding-bottom: .5rem;
        position: fixed;
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        background-color: #0000001a;
        width: 100%;
        height: 70px;
        top: 0;
        left: 0;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo img {
        height: 40px;
    } 
    .direita {
        display: none;
    }
    body {
        padding-top: 70px;
    }
    
}

@media screen and (max-width: 767px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 25px;
        height: 30px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    /* Barras do hamburguer */
    .hamburger span {
        width: 100%;
        height: 3px;
        background: white;
        border-radius: 5px;
        transition: .4s;
    }

    /* Animação quando aberto */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Menu oculto */
    .menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: auto !important;
    background: #0c0d0dde;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--cor-cinza);
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease;
    }

    .menu.open {
        max-height: 300px;
    }

    .menu li {
        padding: 15px 20px;
        text-align: left;
    }

    .menu a {
        display: block;
        width: 100%;
        padding: 10px 0;
        font-size: 1.1rem;
    }

    .navegation {
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        background-color: #0000001a;
        padding: 15px 8%;
        z-index: 999;
        width: 100%;
        position: fixed;
        top: 0;
    }
    .nav_divider{
        display: none;
    }
    .links-contatos{
        border: none;
        flex-direction: column;
        gap: 28px;
        padding-bottom: 60px;
    }
    .links-contatos a{
        border: 1px solid var(--cor-cinza);
        padding: 20px 20px;
        border-radius: 999rem;
    }
    .footer-infos{
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
}

@media screen and (max-width: 479px) {
    .navegation {
    position: sticky;
    }
    body{
        padding-top: 0px;
    }
    .particula {
        filter: blur(140px);
        width: 12rem;
        height: 12rem;
    }
    #email{
        font-size: 10px;
    }
    .galeria-container {
        padding: 60px 5%;
        gap: 18px;
    }

    .galeria {
        gap: 18px;
    }

    .img-box {
        border-radius: 10px;
    }

    .galeria img {
        border-radius: 10px;
    }
}