:root {
    --new-primary: #2563EB;
    --new-secondary: #0EA5E9;
    --new-accent: #10B981;
    --new-light: #F8FAFC;
    --new-dark: #1E293B;
    --text-main: #334155;
    --text-muted: #64748B;
    --card-bg: #FFFFFF;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(37, 99, 235, 0.15);
}

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

body {
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    background-color: var(--new-light);
    color: var(--text-main);
    line-height: 1.6;
}

.page-container {
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Accentos de Fondo (Estilo Geométrico Suave) */
.bg-accent-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 60%;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(255, 255, 255, 0));
    border-bottom-left-radius: 100px;
    z-index: 0;
}

.bg-accent-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35%;
    height: 40%;
    background: linear-gradient(45deg, rgba(16, 185, 129, 0.05), rgba(255, 255, 255, 0));
    border-top-right-radius: 100px;
    z-index: 0;
}

/* Contenedor de Contenido Principal */
.content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Sección Hero (Rediseñada Completa) */
.hero-section {
    text-align: center;
    padding: 4rem 0 2rem;
    margin-bottom: 3rem;
}

.hero-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--new-primary), var(--new-secondary));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.2);
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--new-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-cta {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--new-primary), var(--new-secondary));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Tarjetas de Características (Nuevo Layout) */
.features-section {
    margin-bottom: 4rem;
}

.section-heading {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--new-dark);
    margin-bottom: 2.5rem;
    position: relative;
}

.section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--new-accent);
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

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

.feature-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 2rem;
    color: var(--new-primary);
    margin-bottom: 1.2rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--new-dark);
    margin-bottom: 0.8rem;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Sección de Tipos de Trabajo (Nuevo Contenido) */
.jobs-section {
    margin-bottom: 4rem;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.job-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 2.2rem 1.8rem;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--new-accent);
}

.job-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--new-dark);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.job-title i {
    color: var(--new-accent);
}

.job-desc {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.job-requirements {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.job-tag {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--new-accent);
    border-radius: 20px;
}

/* Historias de Éxito (Nueva Sección) */
.stories-section {
    margin-bottom: 4rem;
}

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

.story-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.story-quote {
    font-size: 2.5rem;
    color: rgba(37, 99, 235, 0.1);
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.story-text {
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--new-light);
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--new-dark);
    font-weight: 600;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Proceso de Solicitud (Simplificado) */
.process-section {
    margin-bottom: 4rem;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: rgba(37, 99, 235, 0.2);
    transform: translateX(-50%);
    z-index: 0;
}

.process-step {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--new-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 1.5rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--new-dark);
    margin-bottom: 0.5rem;
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Sección CTA (Nuevo Diseño) */
.cta-section {
    background: linear-gradient(135deg, var(--new-primary), var(--new-secondary));
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-soft);
}

.cta-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-desc {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-button {
    padding: 1.1rem 2.2rem;
    background-color: white;
    color: var(--new-primary);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Pie de Página y Descargo de Responsabilidad (Actualizado) */
.footer-section {
    background-color: var(--new-dark);
    color: white;
    padding: 3rem 2rem 2rem;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.8rem;
    border-radius: 10px;
}

.disclaimer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--new-accent);
}

.disclaimer-list {
    list-style: none;
    font-size: 0.9rem;
    opacity: 0.8;
}

.disclaimer-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.disclaimer-list li::before {
    content: '•';
    color: var(--new-accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--new-accent);
    text-decoration: underline;
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Botón Flotante (Nueva Posición/Estilo) */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--new-primary), var(--new-secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

.floating-cta:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Ajustes Responsivos (Adaptados al Español) */
@media (max-width: 768px) {
    .process-steps::before {
        left: 20px;
    }

    .process-step,
    .process-step:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-number {
        margin-left: 0;
        margin-bottom: 1rem;
    }

    .hero-section {
        padding: 2.5rem 0 1.5rem;
    }

    .features-grid,
    .jobs-grid,
    .stories-grid {
        gap: 1.2rem;
    }

    .cta-section {
        padding: 2.2rem 1.5rem;
    }

    /* Ajuste de texto largo en móviles */
    .feature-desc,
    .job-desc,
    .step-desc {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}
