/* Estilos para páginas legales (Privacidad y Términos) */

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--slate-200);
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    color: var(--emerald-700);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    margin-top: 0;
}

.legal-section h3 {
    color: var(--slate-800);
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    position: relative;
}

.legal-section strong {
    color: var(--slate-800);
    font-weight: 600;
}

.legal-acceptance {
    background: var(--slate-50);
    border-left: 4px solid var(--emerald-500);
    padding: 2rem;
    margin-top: 3rem;
    border-radius: 0 8px 8px 0;
    text-align: center;
}

.legal-acceptance p {
    color: var(--slate-700);
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   SEDES & LEGAL - Franja Hero Premium
   ========================================================================== */

.career-hero {
    background: linear-gradient(135deg, var(--emerald-700) 0%, var(--emerald-900) 100%);
    padding: var(--space-16) 0 var(--space-20) 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: inset 0 -20px 40px -20px rgba(0,0,0,0.5);
}

.career-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.05) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.05) 50%, transparent 52%);
    background-size: 30px 30px;
    opacity: 0.6;
    pointer-events: none;
}

.career-hero::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(var(--emerald-400-rgb), 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.career-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(0, 0, 0, 0.2);
    padding: var(--space-2) var(--space-4);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-breadcrumb a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.2s;
}

.hero-breadcrumb a:hover {
    color: var(--white);
}

.hero-breadcrumb .separator {
    font-size: 0.7rem;
    opacity: 0.5;
}

.career-card-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
    color: var(--white);
    padding: var(--space-1) var(--space-4);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.career-hero-title {
    color: var(--white);
    font-size: 3rem;
    font-weight: 900;
    margin-top: var(--space-4);
    margin-bottom: var(--space-3);
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.03em;
}

.career-hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    max-width: 600px;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .career-hero-title {
        font-size: 2rem;
    }
    .career-hero-subtitle {
        font-size: 1.1rem;
    }
    .career-hero {
        padding: var(--space-10) var(--space-4) var(--space-16) var(--space-4);
    }
}
