/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#080808;
    color:#FFF;
    overflow-x:hidden;
}

/* ==========================
CORES
========================== */

:root{
    --yellow:#F4B400;
    --yellow-dark:#d89a00;
    --black:#080808;
    --gray:#202020;
    --gray-light:#BDBDBD;
    --white:#FFF;
}

/* ==========================
CONTAINER
========================== */

.container{
    width:min(1200px,92%);
    margin:auto;
}

/* ==========================
HEADER
========================== */

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    backdrop-filter:blur(12px);
    background:rgba(0,0,0,.45);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.nav{
    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    width:170px;
}

nav{
    display:flex;
    gap:40px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
    position:relative;
}

nav a:hover{
    color:var(--yellow);
}

nav a::after{
    content:"";
    position:absolute;
    bottom:-6px;
    left:0;
    width:0;
    height:2px;
    background:var(--yellow);
    transition:.3s;
}

nav a:hover::after{
    width:100%;
}

/* ==========================
HERO
========================== */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    background:url("../img/hero.jpg") center center/cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,.75),
        rgba(0,0,0,.88)
    );
}

.hero-content{
    position:relative;
    z-index:5;
    max-width:650px;
}

.tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(244,180,0,.15);
    color:var(--yellow);
    border:1px solid rgba(244,180,0,.35);
    margin-bottom:20px;
}

.hero h1{
    font-family:'Bebas Neue';
    font-size:82px;
    line-height:1;
    margin-bottom:20px;
    letter-spacing:2px;
}

.hero p{
    color:#d6d6d6;
    font-size:18px;
    line-height:1.8;
    margin-bottom:40px;
}

/* ==========================
BOTÕES
========================== */

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{
    text-decoration:none;
    background:linear-gradient(
        135deg,
        #FFD34F,
        var(--yellow)
    );
    color:#111;
    padding:18px 35px;
    border-radius:50px;
    font-weight:700;
    transition:.35s;
    box-shadow:0 15px 35px rgba(244,180,0,.25);
}

.btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 40px rgba(244,180,0,.5);
}

.btn-secondary{
    text-decoration:none;
    border:2px solid var(--yellow);
    color:white;
    padding:18px 35px;
    border-radius:50px;
    transition:.35s;
}

.btn-secondary:hover{
    background:var(--yellow);
    color:black;
}

/* ==========================
SEÇÕES
========================== */

section{
    padding:110px 0;
}

section h2{
    font-family:'Bebas Neue';
    text-align:center;
    font-size:56px;
    margin-bottom:15px;
    letter-spacing:1px;
}

.section-text{
    color:#bbb;
    text-align:center;
    margin-bottom:60px;
}

/* ==========================
CARDS
========================== */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:#111;
    border:1px solid rgba(255,255,255,.06);
    padding:40px;
    border-radius:18px;
    transition:.35s;
}

.card:hover{
    transform:translateY(-10px);
    border-color:var(--yellow);
    box-shadow:0 20px 40px rgba(0,0,0,.5);
}

.icon{
    font-size:48px;
    margin-bottom:20px;
}

.card h3{
    margin-bottom:15px;
    color:var(--yellow);
}

.card p{
    color:#CCC;
    line-height:1.7;
}

/* ==========================
SOBRE
========================== */

.about {
    background:#101010;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:20px;
}

.mini-title{
    color:var(--yellow);
    letter-spacing:2px;
}

.about h2{
    text-align:left;
    margin:20px 0;
}

.about p{
    color:#CCC;
    margin-bottom:25px;
}

.about ul{
    list-style:none;
}

.about li{
    margin:14px 0;
}

/* ==========================
GALERIA
========================== */

.gallery{
    background:#080808;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:20px;
}

.gallery-grid img{
    width:100%;
    border-radius:18px;
    transition:.4s;
    cursor:pointer;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/* ==========================
CONTATO
========================== */

.contact{
    background:#111;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.contact iframe{
    width:100%;
    height:420px;
    border:none;
    border-radius:20px;
}

.contact p{
    margin:20px 0;
    color:#CCC;
}

/* ==========================
FOOTER
========================== */

footer{
    padding:45px 0;
    text-align:center;
    background:black;
    border-top:1px solid rgba(255,255,255,.05);
}

.footer-logo{
    width:130px;
    margin-bottom:20px;
}

footer span{
    color:#888;

}

/* ==========================
WHATSAPP
========================== */

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:70px;
    height:70px;
    background:#25D366;
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    text-decoration:none;
    font-size:32px;
    box-shadow:0 15px 40px rgba(0,0,0,.45);
    animation:pulse 2s infinite;
    transition:.3s;
}

.whatsapp:hover{
    transform:scale(1.1);
}

@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.7);
    }
    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}

/* ==========================
RESPONSIVO
========================== */

@media(max-width:900px){
    .hero h1{
        font-size:58px;
    }
    .about-grid{
        grid-template-columns:1fr;
    }
    .contact-grid{
        grid-template-columns:1fr;
    }
    nav{
        display:none;
    }
}

@media(max-width:600px){
    .hero{
        text-align:center;
    }
    .hero-buttons{
        justify-content:center;
    }
    .hero h1{
        font-size:44px;
    }
    section h2{
        font-size:42px;
    }
    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }
}

/* ==========================
HEADER AO ROLAR
========================== */

header.scrolled{
    background:#080808;
    box-shadow:0 10px 35px rgba(0,0,0,.45);
}

/* ==========================
ANIMAÇÃO DAS SEÇÕES
========================== */

.hidden{
    opacity:0;
    transform:translateY(60px);
    transition:1s;
}

.show{
    opacity:1;
    transform:translateY(0);
}

/* ==========================
LIGHTBOX
========================== */

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:99999;
}

.lightbox.active{
    opacity:1;
    visibility:visible;
}

.lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:18px;
    box-shadow:0 30px 80px black;
}
