*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#050b1d;
    color:white;
    overflow-x:hidden;
}

/* MENU */

header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    padding:20px 8%;
    backdrop-filter:blur(12px);
    background:rgba(3,8,20,0.65);
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo-menu{
    font-size:28px;
    font-weight:700;
    color:#d4a64f;
    letter-spacing:2px;
    width:400px;
    max-width:95%;
    border-radius:25px;

}
.logo_escudo {
  width: 30px;   /* tamanho pequeno */
  height: auto;
  letter-spacing:2px;
}


.menu{
    display:flex;
    gap:35px;
}

.menu a{
    color:white;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

.menu a:hover{
    color:#d4a64f;
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:160px 20px 100px;
    position:relative;
}

.hero::before{
    content:'';
    position:absolute;
    width:900px;
    height:900px;
    background:radial-gradient(circle,#d4a64f15 0%, transparent 70%);
    top:-250px;
    z-index:0;
}

.hero-content{
    max-width:1300px;
    width:100%;
    position:relative;
    z-index:2;
}

/* LOGO */

.logo-center{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:40px;
}

.logo-center img{
    width:400px;
    max-width:95%;
    border-radius:25px;

    /*box-shadow:
    0 0 35px rgba(212,166,79,0.20),
    0 25px 60px rgba(0,0,0,0.45);*/

    transition:0.4s;
}

.logo-center img:hover{
    transform:scale(1.03);
}

/* TITULO */

.hero h1{
    font-size:80px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:800;
}

.hero h1 span{
    color:#d4a64f;
}

.hero p{
    max-width:850px;
    margin:auto;
    font-size:22px;
    line-height:1.8;
    color:#d9d9d9;
}

/* BOTÕES */

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:45px;
    flex-wrap:wrap;
}

.btn{
    padding:18px 38px;
    border-radius:15px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
    font-size:17px;
}

.btn-gold{
    background:#d4a64f;
    color:#05101f;
}

.btn-gold:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 35px rgba(212,166,79,0.35);
}

.btn-dark{
    border:1px solid #d4a64f;
    color:#d4a64f;
}

.btn-dark:hover{
    background:#d4a64f;
    color:#05101f;
}

/* IMAGENS */

.hero-images{
    margin-top:70px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.hero-images img{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:28px;
    transition:0.4s;

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:0 10px 35px rgba(0,0,0,0.30);
}

.hero-images img:hover{
    transform:translateY(-10px) scale(1.02);
}

/* SECTIONS */

section{
    padding:110px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:55px;
    color:#d4a64f;
    margin-bottom:15px;
}

.section-title p{
    font-size:20px;
    color:#c8c8c8;
}

/* CARDS */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.card{
    background:linear-gradient(145deg,#09152f,#0d1f45);

    padding:45px;

    border-radius:30px;

    border:1px solid rgba(255,255,255,0.08);

    transition:0.4s;
}

.card:hover{
    transform:translateY(-10px);

    box-shadow:0 15px 45px rgba(0,0,0,0.45);
}

.card-icon{
    font-size:55px;
    margin-bottom:20px;
}

.card h3{
    font-size:32px;
    color:#d4a64f;
    margin-bottom:20px;
}

.card p{
    line-height:1.9;
    color:#d8d8d8;
}

/* BENEFÍCIOS */

.benefits{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
}

.benefit{
    background:#0a1733;
    padding:35px;
    border-radius:25px;
    text-align:center;

    transition:0.3s;
}

.benefit:hover{
    transform:translateY(-8px);
}

.benefit h4{
    margin:20px 0 10px;
    color:#d4a64f;
    font-size:24px;
}

.benefit p{
    color:#d8d8d8;
}

/* CONTATO */

.contact{
    background:linear-gradient(145deg,#d4a64f,#f0c56d);

    border-radius:35px;

    padding:80px 30px;

    text-align:center;

    color:#05101f;
}

.contact h2{
    font-size:60px;
    margin-bottom:20px;
}

.contact p{
    font-size:22px;
    margin-bottom:35px;
}

.whatsapp{
    display:inline-block;

    background:#05101f;

    color:white;

    text-decoration:none;

    padding:22px 45px;

    border-radius:18px;

    font-size:22px;

    font-weight:700;

    transition:0.3s;
}

.whatsapp:hover{
    transform:scale(1.05);
}

/* FOOTER */

footer{
    padding:40px 20px;

    text-align:center;

    color:#999;

    border-top:1px solid rgba(255,255,255,0.08);
}

/* RESPONSIVO */

@media(max-width:900px){

    .hero h1{
        font-size:50px;
    }

    .section-title h2{
        font-size:40px;
    }

    .contact h2{
        font-size:40px;
    }

    .menu{
        display:none;
    }

}

@media(max-width:600px){

    .hero{
        padding-top:140px;
    }

    .hero h1{
        font-size:38px;
    }

    .hero p{
        font-size:18px;
    }

    .btn{
        width:100%;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .contact h2{
        font-size:34px;
    }

}