*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#F8F9FC;
color:#222;
}

/* CONTAINER */
.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* HEADER */

.header{
background:#0C2D63;
padding:18px 0;
position:fixed;
width:100%;
top:0;
z-index:999;
box-shadow:0 4px 15px rgba(0,0,0,0.2);
}

.logo img{
height:55px;
}

nav ul{
list-style:none;
display:flex;
gap:30px;
}

nav a{
color:#fff;
text-decoration:none;
font-weight:500;
transition:0.3s;
position:relative;
}

nav a::after{
content:'';
position:absolute;
width:0%;
height:2px;
background:#C9A227;
left:0;
bottom:-5px;
transition:0.3s;
}

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

.menu-toggle{
display:none;
color:#fff;
font-size:26px;
cursor:pointer;
}


/* ALINHAMENTO INTERNO DO HEADER */
.header .nav{
display:flex;
align-items:center;
justify-content:space-between;
}



.logo-text{
color:#fff;
font-size:26px;
font-weight:700;
letter-spacing:1.5px;

text-shadow:
1px 1px 0 #C9A227,
2px 2px 6px rgba(0,0,0,0.4);
}






/* HERO */

.hero{
height:90vh;
background:url('../img/banner.jpg') center/cover no-repeat;
display:flex;
align-items:center;
position:relative;
margin-top:75px;
color:#fff;
text-align:center;
}

