/* Configuración General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

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

/* Navbar */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0047FF; /* Color corporativo azul */
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: #555;
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #0047FF;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #666;
}

.btn-main {
    background: #0047FF;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin-right: 15px;
}

.btn-secondary {
    border: 2px solid #0047FF;
    color: #0047FF;
    padding: 13px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
}

/* Servicios */
.services {
    padding: 80px 0;
    background: white;
}

.services h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.card {
    padding: 40px;
    background: #f9f9f9;
    border-radius: 12px;
    transition: transform 0.3s;
    border: 1px solid #eee;
}

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

footer {
    padding: 40px 0;
    text-align: center;
    background: #1a1a1a;
    color: white;
}
