/* Variables de color */
:root {
    --bg-dark: #0a0a0a;
    --card-bg: #141414;
    --primary-blue: #0088ff;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.logo { font-weight: 900; font-size: 1.5rem; letter-spacing: 2px; }

nav ul { display: flex; list-style: none; align-items: center; }
nav ul li { margin-left: 20px; }
nav ul li a { color: white; text-decoration: none; font-size: 0.9rem; }

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 { font-size: 4rem; font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.text-blue { color: var(--primary-blue); }
.badge { background: rgba(255,255,255,0.1); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; }

/* Botones */
.btn-primary { background: var(--primary-blue); color: white; padding: 12px 25px; border-radius: 5px; text-decoration: none; font-weight: bold; transition: 0.3s; }
.btn-outline { border: 1px solid white; color: white; padding: 12px 25px; border-radius: 5px; text-decoration: none; margin-left: 10px; transition: 0.3s; }
.btn-primary:hover { opacity: 0.8; }

/* Stats */
.stats { display: flex; justify-content: center; gap: 40px; margin-top: 50px; }
.stats strong { font-size: 2rem; color: var(--primary-blue); }

/* Servicios */
.services { padding: 80px 5%; text-align: center; }
.grid-services { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 25px; 
    margin-top: 40px; 
}

.card { 
    background: var(--card-bg); 
    padding: 0 0 20px 0; 
    border-radius: 10px; 
    overflow: hidden; 
    border: 1px solid #222; 
}
.card img { width: 100%; height: 200px; object-fit: cover; }
.card h3 { margin: 15px 0; }
.price { color: var(--primary-blue); font-weight: bold; display: block; margin-top: 10px; }

/* Responsive (Celulares) */
@media (max-width: 768px) {
    .navbar nav { display: none; } /* En un caso real aquí pondrías un menú hamburguesa */
    .hero h1 { font-size: 2.5rem; }
    .stats { flex-direction: column; gap: 20px; }
    .hero-btns { display: flex; flex-direction: column; gap: 15px; }
    .btn-outline { margin-left: 0; }
}

/* Footer / Mapa */
.footer { padding: 60px 5%; background: #050505; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.fake-map { background: #222; height: 250px; display: flex; align-items: center; justify-content: center; border-radius: 10px; }
.footer-bottom { text-align: center; margin-top: 50px; border-top: 1px solid #222; padding-top: 20px; font-size: 0.8rem; color: var(--text-gray); }