/* ===== RESET ===== */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

body{
scroll-behavior:smooth;
background:#fff;
color:#333;
overflow-x:hidden;
}

/* ===== HEADER ===== */
.header{
position:sticky;
top:0;
background:#fff;
display:flex;
justify-content:space-between;
align-items:center;
padding:12px 15px;
border-bottom:1px solid #ddd;
z-index:1000;
}

.logo{
font-weight:bold;
font-size:18px;
color:#1f4ed8;
}

nav a{
margin-left:10px;
text-decoration:none;
color:#333;
font-size:14px;
}

.nav-cta{
background:#1f4ed8;
color:#fff;
padding:6px 10px;
border-radius:6px;
}

/* ===== HERO ===== */
.hero{
background:linear-gradient(#e8f0ff,#ffffff);
padding:40px 15px;
text-align:center;
}

.hero h1{
font-size:28px;
margin-bottom:15px;
}

/* ===== BANNER FIX (MOST IMPORTANT) ===== */
.banner-rect{
width:100%;
max-width:100%;
height:260px;
overflow:hidden;
border-radius:14px;
margin:15px auto;
}

.banner-rect img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

/* ===== BUTTONS ===== */
.hero-buttons{
margin-top:10px;
}

.btn-primary,
.btn-secondary{
display:inline-block;
margin:6px;
padding:12px 18px;
border-radius:8px;
text-decoration:none;
font-size:14px;
}

.btn-primary{
background:#1f4ed8;
color:#fff;
}

.btn-secondary{
border:2px solid #1f4ed8;
color:#1f4ed8;
}

/* ===== SECTIONS ===== */
.section{
padding:40px 15px;
max-width:1000px;
margin:auto;
}

.light{
background:#f7f9fc;
}

/* ===== TWO COLUMN ===== */
.two-col{
display:flex;
flex-wrap:wrap;
gap:15px;
align-items:center;
}

.two-col img{
width:100%;
border-radius:10px;
}

/* ===== CARDS ===== */
.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:15px;
margin-top:15px;
}

.card{
background:#fff;
padding:18px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.05);
text-align:center;
}

/* ===== CONTACT FORM ===== */
.contact-form input,
.contact-form textarea{
width:100%;
padding:10px;
margin:6px 0;
border:1px solid #ccc;
border-radius:6px;
}

/* ===== FOOTER ===== */
.footer{
background:#1f4ed8;
color:#fff;
text-align:center;
padding:18px;
}

.footer a{
color:#fff;
margin:0 6px;
text-decoration:none;
font-size:14px;
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float{
position:fixed;
bottom:18px;
right:18px;
background:#25D366;
color:#fff;
padding:14px 16px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
font-size:14px;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
z-index:999;
}

/* ===== FULL CLICK OVERLAY ===== */
.full-click{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
z-index:998;
}

/* ===== MOBILE OPTIMIZATION ===== */
@media(max-width:768px){

.hero h1{
font-size:22px;
}

.banner-rect{
height:220px;
}

}
