/* Importação da fonte Encode Sans */

@import url("https://fonts.googleapis.com/css2?family=Encode+Sans:wght@300;400;500;600;700&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Encode Sans", sans-serif;
    font-display: swap;
}

body {
    color: #343a40;
    line-height: 1.6;
    background-color: #e9ecef;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
    font-family: "Encode Sans", sans-serif;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.4);
}

::-webkit-scrollbar-corner {
    background: transparent;
}

.emphasis {
    font-weight: 600;
}

.general-button {
    display: flex;
    margin: 0 auto;
    background-color: #3042eb;
    width: 20vw;
    min-width: 370px;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.general-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


/* -------------------- Navbar Styles -------------------- */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: #f8f9fa;
}

.nav-container {
    width: 100%;
    padding: 2.4vw 6.4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    position: relative;
    height: 48px;
    width: 242px;
}

.logo {
    height: 100%;
    transition: opacity 0.3s ease;
}

.logo-default {
    opacity: 1;
}

.logo-scrolled {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}


/* Quando a navbar está com scroll */

.navbar.scrolled .logo-scrolled {
    opacity: 1;
}

.navbar.scrolled .logo-default {
    opacity: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-link {
    color: #333;
}

.nav-link:hover {
    font-size: 18px;
}


/* Estados ativos dos links */

.nav-link.active {
    font-size: 16px;
    font-weight: 900;
}

.nav-link.active:hover {
    font-size: 18px;
    font-weight: 900;
}

.navbar.scrolled .nav-link.active {
    color: #3042eb;
}

.nav-button {
    background-color: white;
    height: 38px;
    color: #3042eb;
    padding: 0px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.navbar.scrolled .nav-button {
    background-color: #3042eb;
    color: white;
}

.nav-button:hover {
    background-color: #3042eb !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 20px;
    height: 2px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

.navbar.scrolled .bar {
    background-color: #1a4b9f;
}


/* --------------------------------- Seção Hero com imagem de fundo fixa ------------------------------ */

.hero {
    height: 100vh;
    margin-top: 0;
    background-image: url("./imagem_de_fundo_LP.webp");
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    align-self: center;
    z-index: 1;
    color: white;
    text-align: left;
    margin: auto 0;
    width: 100%;
    padding: 0 6.4vw;
}

.hero h1 {
    max-width: 600px;
    line-height: 1.25;
    font-size: 65px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    font-weight: 500;
    max-width: 600px;
}


/* Container das abas */

.tabs-container {
    display: flex;
    width: 31%;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin: 0 auto;
}

.tab {
    flex: 1;
    padding: 8px 16px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab:hover {
    background-color: #3042eb;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.tab.active {
    background-color: #3042eb;
    color: white;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}


/* -------------------------------------- Conteúdo das abas Candidato ---------------------------------- */

.tab-content {
    padding: 80px 0 0;
}

.section-header {
    text-align: center;
    padding: 0 6.4vw;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 300;
    color: #232c60;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-header p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 24px;
}

.journey-section {
    margin-top: 72px;
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
    padding-top: 20px;
}

.carousel-container {
    width: 100%;
    position: relative;
    padding: 8px 6.4vw;
}

.carousel-wrapper {
    overflow: visible;
    border-radius: 15px;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 40px;
    backdrop-filter: blur(10px);
}

.card {
    height: 310px;
    max-width: 294px;
    flex: 0 0 23.4vw;
    background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #3042eb, transparent) border-box;
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -40px;
    width: 40px;
    height: 2px;
    background-image: repeating-linear-gradient(to right, #3042eb 0px, #3042eb 3px, transparent 3px, transparent 6px);
    transform: translateY(-50%);
    z-index: 1;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.card-header {
    margin-bottom: 15px;
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    color: #232c60;
    margin-bottom: 5px;
    line-height: 1.3;
}

.card-subtitle {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-description {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 20px;
    overflow: hidden;
}

.card-button {
    background: white;
    color: #3042eb;
    border: 1px solid #3042eb;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    position: absolute;
    bottom: 25px;
}

.card-button:hover {
    background: #3042eb;
    transform: translateX(3px);
    color: white;
}

.card-button::after {
    content: "→";
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.card-button:hover::after {
    transform: translateX(3px);
}


/* BOTÕES DO CARROSSEL CONSOLIDADOS */

.control-btn,
.job-control-btn {
    width: 45px;
    height: 45px;
    border: 1px solid #3042eb;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #3042eb;
    font-size: 24px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    line-height: 1;
}

.job-control-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #232c60;
}

.job-control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    color: white;
}

.control-btn:disabled,
.job-control-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.job-control-btn:disabled:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: none;
}

.carousel-controls,
.job-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.job-carousel-controls {
    margin-top: 32px;
}


/* ----------------------------------- Seção Últimas Novidades em Vagas ----------------------------------- */

.job-opportunities {
    background: linear-gradient(to bottom, #3042eb 5%, #76f2ff 100%);
    padding: 40px 0;
    position: relative;
    margin-top: 72px;
    overflow-x: hidden;
}

.job-opportunities-content {
    text-align: center;
    padding: 0 6.4vw;
    color: #f8f9fa;
}

.job-opportunities-content h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 24px;
}

.job-opportunities-content p {
    font-size: 16px;
    margin-bottom: 24px;
}


/* Job Carousel Container */

.job-carousel-container {
    width: 100%;
    position: relative;
    padding: 0;
}

.job-carousel-wrapper {
    overflow: visible;
    border-radius: 15px;
}

.job-carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 16px;
    padding: 0;
}


/* Job Cards */

.job-card {
    height: 200px;
    flex: 0 0 calc(31.2vw - 72px);
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.job-card.featured {
    background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
}


/* Job Card Header */

.job-card-header {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: nowrap;
}


/* Job Badges */

.job-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-badge.tag {
    background-color: #ef5e31;
    color: white;
}

.job-badge.featured-badge {
    background-color: #dbeafe;
    color: #2563eb;
}

.job-badge.location {
    background-color: #f3f4f6;
    color: #1a4b9f;
}


/* Linha do título com logo */

.job-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.job-title {
    flex: 1;
    align-self: center;
    font-size: 15px;
    font-weight: 700;
    color: #232c60;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.3em * 2);
    order: 2;
    text-align: left;
    width: 100%;
}


/* Logo da empresa ao lado do título */

.job-company-logo {
    flex-shrink: 0;
    width: 40px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    order: 1;
}

.job-company-logo img {
    max-width: 40px;
    max-height: 32px;
    object-fit: contain;
    border-radius: 4px;
    background: #ffffff;
    padding: 2px;
    border: 1px solid #e9ecef;
}

.job-company {
    font-size: 12px !important;
    text-align: left;
    color: #1a4b9f;
    margin-bottom: 8px !important;
    font-weight: 600;
    display: block;
    width: 100%;
}

.job-description {
    margin-bottom: 12px !important;
    font-size: 14px !important;
    color: #475569;
    line-height: 1.8;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
    text-overflow: ellipsis;
    max-height: calc(1.4em * 4);
    text-align: left;
}


/* ------------------------------ Seção Benefits CONSOLIDADA -------------------------------------*/

.benefits {
    padding-top: 80px;
    position: relative;
}

.benefits-container {
    padding: 0 6.4vw;
    text-align: center;
}

.benefits h2 {
    font-size: 40px;
    font-weight: 500;
    color: #232c60;
    margin-bottom: 40px;
    text-align: center;
}


/* Cards Container */

.benefits-cards {
    display: flex;
    gap: 32px;
    justify-content: space-between;
    align-items: stretch;
}


/* Benefits Industry Cards Container - Grid Layout */

.benefits-cards-industry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    justify-items: center;
}


/* Últimos 2 cards ocupam o centro da segunda linha */

.benefits-cards-industry .benefit-card:nth-child(4) {
    grid-column: 1/3;
    grid-row: 2;
    justify-self: end;
    margin-right: 16px;
}

.benefits-cards-industry .benefit-card:nth-child(5) {
    grid-column: 2/4;
    grid-row: 2;
    justify-self: start;
    margin-left: 16px;
}

.benefits-cards-industry .benefit-card:nth-child(4),
.benefits-cards-industry .benefit-card:nth-child(5) {
    justify-self: center;
}


/* Individual Benefit Card CONSOLIDADO */

.benefit-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.benefits .benefit-card {
    flex: 1;
    height: 96px;
}

.benefits-industry .benefit-card {
    width: 27vw;
    height: 96px;
    justify-self: center;
}


/* Hover Effect CONSOLIDADO */

.benefit-card:hover {
    transform: scale(1.05);
    border-color: #1a4b9f;
    box-shadow: 0 20px 40px rgba(26, 75, 159, 0.3);
}

.benefits .benefit-card:hover {
    background: #1a4b9f;
}

.benefits-industry .benefit-card:hover {
    background: #76f2ff;
    border-color: #76f2ff;
}


/* Benefit Icon */

.benefit-icon {
    width: 48px;
    height: 48px;
    background: #e1f5fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #232c60;
    transition: all 0.4s ease;
    font-size: 24px;
    flex-shrink: 0;
}

.benefits .benefit-card:hover .benefit-icon {
    background: #1a4b9f;
    color: white;
    transform: scale(1.1);
}

.benefits-industry .benefit-card:hover .benefit-icon {
    background-color: #76f2ff;
    color: #232c60;
    transform: scale(1.1);
}


/* Benefit Title */

.benefit-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: #232c60;
    margin: 0;
    text-align: left;
    flex: 1;
    transition: color 0.4s ease;
}

.benefits .benefit-card:hover h3 {
    color: white;
}

.benefits-industry .benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
}


/* Efeito de borda animada no hover */

.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-card:hover::before {
    left: 100%;
}


/* -------------------------- SlackScroll Section com Background e Fade --------------------------------- */

.slack-scroll {
    position: relative;
    min-height: 100vh;
    height: 90vh;
    overflow: hidden;
    scroll-behavior: smooth;
    background-image: url('./bg-slack-scroll.png');
    background-size: 30vw 30vw;
    background-position: calc(100% - 5vw) 20vh;
    background-repeat: no-repeat;
    z-index: 1;
    scroll-snap-type: y mandatory;
    overflow-x: hidden;
}

.slack-scroll::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.slack-panel {
    height: calc(90vh - 100px);
    min-height: 100vh;
    display: flex;
    align-items: center;
    scroll-snap-align: center;
    position: relative;
    background: transparent;
    z-index: 2;
}

.slack-container {
    padding: 0 6.4vw;
    width: 100%;
    position: relative;
    z-index: 3;
}

.slack-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}


/* Texto lado esquerdo - mantém o estilo existente */

.slack-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 4;
}

