:root{
    --primary:#0f172a;     /* azul escuro */
    --secondary:#c8a96a;   /* dourado */
    --light:#f5f7fa;
    --dark:#020617;
    --white:#ffffff;
    --gray:#6b7280;
}

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter', sans-serif;
    background:var(--white);
    color:var(--primary);
    line-height:1.6;
}

/* CONTAINER */
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */
.header{
    position:fixed;
    width:100%;
    top:0;
    background:rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    z-index:1000;
    border-bottom:1px solid #eee;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo{
    font-family:'Playfair Display', serif;
    font-weight:700;
}

.logo span{
    color:var(--secondary);
}

/* MENU */
.menu{
    display:flex;
    list-style:none;
    gap:30px;
}

.menu a{
    text-decoration:none;
    color:var(--primary);
    font-weight:500;
    transition:.3s;
}

.menu a:hover{
    color:var(--secondary);
}

/* HERO */
.hero{
    height:100vh;
    background:linear-gradient(rgba(2,6,23,0.85), rgba(2,6,23,0.9)),
    url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40') center/cover no-repeat;
    display:flex;
    align-items:center;
    color:white;
    padding-top:80px;
}

.hero h1{
    font-size:3rem;
    margin-bottom:20px;
    max-width:700px;
}

.hero p{
    color:#d1d5db;
    margin-bottom:30px;
    max-width:500px;
}

/* BOTÕES */
.btn{
    display:inline-block;
    padding:14px 28px;
    border-radius:6px;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.btn-primary{
    background:var(--secondary);
    color:black;
}

.btn-primary:hover{
    background:#e0c080;
}

.btn-outline{
    border:1px solid white;
    color:white;
}

.btn-outline:hover{
    background:white;
    color:black;
}

/* SECTIONS */
.section{
    padding:100px 0;
}

.bg-light{
    background:var(--light);
}

.center{
    text-align:center;
}

/* GRID */
.grid-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

/* IMAGE */
.image img{
    width:100%;
    border-radius:10px;
}

/* CARDS */
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:50px;
}

.card{
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.card h3{
    margin-bottom:10px;
}

.card p{
    color:var(--gray);
}

/* CTA */
.cta{
    background:linear-gradient(135deg,var(--primary),#020617);
    color:white;
    padding:80px 0;
}

/* FORM */
.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:6px;
}

/* FOOTER */
footer{
    background:var(--dark);
    color:white;
    text-align:center;
    padding:30px;
}

/* WHATSAPP */

.wpp {
    position:fixed;
    bottom:25px;
    right:25px;
    padding: 5px;
    border-radius:50%;
    width: 60px;
    height: 60px;
}

/* ANIMAÇÃO */
.fade{
    opacity:0;
    transform:translateY(30px);
    transition:0.8s ease;
}

.fade.show{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVO */
@media(max-width:768px){

    .menu{
        display:none;
    }

    .grid-2{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:2.2rem;
    }
}

#Logo {
 width: 120px;
 height: 120px;
}