/* --- CONFIGURACIÓN BASE --- */
:root {
    --primary: #20ad96;    /* Verde Esmeralda MaxCoach */
    --secondary: #3f3a64;  /* Morado Profundo */
    --bg-soft: #fdfaf7;    /* Fondo Crema Suave */
    --text-main: #696969;  /* Gris de lectura */
    --white: #ffffff;
    --font-onest: 'Onest', sans-serif;
}

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

body {
    font-family: var(--font-onest);
    background-color: var(--bg-soft);
    color: var(--text-main);
    line-height: 1.6;
}

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

/* --- HEADER & NAVEGACIÓN --- */
.main-header {
    background: var(--bg-soft);
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--secondary);
    text-decoration: none;
    letter-spacing: -1px;
}

.logo span { color: var(--primary); }

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

.nav-links a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--primary); }

/* --- SECCIÓN HERO --- */
.hero { padding: 100px 0; }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text span.badge {
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    display: block;
    margin-bottom: 15px;
}

.hero-text h1 {
    font-size: 3.8rem;
    color: var(--secondary);
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 500px;
}

.highlight { color: var(--primary); }

.hero-image { position: relative; }

.hero-image img {
    width: 100%;
    border-radius: 20px;
}

.floating-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* --- SERVICIOS --- */
.services { padding: 100px 0; background: #fff; }

.section-title { text-align: center; margin-bottom: 60px; }

.section-title span { color: var(--primary); font-weight: 600; }

.section-title h2 { font-size: 2.5rem; color: var(--secondary); margin-top: 10px; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    padding: 50px 40px;
    text-align: center;
    background: var(--bg-soft);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.service-card:hover { 
    transform: translateY(-15px); 
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.icon-box { font-size: 40px; margin-bottom: 20px; }

/* --- LISTADO DE EMPLEOS --- */
.jobs-preview { padding: 100px 0; }

.job-card {
    background: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    border: 1px solid transparent;
    transition: 0.3s;
}

.job-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(32, 173, 150, 0.1);
}

.job-info h3 { color: var(--secondary); margin-bottom: 5px; }

.job-tag {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
}

.center-text { text-align: center; margin-top: 40px; }