/* ═══════════════════════════════════════════════════════════
   HERO — Secção de entrada com gradiente azul profundo
   ═══════════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 24px 60px;
    position: relative;
    overflow: hidden;
}

/* Gradiente de fundo moderno e tecnológico */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg,
        #060f2a 0%,
        #0e2262 40%,
        #1a3a9f 70%,
        #1e4db7 100%);
    pointer-events: none;
    z-index: 0;
}

/* Malha de pontos subtil */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    /* background-image:
        radial-gradient(circle, rgba(96, 165, 250, 0.12) 1px, transparent 1px); */
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

/* Todos os filhos acima do pseudo-element */
.hero > * { position: relative; z-index: 1; }

/* ── Ícone de topo com glow ── */
.hero-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.25);
    border: 1.5px solid rgba(96, 165, 250, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-light);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards, pulseGlow 3s ease-in-out 1.1s infinite;
}

/* ── Logo branco ── */
.logo-hero {
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeInUp 0.9s ease 0.5s forwards;
}
.logo-hero img {
    height: 110px;
    width: auto;
    filter: drop-shadow(0 8px 24px rgba(96, 165, 250, 0.25));
}

/* ── Título principal — muito grande e bold ── */
.hero-title {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 0.9s ease 0.7s forwards;
}

/* ── Subtítulo curto ── */
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    max-width: 620px;
    line-height: 1.65;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeInUp 0.9s ease 0.9s forwards;
}

/* ── CTAs ── */
.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.9s ease 1.1s forwards;
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-pill);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Botão primário — gradiente azul */
.btn-primary {
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-light));
    color: var(--white);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.4);
}

/* Efeito de brilho ao hover */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.55s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
}

/* Botão secundário — contorno */
.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--blue-light);
    transform: translateY(-3px);
}


/* ── Esferas flutuantes decorativas ── */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.18) 0%, transparent 70%);
}

.fe-1 {
    width: 600px; height: 600px;
    top: -20%; left: -5%;
    animation: floatMove1 32s ease-in-out infinite;
}
.fe-2 {
    width: 500px; height: 500px;
    bottom: -10%; right: -5%;
    animation: floatMove2 38s ease-in-out infinite;
}
.fe-3 {
    width: 200px; height: 200px;
    top: 55%; left: 20%;
    animation: floatMove3 28s ease-in-out infinite;
}


/* ── Keyframes ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 30px var(--blue-glow), 0 0 60px rgba(96,165,250,0.15); }
    50%       { box-shadow: 0 0 50px rgba(96,165,250,0.6), 0 0 90px rgba(96,165,250,0.25); }
}

@keyframes floatMove1 {
    0%,100% { transform: translate(0, 0) scale(1); }
    30%     { transform: translate(60px, -40px) scale(1.08); }
    65%     { transform: translate(30px, 50px) scale(0.95); }
}
@keyframes floatMove2 {
    0%,100% { transform: translate(0, 0) scale(1); }
    40%     { transform: translate(-50px, 40px) scale(1.1); }
    70%     { transform: translate(30px, -30px) scale(0.92); }
}
@keyframes floatMove3 {
    0%,100% { transform: translate(0, 0); }
    50%     { transform: translate(40px, -40px); }
}


/* ─── Responsive: Hero ─── */
@media (max-width: 768px) {
    .hero { padding: 100px 20px 60px; }
    .hero-icon { width: 60px; height: 60px; }
    .logo-hero img { height: 85px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .btn { width: 220px; text-align: center; }
}


/* ═══════════════════════════════════════════════════════════
   ABOUT — Fundo claro, missão e galeria
   ═══════════════════════════════════════════════════════════ */
.about-section {
    background: var(--off-white);
    padding: 80px 0;
}

/* Utilidade de container partilhada por todas as secções */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Cabeçalho de secção reutilizável */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.section-divider {
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-bright), var(--blue-light));
    border-radius: 2px;
    margin: 0 auto;
}

.about-content {
    max-width: 840px;
    margin: 0 auto 48px;
    text-align: center;
}
.about-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Galeria de 3 fotos */
.photo-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1050px;
    margin: 0 auto;
}

.photo-card { transition: transform 0.3s ease; }
.photo-card:hover { transform: translateY(-8px); }

