
body{
font-family:'Inter',sans-serif;
margin:0;
background:#f4f4f4;
color:#222;
}

.container{
width:90%;
margin:auto;
}

.header{
background:#0d1b2a;
position:sticky;
top:0;
z-index:999;
}

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

.logo{
height:60px;
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
font-weight:600;
}

.btn-nav{
background:#d71920;
padding:8px 14px;
border-radius:5px;
}

.hero{
height:600px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;

background:linear-gradient(rgba(0,0,0,0.65),rgba(0,0,0,0.65)),
url('https://images.unsplash.com/photo-1494412651409-8963ce7935a7?q=80&w=1600');

background-size:cover;
}

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

.hero-buttons{
margin-top:25px;
}

.btn-primary{
background:#d71920;
padding:14px 28px;
color:white;
text-decoration:none;
border-radius:6px;
margin-right:10px;
}

.btn-secondary{
border:2px solid white;
padding:12px 26px;
color:white;
text-decoration:none;
border-radius:6px;
}

.servicios{
background:white;
padding:80px 20px;
text-align:center;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
margin-top:40px;
width:90%;
margin-left:auto;
margin-right:auto;
}

.card{
background:#f5f5f5;
padding:30px;
border-radius:8px;
transition:0.3s;
}

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

.stats{
background:#0d1b2a;
color:white;
padding:60px 20px;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
text-align:center;
}

.stats h3{
font-size:40px;
color:#d71920;
}

.cobertura{
background:white;
padding:80px 20px;
text-align:center;
}

.countries{
list-style:none;
padding:0;
}

.countries li{
margin:10px 0;
font-weight:600;
}

.empresa{
padding:80px 20px;
background:#f4f4f4;
}

.empresa-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.empresa-image{
height:300px;
background:url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=1200');
background-size:cover;
border-radius:8px;
}

.cta{
background:#d71920;
color:white;
text-align:center;
padding:60px 20px;
}

.contacto{
padding:80px 20px;
text-align:center;
}

.form{
max-width:420px;
margin:auto;
display:flex;
flex-direction:column;
}

input, textarea{
padding:12px;
margin:10px 0;
border:1px solid #ccc;
border-radius:4px;
}

button{
background:#d71920;
color:white;
border:none;
padding:14px;
cursor:pointer;
font-weight:600;
}

footer{
background:#0d1b2a;
color:white;
padding:50px 20px;
}

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

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

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
padding:14px 18px;
border-radius:30px;
}

.whatsapp a{
color:white;
text-decoration:none;
font-weight:bold;
}