.hero-overlay{
position:absolute;
width:100%;
height:100%;
background:linear-gradient(to right,#0C2D63ee,#081F45dd);
}

.hero-content{
position:relative;
z-index:2;
}

.hero h1{
font-size:48px;
margin-bottom:20px;
font-weight:700;
}

.hero p{
font-size:18px;
margin-bottom:30px;
}

.btn-primary{
background:#C9A227;
padding:14px 30px;
border-radius:30px;
color:#fff;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.btn-primary:hover{
background:#b38e1f;
}

/* SECTIONS */

.section{
padding:90px 0;
}

.section-title{
text-align:center;
margin-bottom:50px;
}

.section-title h2{
font-size:34px;
color:#0C2D63;
position:relative;
display:inline-block;
}

.section-title h2::after{
content:'';
display:block;
height:3px;
width:60px;
background:#C9A227;
margin:10px auto 0;
}

/* CARDS */

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

.card{
background:#fff;
padding:35px;
border-radius:12px;
box-shadow:0 20px 40px rgba(0,0,0,0.05);
transition:0.4s;
border-top:4px solid #C9A227;
}

.card:hover{
transform:translateY(-10px);
}

.icon{
font-size:45px;
color:#C9A227;
margin-bottom:20px;
}

/* BANNER INTERNO */

.page-banner{
background:linear-gradient(to right,#0C2D63,#081F45);
color:#fff;
padding:120px 0 60px;
margin-top:75px;
text-align:center;
}

/* MAPA */

.map-container{
margin-top:40px;
border-radius:12px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

/* FOOTER */

.footer{
background:#081F45;
color:#fff;
padding:70px 0 40px;
}

.footer h3,
.footer h4{
color:#C9A227;
margin-bottom:15px;
}

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

.copy{
text-align:center;
margin-top:30px;
font-size:14px;
opacity:0.7;
}

/* RESPONSIVO */

@media(max-width:768px){

nav ul{
display:none;
flex-direction:column;
background:#0C2D63;
position:absolute;
top:80px;
right:0;
padding:20px;
width:220px;
}

nav ul.active{
display:flex;
}

.menu-toggle{
display:block;
}

.hero h1{
font-size:32px;
}
}




/* CONVENÇÃO DOWNLOAD */

.download-card{
background:#fff;
padding:30px;
border-radius:12px;
box-shadow:0 15px 40px rgba(0,0,0,0.05);
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:20px;
border-left:5px solid #C9A227;
transition:0.3s;
}

.download-card:hover{
transform:translateY(-5px);
}

.download-info h3{
color:#0C2D63;
margin-bottom:5px;
}

.download-info span{
font-size:14px;
opacity:0.7;
}

.btn-download{
background:#C9A227;
color:#fff;
padding:10px 20px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:0.3s;
display:inline-flex;
align-items:center;
gap:8px;
}

.btn-download:hover{
background:#b38e1f;
}

.download-grid{
display:flex;
flex-direction:column;
gap:25px;
margin-top:40px;
}



/* =============================
   CONVENÇÃO - CARDS PREMIUM
============================= */

.download-grid{
display:flex;
flex-direction:column;
gap:30px;
margin-top:50px;
}

.download-card{
display:flex;
align-items:center;
justify-content:space-between;
background:linear-gradient(135deg,#ffffff,#f3f6fb);
padding:30px 35px;
border-radius:16px;
box-shadow:0 20px 50px rgba(0,0,0,0.06);
transition:all 0.35s ease;
border:1px solid #e6ecf5;
position:relative;
overflow:hidden;
}

.download-card:hover{
transform:translateY(-8px);
box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.download-left{
display:flex;
align-items:center;
gap:25px;
}

.download-icon{
font-size:48px;
color:#C9A227;
background:#fff;
padding:18px;
border-radius:14px;
box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

.download-info h3{
font-size:22px;
color:#0C2D63;
margin-bottom:8px;
}

.download-info p{
font-size:15px;
opacity:0.7;
}




.download-buttons{
    display:flex;
    flex-direction:column; /* empilha os botões */
    gap:10px; /* espaço entre os botões */
    margin-left:auto; /* posiciona à direita do card */
}

.download-buttons .btn-download{
    padding:8px 16px; /* botões menores */
    font-size:14px;
}




.badge-year{
background:#C9A227;
color:#fff;
padding:6px 14px;
border-radius:20px;
font-size:13px;
font-weight:600;
display:inline-block;
margin-top:10px;
}

.btn-download{
background:#0C2D63;
color:#fff;
padding:12px 24px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:0.3s;
display:inline-flex;
align-items:center;
gap:8px;
}

.btn-download:hover{
background:#C9A227;
color:#fff;
}

@media(max-width:768px){

.download-card{
flex-direction:column;
align-items:flex-start;
gap:20px;
}

.btn-download{
width:100%;
justify-content:center;
}
}



/* =============================
   JURÍDICO CTA MODERNO
============================= */

.juridico-cta{
background:linear-gradient(135deg,#0C2D63,#081F45);
padding:50px;
border-radius:18px;
color:#fff;
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:30px;
box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

.juridico-cta h2{
margin-bottom:10px;
}

.cta-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.btn-whatsapp{
background:#25D366;
color:#fff;
padding:14px 28px;
border-radius:30px;
text-decoration:none;
font-weight:600;
display:inline-flex;
align-items:center;
gap:8px;
transition:0.3s;
}

.btn-whatsapp:hover{
background:#1ebe5d;
}

@media(max-width:768px){
.juridico-cta{
flex-direction:column;
text-align:center;
}
}






/* =============================
   SEÇÃO LIGHT
============================= */
.section-light{
background:#f4f6fa;
}

/* =============================
   GRID 2 COLUNAS
============================= */
.grid-2{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

/* =============================
   DOCUMENTAÇÃO CARD
============================= */
.doc-card{
background:#fff;
padding:30px;
border-radius:18px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
transition:0.3s;
}

.doc-card:hover{
transform:translateY(-6px);
}

.doc-card ul{
padding-left:20px;
}

.doc-card li{
margin-bottom:10px;
}

/* =============================
   ALERTA
============================= */
.alert-box{
margin-top:40px;
background:#fff3cd;
border-left:6px solid #c8a84e;
padding:25px;
border-radius:12px;
display:flex;
gap:15px;
align-items:flex-start;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.alert-box i{
color:#c8a84e;
font-size:24px;
}

/* =============================
   CTA HOMOLOGAÇÃO
============================= */
.homologacao-cta{
background:linear-gradient(135deg,#0C2D63,#081F45);
color:#fff;
padding:50px;
border-radius:20px;
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:30px;
box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

.homologacao-cta h2{
margin-bottom:15px;
}

.cta-info p{
margin-bottom:8px;
}

@media(max-width:768px){
.homologacao-cta{
flex-direction:column;
text-align:center;
}
}



/* =============================
   GRID TERRITORIAL
============================= */
.territorial-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:30px;
}

.city-card{
background:#fff;
padding:18px 20px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.06);
display:flex;
align-items:center;
gap:10px;
font-weight:500;
transition:0.3s;
}

.city-card i{
color:#c8a84e;
}

.city-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

/* =============================
   CATEGORY CARDS
============================= */
.category-card{
background:#fff;
padding:35px;
border-radius:20px;
text-align:center;
box-shadow:0 20px 50px rgba(0,0,0,0.08);
transition:0.3s;
}

.category-card:hover{
transform:translateY(-8px);
}

.category-icon{
width:70px;
height:70px;
background:linear-gradient(135deg,#c8a84e,#e0c46c);
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
margin:0 auto 20px;
font-size:26px;
}

.category-card h3{
margin-bottom:15px;
color:#0C2D63;
}




/* =========================================
   SEÇÃO PADRÃO
========================================= */
.section{
padding:80px 0;
}

.section-light{
background:#f4f6fa;
}

.section-title{
text-align:center;
margin-bottom:40px;
}

.section-title h2{
font-size:28px;
color:#0C2D63;
position:relative;
display:inline-block;
}

.section-title h2::after{
content:"";
display:block;
width:60px;
height:3px;
background:#c8a84e;
margin:10px auto 0;
border-radius:2px;
}


/* =========================================
   GRID CONTATO
========================================= */
.contact-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-top:40px;
max-width:900px;
margin-left:auto;
margin-right:auto;
}


/* =========================================
   CARD PADRÃO
========================================= */
.contact-card{
background:#fff;
padding:30px;
border-radius:18px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,0.07);
transition:all 0.3s ease;
}

.contact-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 45px rgba(0,0,0,0.12);
}

.contact-card i{
font-size:30px;
margin-bottom:15px;
color:#c8a84e;
}

.contact-card h3{
font-size:18px;
margin-bottom:10px;
color:#0C2D63;
}

.contact-card p{
font-size:15px;
color:#333;
margin:0;
}


/* =========================================
   CARD WHATSAPP
========================================= */
.whatsapp-card{
border:1.5px solid #25D366;
}

.whatsapp-card i{
color:#25D366;
}

.numero{
font-weight:600;
font-size:16px;
margin-bottom:8px;
}

.small-text{
font-size:13px;
margin:12px 0;
color:#555;
line-height:1.4;
}


/* =========================================
   BOTÃO WHATSAPP
========================================= */
.btn-whatsapp{
background:#25D366;
color:#fff;
padding:10px 22px;
border-radius:25px;
text-decoration:none;
font-weight:600;
font-size:14px;
display:inline-block;
transition:all 0.3s ease;
}

.btn-whatsapp:hover{
background:#1ebe5d;
transform:scale(1.05);
}


/* =========================================
   LOCALIZAÇÃO
========================================= */
.location-box{
display:grid;
grid-template-columns:1fr 1.5fr;
gap:40px;
margin-top:50px;
align-items:center;
}

.location-info{
background:#fff;
padding:30px;
border-radius:18px;
box-shadow:0 15px 35px rgba(0,0,0,0.07);
}

.location-info h3{
margin-bottom:12px;
color:#0C2D63;
}

.location-info p{
color:#333;
line-height:1.6;
}

.location-map iframe{
border-radius:18px;
box-shadow:0 15px 35px rgba(0,0,0,0.07);
}


/* =========================================
   RESPONSIVO
========================================= */
@media(max-width:768px){

.section{
padding:60px 20px;
}

.location-box{
grid-template-columns:1fr;
}

.contact-grid{
grid-template-columns:1fr;
}

}