.photo-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    aspect-ratio: 4 / 3;
    position: relative;
}
.photo-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,0.28));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.photo-card:hover .photo-wrapper::after { opacity: 1; }

.photo-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.photo-card:hover .photo-wrapper img { transform: scale(1.06); }


@media (max-width: 900px) {
    .photo-trio { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .about-section { padding: 60px 0; }
}


/* ═══════════════════════════════════════════════════════════
   EXPLORE — Cards de navegação rápida
   ═══════════════════════════════════════════════════════════ */
.explore-section {
    background: var(--white);
    padding: 80px 0;
}

.explore-section h2 { color: var(--text-dark); }

.explore-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.65;
}

.explore-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.explore-card {
    background: var(--white);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.explore-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(37, 99, 235, 0.25);
}

.card-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    color: var(--blue-bright);
}
.card-icon svg { transition: transform 0.3s ease; }
.explore-card:hover .card-icon svg { transform: scale(1.15) rotate(4deg); }

.explore-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.explore-card p {
    font-size: 0.97rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 24px;
}

.learn-more {
    display: inline-block;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--blue-bright);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}
.learn-more:hover {
    color: var(--blue-mid);
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .explore-cards { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 768px) {
    .explore-section { padding: 60px 0; }
}


/* ═══════════════════════════════════════════════════════════
   EDUCATIVA STATS — Banner azul com números de impacto
   ═══════════════════════════════════════════════════════════ */
.educativa-hero {
    background: linear-gradient(135deg, #0e2262 0%, #1a3a9f 55%, #1e4db7 100%);
    color: var(--white);
    padding: 72px 24px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Efeito de malha subtil */
.educativa-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
}

.educativa-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.educativa-hero h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
}
.educativa-hero p {
    font-size: 1.1rem;
    opacity: 0.88;
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.65;
}

.educativa-hero-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}
.educativa-hero-stat { text-align: center; }
.educativa-hero-stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1;
}
.educativa-hero-stat-label {
    font-size: 0.95rem;
    opacity: 0.85;
    font-weight: 500;
}

@media (max-width: 600px) {
    .educativa-hero-stats { gap: 36px; }
}


/* ═══════════════════════════════════════════════════════════
   CONTACT CTA — Secção final de call-to-action
   ═══════════════════════════════════════════════════════════ */
.contact-section {
    background: var(--off-white);
    padding: 80px 24px;
    text-align: center;
}

.contact-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.contact-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.65;
}

.contact-btn {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-light));
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.35);
    transition: var(--transition);
}
.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
}


/* ═══════════════════════════════════════════════════════════
   POPUP DE CONTACTO
   ═══════════════════════════════════════════════════════════ */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 50, 0.75);
    backdrop-filter: blur(4px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.25s ease;
}
.popup-overlay.active { display: flex; }

.popup-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    max-width: 480px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.3s ease;
}

.popup-close {
    position: absolute;
    top: 14px; right: 14px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    line-height: 1;
}
.popup-close:hover { background: var(--off-white); color: var(--text-dark); }

.popup-content h2 {
    font-size: 1.7rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 20px;
}
.popup-divider {
    width: 56px; height: 4px;
    background: linear-gradient(90deg, var(--blue-bright), var(--blue-light));
    border-radius: 2px;
    margin: 0 auto 28px;
}
.popup-contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.popup-social-links {
    display: flex;
    justify-content: center;
}
.popup-social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 22px;
    background: var(--off-white);
    border-radius: 12px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    width: 100%;
    max-width: 340px;
    transition: var(--transition);
}
.popup-social-link:hover {
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-light));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,99,235,0.3);
}

@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

@media (max-width: 768px) {
    .popup-content { padding: 28px 20px; }
    .popup-social-link { max-width: 100%; justify-content: center; }
}





