/* ============================= */
/* IDENTIDADE CROMÁTICA OFICIAL */
/* ============================= */

:root{
--azul-principal:#1e40af;
--azul-secundario:#2563eb;
--verde-principal:#15803d;
--verde-destaque:#22c55e;
--cinza-claro:#f1f5f9;
--texto-escuro:#0f172a;
}

/* RESET */

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

body{
font-family:'Inter', sans-serif;
line-height:1.6;
color:var(--texto-escuro);
background:#fff;
}

h1,h2,h3{
font-family:'Montserrat', sans-serif;
}

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

/* HEADER */

header{
background:#fff;
padding:20px 0;
box-shadow:0 4px 10px rgba(0,0,0,0.05);
position:sticky;
top:0;
z-index:1000;
}

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

.logo img{
height:55px;
}

/* MENU */

.menu a{
margin-left:25px;
text-decoration:none;
color:var(--azul-principal);
font-weight:500;
position:relative;
transition:0.3s;
}

.menu a::after{
content:"";
position:absolute;
width:0;
height:2px;
bottom:-5px;
left:0;
background:var(--verde-principal);
transition:0.3s;
}

.menu a:hover{
color:var(--verde-principal);
}

.menu a:hover::after{
width:100%;
}

/* BOTÃO MUSSULO */

.menu-highlight{
background:var(--verde-principal);
color:#fff !important;
padding:8px 18px;
border-radius:30px;
transition:0.3s;
}

.menu-highlight:hover{
background:var(--verde-destaque);
}

/* HERO */

.hero{
padding:120px 20px;
text-align:center;
background:linear-gradient(to right,var(--azul-principal),var(--azul-secundario));
color:#fff;
}

.hero h1{
font-size:42px;
margin-bottom:20px;
}

/* SEÇÕES */

section{
padding:80px 0;
}

h2{
text-align:center;
margin-bottom:40px;
font-size:32px;
color:var(--azul-principal);
}

/* GRID */

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

.card{
background:#fff;
padding:30px;
border-radius:16px;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
transition:0.3s;
}

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

/* BOTÕES */

.cta a,
form button{
background:var(--azul-principal);
color:#fff;
padding:15px 35px;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:0.3s;
border:none;
cursor:pointer;
}

.cta a:hover,
form button:hover{
background:var(--verde-principal);
}

/* FORM */

form input,
form textarea,
form select{
width:100%;
padding:15px;
margin-bottom:15px;
border-radius:8px;
border:1px solid #ccc;
}

/* CONTADORES */

.stats-section{
background:var(--azul-principal);
color:#fff;
text-align:center;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:40px;
}

.stat-box h2{
font-size:48px;
font-weight:700;
}

/* SLIDER */

.partners-section{
background:var(--cinza-claro);
overflow:hidden;
}

.slide-track{
display:flex;
animation:scroll 30s linear infinite;
}

.slide-track img{
width:220px;
height:100px;
object-fit:contain;
margin:0 40px;
}

@keyframes scroll{
0%{transform:translateX(0);}
100%{transform:translateX(-50%);}
}

/* FOOTER */

footer{
background:var(--azul-principal);
color:#fff;
text-align:center;
padding:30px;
}

/* ===================================== */
/* DILUKA AIR CHARTER (NOVA SECÇÃO) */
/* ===================================== */

#aviacao{
padding:80px 0;
background:
linear-gradient(
rgba(30,64,175,0.55),
rgba(21,128,61,0.55)
),
url('aviacao-bg.jpg') center/cover no-repeat;
color:#fff;
}

#aviacao h2{
color:#fff;
}

#aviacao p{
opacity:0.95;
}

#aviacao .card{
background:rgba(255,255,255,0.08);
color:#fff;
border:1px solid rgba(255,255,255,0.15);
box-shadow:none;
}

#aviacao .card:hover{
transform:translateY(-8px);
box-shadow:0 20px 45px rgba(0,0,0,0.25);
border:1px solid var(--verde-destaque);
}

/* RESPONSIVO */

@media(max-width:768px){

.nav{
flex-direction:column;
gap:15px;
}

.menu{
display:flex;
flex-direction:column;
gap:12px;
align-items:center;
}

.hero{
padding:70px 15px;
}

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

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

.card{
padding:20px;
}

form button{
width:100%;
}

}

/* ============================= */
/* WHATSAPP FLUTUANTE CORRIGIDO */
/* ============================= */

.whatsapp-button {
position: fixed;
bottom: 25px;
right: 25px;
display: flex;
align-items: center;
background: #25D366;
color: #fff;
padding: 8px 16px;
border-radius: 50px;
text-decoration: none;
font-family: 'Inter', sans-serif;
font-weight: 500;
box-shadow: 0 6px 18px rgba(0,0,0,0.25);
z-index: 9999;
transition: all 0.3s ease;
}

.whatsapp-button:hover {
transform: translateY(-3px);
box-shadow: 0 10px 22px rgba(0,0,0,0.35);
}

.whatsapp-icon {
width: 40px;
height: 40px;
min-width: 40px;
border-radius: 50%;
background: #fff;
display: flex;
align-items: center;
justify-content: center;
}

.whatsapp-icon img {
width: 20px !important;
height: 20px !important;
max-width: 20px;
object-fit: contain;
display:block;
}

.whatsapp-text {
margin-left: 10px;
font-size: 14px;
white-space: nowrap;
}

@media (max-width: 768px) {

.whatsapp-button {
padding: 10px;
border-radius: 50%;
}

.whatsapp-text {
display: none;
}

.whatsapp-icon {
margin: 0;
}

}