/* =====================================================================
   PAGE MODULE — acerca-oportunidades
   Extracted verbatim from inline <style> of: en/about/opportunities.html, acerca/oportunidades.html
   Design unchanged; loaded via `pageCss` front-matter.
   ===================================================================== */

/* Gradient Text for Light Backgrounds */
.gradient-text {
    background: linear-gradient(135deg, 
        var(--primary-navy) 0%, 
        var(--primary-magenta) 60%, 
        var(--secondary-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Hero Section */
.careers-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 6rem;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-purple) 50%, var(--primary-magenta) 100%);
    overflow: hidden;
}

.careers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(23, 167, 175, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.careers-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.careers-hero h1 {
    font-family: 'Quattrocento Sans', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.careers-hero h2 {
    font-family: 'Mirza', serif;
    font-weight: 500;
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.careers-hero p {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-hero {
    background: var(--secondary-teal);
    color: var(--white);
    border: 2px solid var(--secondary-teal);
    box-shadow: 0 4px 20px rgba(23, 167, 175, 0.3);
}

.btn-primary-hero:hover,
.btn-primary-hero:focus,
.btn-primary-hero:active {
    background: var(--secondary-dark-teal) !important;
    border-color: var(--secondary-dark-teal) !important;
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(23, 167, 175, 0.5) !important;
}

.btn-secondary-hero {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary-hero:hover,
.btn-secondary-hero:focus,
.btn-secondary-hero:active {
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--primary-navy) !important;
    border-color: var(--white) !important;
    transform: translateY(-3px);
}

/* Why Join Section */
.why-join-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.why-join-content {
    max-width: 1100px;
    margin: 0 auto;
}

.why-join-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.why-join-header h3 {
    font-family: 'Mirza', serif;
    font-weight: 500;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.why-join-header h3:not(.gradient-text) {
    color: var(--primary-navy);
}

.why-join-header p {
    font-size: 1.2rem;
    color: var(--primary-navy);
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.benefit-card {
    background: linear-gradient(180deg, #FAF9F6 0%, #F5F3F0 100%);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card h4 {
    font-family: 'Mirza', serif;
    font-weight: 500;
    font-size: 1.75rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--primary-navy);
    margin-bottom: 1.25rem;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--primary-navy);
    font-size: 1rem;
}

.benefit-list li::before {
    content: "\f00c";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-teal);
}

/* Current Opening Section */
.opening-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #FAF9F6 0%, #F5F3F0 100%);
}

.opening-content {
    max-width: 1000px;
    margin: 0 auto;
}

.opening-header {
    text-align: center;
    margin-bottom: 3rem;
}

.opening-header h3 {
    font-family: 'Mirza', serif;
    font-weight: 500;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.opening-header h3:not(.gradient-text) {
    color: var(--primary-navy);
}

.opening-header .status-badge {
    display: block;
    background: var(--secondary-orange);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
    width: fit-content;
}

.job-card {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-magenta);
}

.job-header {
    margin-bottom: 2rem;
}

.job-title {
    font-family: 'Mirza', serif;
    font-weight: 500;
    font-size: 2.25rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.job-subtitle {
    font-size: 1.15rem;
    color: var(--secondary-purple);
    font-weight: 600;
    margin-bottom: 1rem;
}

.job-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 1rem;
    color: var(--primary-navy);
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-meta-item i {
    color: var(--secondary-teal);
}

.job-section {
    margin: 2.5rem 0;
}

.job-section h5 {
    font-family: 'Mirza', serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.job-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-section li {
    padding: 0.3rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--primary-navy);
    font-size: 1.05rem;
    line-height: 1.6;
}

.job-section li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-teal);
    font-weight: 700;
    font-size: 1.3rem;
}

.apply-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 1.1rem 3rem;
    background: var(--primary-magenta);
    color: var(--white);
    font-family: 'Quattrocento Sans', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid var(--primary-magenta);
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(166, 25, 99, 0.3);
    margin-top: 2rem;
}

.apply-cta:hover,
.apply-cta:focus,
.apply-cta:active {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(166, 25, 99, 0.5) !important;
    background: var(--secondary-purple) !important;
    border-color: var(--secondary-purple) !important;
    color: var(--white) !important;
}

/* Filled Position Banner */
.filled-banner {
    background: linear-gradient(135deg, #1a3a1a 0%, #2d5a2d 100%);
    border-radius: 12px;
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.filled-banner-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filled-banner-icon i {
    font-size: 1.75rem;
    color: #7ecf7e;
}

.filled-banner-text h4 {
    font-family: 'Mirza', serif;
    font-weight: 500;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.filled-banner-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

/* Always Watching Grid */
.watching-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.watching-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border-top: 4px solid var(--secondary-teal);
    transition: all 0.3s ease;
}

.watching-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.11);
    border-top-color: var(--primary-magenta);
}

.watching-card h5 {
    font-family: 'Mirza', serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.watching-card .watching-tag {
    display: inline-block;
    background: rgba(23, 167, 175, 0.12);
    color: var(--secondary-teal);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    margin-bottom: 1.25rem;
}

.watching-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--primary-navy);
    margin-bottom: 1.25rem;
}

.watching-card a.watching-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--secondary-teal);
    font-family: 'Quattrocento Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.watching-card a.watching-link:hover {
    gap: 0.7rem;
    color: var(--primary-magenta);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h3 {
    font-family: 'Mirza', serif;
    font-weight: 500;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 1rem;
}

.faq-header h3:not(.gradient-text) {
    color: var(--primary-navy);
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-question {
    font-family: 'Mirza', serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.faq-answer {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--primary-navy);
}

/* Related Links */
.related-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #FAF9F6 0%, #F5F3F0 100%);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.related-link {
    display: block;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--secondary-teal);
}

.related-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    border-left-color: var(--primary-magenta);
}

.related-link h4 {
    font-family: 'Mirza', serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.related-link p {
    font-size: 1rem;
    color: var(--primary-navy);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .careers-hero {
        min-height: 65vh;
        padding: 6rem 1.5rem 4rem;
    }
    
    .careers-hero h1 {
        font-size: 1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        max-width: 300px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .watching-grid {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }

    .filled-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
}
