/* style.css */
:root {
    --primary-color: #004080; /* Azul oscuro corporativo */
    --secondary-color: #0066cc; /* Azul más claro */
    --accent-color: #666; /* Gris para textos */
    --light-bg: #f4f4f4;
    --white: #ffffff;
    --max-width: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--light-bg);
}

/* Header & Nav */
header {
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-container img {
    height: 60px; /* Ajusta según tu logo */
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 64, 128, 0.9), rgba(0, 64, 128, 0.7)), url('https://source.unsplash.com/1600x900/?office,consulting'); /* Imagen de fondo genérica */
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Main Content */
.main-content {
    padding: 40px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
    background: var(--white);
    min-height: 60vh;
}

.section-title {
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Services Grid (Home) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-card {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 5px;
    border-left: 5px solid var(--primary-color);
    transition: transform 0.2s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    margin-top: 10px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

/* List Styling */
.content-list {
    list-style-type: none;
}

.content-list li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 24 24"><path fill="%23004080" d="M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z"/></svg>') no-repeat left center;
    padding-left: 20px;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.social-icons {
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        height: auto;
        padding: 15px;
    }
    nav ul {
        flex-direction: column;
        text-align: center;
        margin-top: 15px;
    }
    nav ul li {
        margin: 10px 0;
    }
}