.slack-badge {
    background: #E1F5FE;
    color: #1A4B9F;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.slack-text h2 {
    font-size: 40px;
    font-weight: 500;
    color: #1A4B9F;
    line-height: 1.2;
    margin-bottom: 20px;
}

.slack-text p {
    font-size: 16px;
    color: #343a40;
    line-height: 1.4;
    margin-bottom: 24px;
}

.slack-list {
    text-align: left;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.slack-list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

.slack-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3042EB;
    font-weight: bold;
    font-size: 16px;
}

.slack-button {
    background: #3042EB;
    height: 38px;
    color: white;
    border: none;
    padding: 0 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.slack-button:hover {
    background: #232C60;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(48, 66, 235, 0.3);
}


/* ---------------------------- Seção Contrate com Propósito ---------------------------- */

.contrate-proposito {
    position: relative;
    background-image: url("./contrate-proposito-bg.jpg");
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
}


/* Overlay semi-transparente */

.contrate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(118, 242, 255, 0.9);
    z-index: 1;
}

.contrate-container {
    position: relative;
    padding: 60px 6.4vw;
    z-index: 2;
}


/* Header da seção */

.contrate-header {
    text-align: center;
    margin-bottom: 24px;
}

.contrate-header h2 {
    font-size: 40px;
    font-weight: 600;
    color: #232c60;
    margin-bottom: 24px;
}

