/* 1. CONFIGURACIÓN BASE Y TIPOGRAFÍA DEL SISTEMA (Inter-like) */
:root {
    --brand-dark: #0F172A;   /* 60% Azul Noche */
    --brand-orange: #F97316; /* 30% Naranja Neón */
    --brand-light: #F8FAFC;  /* 10% Gris Ultra Claro */
    --white: #FFFFFF;
    --slate-200: #E2E8F0;
    --slate-300: #CBD5E1;
    --slate-400: #94A3B8;
    --slate-500: #64748B;
    --slate-600: #475569;
    --slate-100: #F1F5F9;
    --emerald-500: #10B981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --orange-50: #FFF7ED;
    --orange-600: #EA580C;
}
/* RESETEO BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Intel', 'Roboto', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    color: #333;
    background-color: #f9f9f9;
}

/* HEADER & NAVEGACIÓN */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.header {
    background-color: var(--brand-dark);
}
.nav a {
    text-decoration: none;
    color: #555;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #0070f3;
}

/* SECCIÓN HERO */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-dark) 100%);
    color: white;
    padding: 0 20px;
}

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-main {
    display: inline-block;
    padding: 12px 30px;
    background-color: white;
    color: #0070f3;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* SECCIÓN DE SERVICIOS */
.services {
    padding: 80px 5%;
    text-align: center;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #222;
}

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

.card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

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

.card h3 {
    margin-bottom: 15px;
    color: #0070f3;
}

.card p {
    color: #666;
    line-height: 1.6;
}
.badge {
    align-self: flex-start;
    padding: 6px 12px;
    background-color: #F1F5F9;
    color: #475569;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
}

.badge.activo {
    background-color: #DCFCE7;
    color: #15803D;
}

/* FOOTER */
.footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 15px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .logo_header {
        height: 32px;
    }
}

