/* Estilos Generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Barra de Navegación */
.navbar {
    background-color: #1a1a2e;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo span {
    color: #4ade80;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4ade80;
}

/* Sección Hero / Inicio */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.hero-content p {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #d1d5db;
}

.btn-primary {
    display: inline-block;
    background-color: #4ade80;
    color: #0f172a;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #22c55e;
}

/* Secciones Generales */
.section {
    padding: 4rem 0;
}

.bg-light {
    background-color: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.section-text {
    max-width: 900px;
    margin: 0 auto 1.2rem;
    font-size: 1.05rem;
    color: #475569;
    text-align: center;
}

/* Tarjetas de Servicios */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-card p {
    color: #64748b;
}

/* Contacto */
.contact-info {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1.05rem;
}

.contact-info p {
    margin: 0.5rem 0;
    color: #334155;
}

/* Pie de Página */
.footer {
    background-color: #1a1a2e;
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.95rem;
}

/* Adaptación a móviles */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .nav-links {
        gap: 1.2rem;
    }
}
