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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins', sans-serif;
    background:#0b0f14;
    color:white;
}

/* MENU */

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    padding:20px 60px;
    z-index:1000;
    background:rgba(10,10,10,0.25);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,0.08);
    transition:0.3s ease;
}

.header-scroll{
    background:rgba(5,5,5,0.88);
    backdrop-filter:blur(16px);
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.logo h2{
    color:#c8a96b;
    font-size:28px;
    line-height:1.2;
}

.logo span{
    display:block;
    color:#f5f5f5;
    font-size:13px;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-top:4px;
}

ul{
    display:flex;
    align-items:center;
    gap:30px;
    list-style:none;
}

ul a{
    color:white;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    transition:0.3s;
    background:transparent;
    padding:0;
    border-radius:0;
    box-shadow:none;
}

ul a:hover{
    color:#c8a96b;
    transform:none;
    background:transparent;
}

/* HERO */

.hero{
    min-height:100vh;
    background:
        linear-gradient(
            90deg,
            rgba(5,8,12,0.96) 0%,
            rgba(5,8,12,0.82) 42%,
            rgba(5,8,12,0.70) 100%
        ),
        url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?q=80&w=1600');

    background-size:cover;
    background-position:center;
    background-attachment:fixed;

    display:flex;
    justify-content:flex-start;
    align-items:center;

    padding:160px 80px 80px 80px;

    overflow:hidden;
}

.content{
    max-width:760px;
    position:relative;
    z-index:2;
}

.content::before{
    content:'';
    position:absolute;
    width:520px;
    height:520px;

    background:
        radial-gradient(
            circle,
            rgba(200,169,107,0.22) 0%,
            rgba(200,169,107,0.08) 35%,
            transparent 70%
        );

    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    filter:blur(55px);
    z-index:-1;
}

h1{
    color:#c8a96b;
    font-size:64px;
    line-height:1.1;
    letter-spacing:-2px;
    margin-bottom:24px;
}

p{
    color:#f5f5f5;
    font-size:22px;
    line-height:1.7;
    margin-bottom:35px;
}

a{
    display:inline-block;
    background:#1d3b2a;
    color:white;
    text-decoration:none;
    padding:18px 42px;
    border-radius:10px;
    transition:0.3s ease;
    font-weight:700;
    letter-spacing:0.5px;
    box-shadow:0 10px 30px rgba(29,59,42,0.35);
}

a:hover{
    background:#29563d;
    transform:translateY(-3px);
}

.btn-principal{
    border:1px solid rgba(200,169,107,0.55);
}

/* ATUAÇÃO */

.atuacao{
    background:#0b0f14;
    padding:110px 60px;
    text-align:center;
}

.atuacao h2{
    color:#c8a96b;
    font-size:42px;
    margin-bottom:18px;
    position:relative;
}

.atuacao h2::after{
    content:'';
    display:block;
    width:70px;
    height:3px;
    background:#c8a96b;
    margin:20px auto 0 auto;
    border-radius:20px;
}

.cards{
    display:flex;
    justify-content:center;
    align-items:stretch;
    gap:35px;
    margin-top:55px;
    flex-wrap:wrap;
}

.card{
    background:
        linear-gradient(
            145deg,
            rgba(18,24,32,0.98),
            rgba(10,23,19,0.96)
        );

    padding:45px 35px;
    width:380px;
    min-height:330px;

    border-radius:18px;
    border:1px solid rgba(200,169,107,0.28);

    transition:0.4s ease;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;

    box-shadow:0 18px 45px rgba(0,0,0,0.25);
}

.card:hover{
    transform:translateY(-10px);
    border-color:#c8a96b;
    box-shadow:0 25px 60px rgba(0,0,0,0.45);
}

.icone{
    font-size:46px;
    margin-bottom:22px;
}

.card h3{
    color:#c8a96b;
    margin-bottom:18px;
    font-size:25px;
}

.card h3::after{
    content:'';
    display:block;
    width:45px;
    height:2px;
    background:#c8a96b;
    margin:14px auto 0 auto;
    border-radius:20px;
}

.card p{
    font-size:17px;
    color:#d6d6d6;
    line-height:1.7;
    margin-bottom:0;
}

/* SOBRE */

.sobre{
    background:#10151d;
    padding:120px 80px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:60px;
    flex-wrap:wrap;
}

.sobre-texto{
    max-width:600px;
}

.sobre-texto h2{
    color:#c8a96b;
    font-size:42px;
    margin-bottom:30px;
    line-height:1.2;
}

.sobre-texto p{
    color:#d6d6d6;
    font-size:20px;
    line-height:1.8;
    margin-bottom:25px;
}

.sobre-imagem img{
    width:450px;
    max-width:100%;
    border-radius:18px;
    object-fit:cover;
    box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

/* FAQ */

.faq{
    background:#0b0f14;
    padding:120px 60px;
}

.faq h2{
    text-align:center;
    color:#c8a96b;
    font-size:42px;
    margin-bottom:60px;
}

.faq-item{
    max-width:900px;
    margin:0 auto 30px auto;

    background:#121820;
    padding:35px;

    border-radius:14px;
    border:1px solid rgba(200,169,107,0.2);

    transition:0.3s;
}

.faq-item:hover{
    border-color:#c8a96b;
    transform:translateY(-5px);
}

.faq-item h3{
    color:#c8a96b;
    font-size:24px;
    margin-bottom:18px;
}

.faq-item p{
    color:#d6d6d6;
    font-size:18px;
    line-height:1.7;
    margin-bottom:0;
}

/* WHATSAPP */

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;

    background:#25d366;
    color:white;

    padding:18px 26px;
    border-radius:50px;

    text-decoration:none;
    font-weight:bold;

    box-shadow:0 10px 25px rgba(0,0,0,0.4);

    z-index:999;
    transition:0.3s;
}

.whatsapp:hover{
    transform:scale(1.08);
    background:#20bd5a;
}

/* FOOTER */

footer{
    background:#070b10;
    padding:80px 20px;
    text-align:center;
    border-top:1px solid rgba(200,169,107,0.15);
}

footer h2{
    color:#c8a96b;
    font-size:34px;
    margin-bottom:20px;
}

footer p{
    color:#d6d6d6;
    font-size:18px;
    margin-bottom:20px;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:25px;
    margin-bottom:35px;
    flex-wrap:wrap;
}

.footer-links a{
    color:white;
    text-decoration:none;
    background:transparent;
    padding:0;
    box-shadow:none;
    transition:0.3s;
}

.footer-links a:hover{
    color:#c8a96b;
    background:transparent;
    transform:none;
}

footer span{
    color:#777;
    font-size:14px;
}

/* ANIMAÇÕES */

.atuacao,
.sobre,
.faq{
    opacity:0;
    transform:translateY(50px);
    transition:all 1s ease;
}

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

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

/* RESPONSIVO */

@media(max-width:992px){

    header{
        padding:18px 30px;
    }

    nav{
        flex-direction:column;
        gap:18px;
    }

    ul{
        gap:18px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero{
        padding:190px 35px 80px 35px;
        text-align:center;
        justify-content:center;
    }

    h1{
        font-size:48px;
    }

    p{
        font-size:20px;
    }

    .cards{
        flex-direction:column;
        align-items:center;
    }

    .card{
        width:100%;
        max-width:420px;
    }
}

@media(max-width:768px){

    .hero{
        background-attachment:scroll;
    }

    h1{
        font-size:40px;
    }

    .atuacao,
    .sobre,
    .faq{
        padding:90px 25px;
    }

    .atuacao h2,
    .sobre-texto h2,
    .faq h2{
        font-size:32px;
    }

    .logo h2{
        font-size:22px;
        text-align:center;
    }

    .logo span{
        text-align:center;
    }

    ul a{
        font-size:15px;
    }

    a{
        padding:15px 28px;
    }

    .whatsapp{
        right:16px;
        bottom:16px;
        padding:15px 20px;
    }
}

.botao-endereco{
    margin-top:25px;

    background:#121820;

    border:1px solid rgba(200,169,107,0.25);

    color:#f5f5f5;

    padding:16px 28px;

    border-radius:10px;

    display:inline-block;

    transition:0.3s ease;

    text-decoration:none;

    font-weight:600;
}

.botao-endereco:hover{
    border-color:#c8a96b;

    background:#1a2430;

    transform:translateY(-3px);
}

.footer-contato{
    margin:35px 0 25px 0;
}

.botao-endereco{
    margin-top:0;
}