.contrate-header p {
    font-size: 16px;
    color: #232c60;
    line-height: 1.4;
    margin: 0;
}


/* Container dos cards */

.contrate-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}


/* Cards individuais */

.contrate-card {
    width: calc(24.38vw - 50px);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
}


/* Ícones dos cards */

.contrate-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #232c60;
    font-size: 28px;
}


/* Títulos dos cards */

.contrate-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #232c60;
    margin-bottom: 12px;
}


/* Descrições dos cards */

.contrate-card p {
    font-size: 14px;
    color: #2c5f7a;
    line-height: 1.5;
    margin: 0;
}


/* ---------------------------- Seção SupportRH ---------------------------- */

.support-rh {
    margin-top: 72px;
    position: relative;
    padding: 0 6.4vw;
}

.support-container {
    background-color: #00b39c;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}


/* Texto à esquerda */

.support-text {
    color: white;
    margin-left: 50px;
    padding: 20px 0;
}

.support-text h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 16px;
}

.support-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.support-button {
    background-color: #4051ed;
    color: white;
    border: none;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.support-button:hover {
    background-color: #4051ed;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


/* Container da imagem */

.support-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.support-image img {
    width: 43.6vw;
    height: auto;
    object-fit: cover;
    position: relative;
    z-index: 2;
}


/* ---------------------------- Footer ---------------------------- */

.fiergs-footer {
    background: #f8faff;
    color: #1a4b9f;
    padding: 60px 0 0;
    margin-top: 72px;
}

.footer-container {
    padding: 0 6.4vw;
}


/* Topo do Footer */

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.view-mobile {
    display: none;
}

.footer-logo .logo-img {
    height: 75px;
    width: auto;
}

.footer-contact {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
}

.footer-contact p {
    font-size: 20px;
}

.social-media {
    display: flex;
    gap: 8px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-link img {
    width: 40px;
    height: 40px;
}


/* Meio do Footer */

.footer-middle {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a4b9f;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #212529;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-column a:hover {
    color: #1a4b9f;
    transform: translateX(5px);
}


/* Divisor */

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0), transparent);
    margin: 30px 0;
}


