*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#0f0f0f;
    color:white;
}


/* NAVBAR */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:15px 60px;

    position:fixed;
    top:0;
    width:100%;

    background:#111;
    box-shadow:0 3px 10px rgba(0,0,0,0.08);

    background:rgba(0,0,0,0.8);
    backdrop-filter:blur(6px);

    z-index:1000;
}

.logo img{
    height:45px;
}

.nav-links{
    display:flex;
    gap:40px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:white;
    font-weight:600;
    transition:0.3s;
}

.nav-links a:hover{
    color:#ff0055;
    transform:scale(1.1);
}

.menu-icon{
    font-size:22px;
    cursor:pointer;
    display:none;
}



/* HERO */

.hero{
    height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    background-image:
            linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.45)),
            url("img/rostoviradoesquerda.jpg");

    background-size:cover;
    background-position:center;

    color:white;
    padding-top:60px;
}

.hero-logo{
    width:250px;
    margin-bottom:20px;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.7));
}

.hero-content h1{
    font-size:70px;
    margin-bottom:15px;
    letter-spacing:3px;
}

.hero-content p{
    font-size:20px;
    margin-bottom:30px;
}


/* BOTÕES */

.btn{
    display:inline-block;

    background:#ff0055;
    color:white;

    padding:15px 30px;

    border-radius:30px;
    text-decoration:none;

    font-weight:bold;

    transition:0.3s;
}

.btn:hover{
    background:#d90049;
    transform:scale(1.05);
}



/* SOBRE */

.about{
    padding:120px 10%;
    background:#161616;
}

.about-container{
    display:flex;
    align-items:center;
    gap:80px;
}

.about-image img{
    width:350px;
    border-radius:12px;
}

.about-text h2{
    font-size:32px;
    margin-bottom:20px;
}

.about-text p{
    font-size:18px;
    line-height:1.7;
}



/* GALERIA */

.gallery{
    padding:120px 10%;
    text-align:center;
    background:#0f0f0f;

}

.gallery h2{
    font-size:32px;
    margin-bottom:50px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.gallery-grid img{
    width:100%;
    border-radius:12px;
    transition:0.3s;
    box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

.gallery-grid img:hover{
    transform:scale(1.05);
}



/* CTA */

.cta{
    padding:120px 10%;
    text-align:center;

    background:#111;
    color:white;
}

.cta h2{
    font-size:36px;
    margin-bottom:20px;
}

.cta p{
    margin-bottom:30px;
}



/* CONTATO */

.contact{
    padding:120px 10%;
    background:#161616;
    text-align:center;
}

.contact h2{
    font-size:32px;
    margin-bottom:30px;
}

.contact-form{
    max-width:500px;
    margin:auto;

    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-form input,
.contact-form textarea{
    padding:15px;

    border:1px solid #ddd;
    border-radius:6px;

    font-size:16px;

    background:#222;
    color:white;
    border:1px solid #333;
}

.contact-form button{
    padding:15px;

    background:#ff0055;
    color:white;

    border:none;
    border-radius:6px;

    font-size:16px;
    cursor:pointer;
}

.contact-form button:hover{
    background:#d90049;
}

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:0.6s;
    will-change: transform, opacity;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* FOOTER */

footer{
    background:#080808;
    color:white;

    text-align:center;

    padding:40px;
}

.social-links{
    margin-bottom:20px;
}

.social-links a{
    color:white;
    font-size:24px;
    margin:0 10px;

    transition:0.3s;
}

.social-links a:hover{
    color:#ff0055;
}



/* RESPONSIVO */

@media(max-width:768px){

    .nav-links{
        display:none;
    }

    .menu-icon{
        display:block;
    }

    .hero{
        height:90vh;
    }

    .about-container{
        flex-direction:column;
        text-align:center;
    }

    .about-image img{
        width:250px;
    }

    .hero-content h1{
        font-size:40px;
    }

}

@media(max-width:1100px){

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

.whatsapp-float{
    position:fixed;

    bottom:30px;
    right:30px;

    background:#25D366;
    color:white;

    width:60px;
    height:60px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    font-size:28px;

    box-shadow:0 8px 20px rgba(0,0,0,0.4);

    z-index:1000;

    transition:0.3s;
    text-decoration: none;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

/* MENU MOBILE */

@media(max-width:768px){

    .nav-links{
        position:absolute;
        top:70px;
        left:0;

        width:100%;

        background:#111;

        flex-direction:column;
        align-items:center;

        gap:25px;

        padding:30px 0;

        display:none;
    }

    .nav-links.active{
        display:flex;
    }


}