/* ════════════════════════════════════════════════════
           SECÇÃO DE NOVIDADES
        ════════════════════════════════════════════════════ */
        .news-section {
            background: var(--white);
            padding: 88px 0 96px;
            position: relative;
            overflow: hidden;
        }

        /* Linha decorativa topo */
        .news-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--blue-mid), var(--blue-bright), var(--blue-light), var(--blue-bright), var(--blue-mid));
            background-size: 200% 100%;
            animation: shimmerLine 3s linear infinite;
        }

        @keyframes shimmerLine {
            0%   { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 48px;
        }

        /* ── Cabeçalho da secção ── */
        .news-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 52px;
            gap: 24px;
            flex-wrap: wrap;
        }

        .news-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--blue-bright);
            margin-bottom: 12px;
        }

        .news-label::before {
            content: '';
            display: inline-block;
            width: 24px;
            height: 2px;
            background: var(--blue-bright);
            border-radius: 2px;
        }

        .news-header h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            color: var(--text-dark);
            line-height: 1.1;
        }

        .news-header h2 span {
            background: linear-gradient(135deg, var(--blue-bright), var(--blue-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .news-view-all {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--blue-bright);
            text-decoration: none;
            padding: 10px 20px;
            border: 1.5px solid rgba(37,99,235,0.25);
            border-radius: var(--radius-pill);
            transition: var(--transition);
            white-space: nowrap;
        }

        .news-view-all:hover {
            background: var(--blue-bright);
            color: var(--white);
            border-color: var(--blue-bright);
            transform: translateY(-2px);
        }

        .news-view-all svg { transition: transform 0.3s ease; }
        .news-view-all:hover svg { transform: translateX(4px); }


        /* ════════════════════════════════════════
           GRID
        ════════════════════════════════════════ */
        /** PARA APENAS UMA NOTICIA **/
        .highlight-new {
            display: grid;
            grid-template-columns: 1fr;
        }

        .highlight-new .news-card.card-recrutamento {
            grid-row: auto;
            flex-direction: row;
            align-items: center;
            gap: 48px;
            padding: 52px 56px;
        }

        .highlight-new .card-recrutamento .card-orb {
            width: 500px;
            height: 500px;
        }
        
        /** PARA VÁRIAS NOTÍCIAS **/
        .news-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 24px;
        }

        /* Card grande de recrutamento — ocupa a coluna esquerda inteira */
        .news-card-featured {
            grid-row: 1 / 3;
            background: linear-gradient(155deg, #060f2a 0%, #0e2262 50%, #1a3a9f 100%);
            border-radius: var(--radius-lg);
            padding: 40px 36px;
            position: relative;
            overflow: hidden;
            display: block;
            flex-direction: column;
            justify-content: flex-end;
            min-height: 400px;
            cursor: pointer;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            text-decoration: none;
        }

        .news-card-featured:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 64px rgba(37,99,235,0.35);
        }

        .news-card-featured::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
            background-size: 32px 32px;
            pointer-events: none;
        }

        .news-card-featured::after {
            content: '';
            position: absolute;
            width: 420px; height: 420px;
            top: -80px; right: -80px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(96,165,250,0.18) 0%, transparent 65%);
            pointer-events: none;
        }

        .featured-rocket {
            position: absolute;
            top: 28px;
            right: 32px;
            font-size: 5.5rem;
            line-height: 1;
            opacity: 0.15;
            animation: rocketFloat 5s ease-in-out infinite;
            z-index: 0;
        }

        @keyframes rocketFloat {
            0%, 100% { transform: translateY(0) rotate(-15deg); }
            50%       { transform: translateY(-14px) rotate(-10deg); }
        }

        .featured-content { position: relative; z-index: 1; }

        .featured-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(245, 158, 11, 0.2);
            border: 1px solid rgba(245, 158, 11, 0.5);
            color: #fbbf24;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 5px 14px;
            border-radius: var(--radius-pill);
            margin-bottom: 20px;
        }

        .featured-badge-dot {
            width: 7px; height: 7px;
            border-radius: 50%;
            background: #fbbf24;
            animation: pulseDot 1.5s ease-in-out infinite;
        }

        @keyframes pulseDot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50%       { opacity: 0.5; transform: scale(0.75); }
        }

        .featured-title {
            font-size: clamp(1.6rem, 2.5vw, 2.2rem);
            font-weight: 800;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 14px;
        }

        .featured-description {
            font-size: 0.97rem;
            color: rgba(255,255,255,0.75);
            line-height: 1.7;
            margin-bottom: 28px;
        }

        .featured-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 28px;
            flex-wrap: wrap;
        }

        .featured-meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.82rem;
            color: rgba(255,255,255,0.65);
            font-weight: 500;
        }

        .featured-meta-item svg { color: var(--blue-light); flex-shrink: 0; }

        .featured-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--blue-bright), var(--blue-light));
            color: var(--white);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            padding: 13px 28px;
            border-radius: var(--radius-pill);
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 6px 24px rgba(37,99,235,0.4);
            width: fit-content;
        }

        .featured-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(37,99,235,0.55);
        }

        .featured-cta svg { transition: transform 0.3s ease; }
        .featured-cta:hover svg { transform: translateX(4px); }


        /* ════════════════════════════════════════
           CARDS SECUNDÁRIOS
        ════════════════════════════════════════ */
        .news-card {
            background: var(--white);
            border: 1px solid rgba(37,99,235,0.1);
            border-radius: var(--radius-lg);
            padding: 28px 28px 24px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            box-shadow: var(--shadow-card);
            transition: var(--transition);
            cursor: pointer;
            text-decoration: none;
            color: inherit;
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(37,99,235,0.22);
        }

        .card-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.73rem;
            font-weight: 700;
            letter-spacing: 0.09em;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: var(--radius-pill);
            width: fit-content;
        }

        .tag-evento  { background: rgba(16,185,129,0.1);  color: var(--accent-green); border: 1px solid rgba(16,185,129,0.25); }
        .tag-projeto { background: rgba(37,99,235,0.1);   color: var(--blue-bright);  border: 1px solid rgba(37,99,235,0.2); }
        .tag-novidade{ background: rgba(245,158,11,0.1);  color: var(--accent-gold);  border: 1px solid rgba(245,158,11,0.25); }

        .news-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.4;
        }

        .news-card p {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.65;
            flex: 1;
        }

        .card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 6px;
        }

        .card-date { font-size: 0.78rem; color: #94a3b8; font-weight: 500; }

        .card-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px; height: 32px;
            border-radius: 50%;
            background: var(--off-white);
            color: var(--blue-bright);
            transition: var(--transition);
        }

        .news-card:hover .card-arrow { background: var(--blue-bright); color: var(--white); }


        /* ════════════════════════════════════════
           BANNER HORIZONTAL
        ════════════════════════════════════════ */
        .recruit-banner {
            margin-top: 40px;
            background: linear-gradient(135deg, var(--off-white) 0%, #e8eeff 100%);
            border: 1px solid rgba(37,99,235,0.15);
            border-radius: var(--radius-lg);
            padding: 36px 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
        }

        .recruit-banner::before {
            content: '';
            position: absolute;
            right: -40px; top: -40px;
            width: 240px; height: 240px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .recruit-banner-text h3 { font-size: 1.35rem; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
        .recruit-banner-text p  { font-size: 0.92rem; color: var(--text-muted); }

        .recruit-banner-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

        .btn-recruit-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--blue-bright), var(--blue-light));
            color: var(--white);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.92rem;
            font-weight: 700;
            padding: 12px 26px;
            border-radius: var(--radius-pill);
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 16px rgba(37,99,235,0.35);
        }

        .btn-recruit-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,0.5); }

        .btn-recruit-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--blue-bright);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.92rem;
            font-weight: 600;
            padding: 12px 26px;
            border-radius: var(--radius-pill);
            text-decoration: none;
            border: 1.5px solid rgba(37,99,235,0.3);
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-recruit-secondary:hover { background: rgba(37,99,235,0.06); border-color: var(--blue-bright); transform: translateY(-2px); }

        /* ── Responsive ── */
        @media (max-width: 900px) {
            .news-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
            .news-card-featured { grid-row: auto; min-height: 360px; }
        }

        @media (max-width: 768px) {
            .container { padding: 0 20px; }
            .news-section { padding: 64px 0 72px; }
            .news-header { flex-direction: column; align-items: flex-start; }
            .news-card-featured { padding: 28px 24px; min-height: 320px; }
            .recruit-banner { padding: 28px 24px; }
            .recruit-banner-actions { width: 100%; }
            .btn-recruit-primary, .btn-recruit-secondary { flex: 1; justify-content: center; }
        }