/* Rodapé Inferior */

.footer-bottom-container {
    background: #ced4da;
    width: 100%;
    margin-top: 40px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 6.4vw;
}

.footer-copyright p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #343a40;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #343a40;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
    font-weight: 700;
}

.footer-links a:hover {
    opacity: 1;
    color: #343a40;
}

.carousel-track,
.job-carousel-track {
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.carousel-track:active,
.job-carousel-track:active {
    cursor: grabbing;
}

.carousel-track img,
.job-carousel-track img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}


/* MEDIA QUERIES CONSOLIDADAS */

@media (max-width: 1400px) {
    .slack-content {
        padding-top: 40px;
    }
    .slack-badge {
        margin-bottom: 8px;
    }
    .slack-text h2 {
        font-size: 32px;
        margin-bottom: 12px;
    }
    .slack-text p {
        margin-bottom: 12px;
    }
    .slack-list {
        margin-bottom: 12px;
    }
    .slack-list li {
        padding-left: 12px;
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 1.2;
    }
}

@media (max-width: 1300px) {
    .slack-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding-top: 70px;
    }
    .slack-text {
        align-items: center;
    }
    .slack-badge {
        padding: 8px 16px;
        font-size: 12px;
        margin-bottom: 8px;
    }
    .slack-text h2 {
        font-size: 20px;
        text-align: center;
        margin-bottom: 8px;
    }
    .slack-text p {
        font-size: 14px;
        text-align: left;
        margin-bottom: 12px;
    }
    .slack-list {
        margin-bottom: 8px;
    }
    .slack-list li {
        padding-left: 12px;
        margin-bottom: 4px;
        font-size: 14px;
        line-height: 1.2;
    }
    .slack-button {
        height: auto;
        padding: 8px 20px;
        border-radius: 8px;
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
    .nav-container,
    .section-header,
    .carousel-container,
    .job-opportunities-content,
    .benefits-container,
    .benefits-industry .benefits-container,
    .contrate-container,
    .support-rh,
    .footer-container,
    .footer-bottom {
        padding-left: 4.2vw;
        padding-right: 4.2vw;
    }
    .hamburger {
        display: flex;
    }
    .nav-logo {
        height: 30px;
        width: 152px;
    }
    .view-web {
        display: none;
    }
    .view-mobile {
        display: block;
    }
    .card {
        flex: 0 0 26vw;
        min-width: 280px;
    }
    .job-card {
        flex: 0 0 40vw;
    }
    .journey-section {
        margin-top: 40px;
    }
    .hero {
        background-image: url("./bg-banner-lp-mobile.webp");
    }
    .hero-content {
        padding: 150px 4.2vw 0px;
        margin: 0 auto;
        text-align: center;
        width: 100%;
        max-width: 100%;
        align-self: center;
    }
    .hero h1 {
        font-size: 55px;
        max-width: 100%;
    }
    .hero p {
        font-size: 24px;
        text-align: center;
        max-width: 100%;
    }
    .tabs-container {
        width: 100% !important;
    }
    .nav-menu {
        position: fixed;
        left: 0;
        top: 100px;
        opacity: 0;
        flex-direction: column;
        background: linear-gradient(180deg, #3169EE 0%, #3A87F6 50%, #46A6F8 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 20px;
        transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .nav-menu.scrolled {
        background: #f3f4f6;
    }
    .nav-link {
        color: white;
        text-decoration: none;
        font-weight: 400;
        font-size: 16px;
        transition: color 0.3s ease;
    }
    .navbar.scrolled .nav-link {
        color: #232c60;
    }
    .nav-button {
        background-color: #3042eb;
        height: 38px;
        color: white;
        width: 90%;
        padding: 0px 16px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 700;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
    }
    .nav-menu.active {
        opacity: 1;
        transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .job-company-logo {
        width: 32px;
        height: 24px;
    }
    .job-company-logo img {
        max-width: 32px;
        max-height: 24px;
    }
    .fiergs-footer {
        background-color: transparent;
        margin-top: 50px;
        padding: 0;
    }
    .footer-top {
        flex-direction: column;
        text-align: center;
        margin-bottom: 40px;
    }
    .footer-middle {
        grid-template-columns: 1fr;
        gap: 8px;
        justify-items: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-column {
        text-align: left;
        width: auto;
        max-width: 300px;
    }
    .footer-column h3 {
        margin-bottom: 0px;
        text-align: left;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
    }
    .social-media {
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 992px) {
    .card {
        flex: 0 0 34vw;
    }
    .general-button {
        width: 100%;
        font-size: 16px;
        min-width: 0;
    }
    .benefits-cards,
    .benefits-cards-industry {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .benefits-cards-industry .benefit-card:nth-child(4),
    .benefits-cards-industry .benefit-card:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
        justify-self: center;
        margin: 0;
    }
    .benefits-industry .benefit-card {
        width: 80vw;
        max-width: none;
    }
    .tab-content {
        padding: 32px 0;
    }
    .section-header h2 {
        font-size: 32px;
    }
    .job-opportunities {
        padding: 32px 0;
        margin-top: 40px;
    }
    .job-opportunities h2 {
        font-size: 24px;
    }
    .benefits {
        padding: 60px 0;
    }
    .benefits h2 {
        font-size: 24px;
        margin-bottom: 32px;
    }
    .benefits-cards {
        gap: 24px;
    }
    .benefit-card {
        padding: 8px 16px;
    }
    .contrate-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contrate-card {
        padding: 28px 16px;
        width: 100%;
        font-size: 24px;
    }
    .contrate-icon {
        width: 56px;
        height: 56px;
        font-size: 36px;
    }
    .contrate-header h2 {
        font-size: 24px;
    }
    .contrate-proposito {
        background-attachment: scroll;
    }
    .support-text {
        margin-left: 32px;
    }
    .support-text h2 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    .support-text p {
        margin-bottom: 8px;
    }
    .support-image img {
        width: 45.8vw;
        height: auto;
    }
    /* SlackScroll Mobile - Stack vertical sem scroll próprio */
    .slack-scroll {
        height: auto;
        overflow-y: visible;
        scroll-snap-type: none;
        background-attachment: scroll;
        background-image: none;
    }
    .slack-panel {
        min-height: 0;
        height: auto;
        padding: 20px 0;
        scroll-snap-align: none;
        margin-bottom: 0px !important;
    }
    .slack-container {
        padding: 0 20px;
    }
    .slack-content {
        padding-top: 30px;
        grid-template-columns: 1fr;
        gap: 70px;
        text-align: center;
    }
    .slack-text {
        align-items: center;
    }
    .slack-text h2 {
        font-size: 2rem;
        text-align: center;
    }
    .slack-text p {
        text-align: center;
    }
    /* No mobile, as imagens voltam ao fluxo normal */
    .slack-images-container {
        display: none !important;
    }
    .scroll-indicator {
        display: none !important;
    }
    /* Mostra as imagens originais dos painéis no mobile */
    .slack-scroll .slack-content .slack-image {
        display: block !important;
        position: relative !important;
        width: 100% !important;
        opacity: 1 !important;
        transform: none !important;
        margin-top: 20px;
    }
    .slack-scroll .slack-content .slack-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }
    /* Ajusta layout dos painéis no mobile */
    .slack-scroll .slack-content {
        display: block !important;
        grid-template-columns: none !important;
        gap: 0 !important;
    }
    .slack-scroll .slack-content .slack-image iframe {
        width: 100%;
        height: auto;
        border-radius: 12px;
        aspect-ratio: 16/9;
        /* Para manter proporção consistente */
    }
    .hero-content {
        padding: 100px 4.2vw 0px;
        margin: 0 auto;
        text-align: left;
        width: 100%;
        max-width: 100%;
    }
    .hero h1 {
        font-size: 35px;
        max-width: 350px;
    }
    .hero p {
        font-size: 16px;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .card {
        flex: 0 0 39vw;
    }
    .job-card {
        flex: 0 0 80vw;
    }
    .benefits-cards {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .benefit-card {
        max-width: 100%;
        width: 100%;
        padding: 8px 16px;
    }
    .benefit-icon {
        width: 40px;
        height: 40px;
    }
    .benefits-industry .benefit-card {
        width: 100%;
        max-width: none;
    }
    .benefits-industry .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .benefits {
        padding: 50px 0;
    }
    .job-carousel-track {
        gap: 12px;
    }
    .contrate-proposito {
        padding: 50px 4.2vw;
    }
    .support-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .support-button {
        padding: 14px 16px;
    }
    .support-image img {
        width: 100%;
        height: auto;
    }
    .support-text {
        padding: 20px;
        margin-left: 0;
    }
    .support-text h2 {
        margin-bottom: 16px;
    }
    .support-text p {
        margin-bottom: 16px;
    }
    .slack-panel {
        padding: 10px 0;
    }
    .slack-content {
        gap: 30px;
    }
    .slack-text h2 {
        font-size: 1.8rem;
    }
    .slack-text p {
        font-size: 14px;
    }
    .slack-button {
        padding: 14px 28px;
        font-size: 14px;
    }
    .slack-list {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .card {
        flex: 0 0 56vw;
    }
    .content-grid {
        grid-template-columns: 1fr;
    }
    .card-subtitle {
        margin-bottom: 10px;
    }
}