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

body {

    margin: 0;

    font-family: "Poppins", sans-serif;

    background: #fff;

}

/*Configuração Navbar*/

nav {
    background-color: black;
    user-select: none;
    padding: 10px 20px;
}

nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
    gap: 20px;
}

li {
    display: flex;
    align-items: center;
}

li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    white-space: nowrap;
}

.logo {
    height: 50px;
}


.imgAcessibilidade {
    margin-right: 5px;
    height: 20px;
    width: 20px;
}

/* Hover dos links */

nav ul li a:hover {
    color: #CD97EB;
    /* hover roxo claro */
    transition: color 0.3s;
}

nav ul li a.ativo {
    color: #CD97EB;
    /* border-bottom: 2px solid #CD97EB; */
    padding-bottom: 2px;
    pointer-events: none;
    cursor: default;
}

nav ul li a.ativo:hover {
    color: #CD97EB;
}

/* Fim da configuração navbar*/

/* Configuração da section hero*/
.hero {

    width: 100%;
    height: 700px;

    display: flex;
    align-items: center;

    padding-left: 70px;

    background-image:
        linear-gradient(90deg,
            rgba(0, 0, 0, .95) 0%,
            rgba(0, 0, 0, .78) 30%,
            rgba(0, 0, 0, .18) 55%,
            rgba(0, 0, 0, .05) 100%),
        url("../assets/Images/background.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-texto {

    width: 500px;

}

.hero-texto h1 {
    background: transparent;
    color: white;
    font-size: 70px;
    font-weight: 800;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out forwards;
    line-height: .92;

}

.hero-texto h1 .destaque {
    color: #8F3EF7;
    display: inline-block;
    background: transparent;
}

.hero-texto span {
    background: transparent;
}

.hero-texto p {

    color: #d6d6d6;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 45px;
    width: 430px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out 0.3s forwards;

}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btnHero {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 18px 30px;

    border-radius: 10px;

    background: #8F3EF7;

    color: white;

    text-decoration: none;

    font-size: 18px;

    font-weight: 600;

    transition: .3s;

}

.btnHero:hover {

    background: #7d29eb;

    transform: translateY(-3px);

}

.btnHero span {

    color: white;

    font-size: 28px;

}

/* Fim da configuração da section hero*/

/* Configuração da section Como funciona*/

.comoFunciona {
    width: 100%;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    background-color: #fff;
}

.comoFunciona h2 {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin-bottom: 45px;
}

/* Cards */

.cards {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

/* Card */

.card {
    position: relative;

    width: 320px;
    min-height: 150px;

    background: #e9e0ef;

    border-radius: 14px;

    padding: 28px 24px 24px;

    box-sizing: border-box;

    transition: .25s;
}

.card:hover {
    transform: translateY(-4px);
}

/* Ícone */

.card .icone {
    position: absolute;
    top: 16px;
    left: 16px;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    border: 2px solid #7b3fb8;

    color: #7b3fb8;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 14px;
}

/* Número */

.card .numero {

    position: absolute;

    right: 12px;
    top: 12px;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: #7b3fb8;

    color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 12px;
    font-weight: bold;
}

/* Título */

.card h3 {

    margin-top: 26px;
    margin-bottom: 12px;

    font-size: 24px;
    font-weight: 700;

    color: #111;
}

/* Texto */

.card p {

    font-size: 16px;

    color: #333;

    line-height: 1.5;

    margin: 0;
}

/* Responsivo */

@media(max-width:1000px) {

    .cards {
        gap: 20px;
    }

    .card {
        width: 300px;
    }

}

@media(max-width:768px) {

    .cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 420px;
    }

}

/*Fim da configuração da section Como funciona*/

/*Configuração da section areas*/
.areas {
    width: 100%;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.areas h2 {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin-bottom: 40px;
}

.cardsAreas {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* Card */

.cardArea {
    width: 260px;
    min-height: 190px;
    padding: 22px;

    background: #d9d9d9;
    border-radius: 10px;

    box-sizing: border-box;
    cursor: pointer;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: all .35s ease;
}

/* Ícone */

.cardArea .icone {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #b8c9bf;

    color: #184d3b;
    font-size: 18px;

    margin-bottom: 20px;

    transition: .35s;
}

/* Título */

.cardArea h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111;

    margin-bottom: 12px;

    transition: .35s;
}

/* Texto */

.cardArea p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;

    margin-bottom: 25px;

    transition: .35s;
}

/* Botão */

.cardArea .btn-ativo {
    width: fit-content;

    border: none;
    border-radius: 20px;

    padding: 8px 18px;

    background: #b8c9bf;
    color: #184d3b;

    font-size: 13px;

    cursor: pointer;

    transition: .35s;
}

.btn-inativo {
    width: fit-content;
    border: none;
    border-radius: 20px;
    padding: 8px 18px;
    background: #b8c9bf;
    color: #184d3b;
    font-size: 13px;
    cursor: not-allowed !important;
    transition: .35s;
    opacity: 0.6;
    pointer-events: auto;
}

/*=========================
        HOVER
=========================*/

.cardArea:hover {

    background: #184d3b;

    transform: translateY(-6px);

    box-shadow: 0 12px 25px rgba(0, 0, 0, .18);
}

.cardArea:hover h3 {
    color: #fff;
}

.cardArea:hover p {
    color: rgba(255, 255, 255, .9);
}

.cardArea:hover .icone {
    background: rgba(255, 255, 255, .18);
    color: #fff;
}

.cardArea:hover button {
    background: #fff;
    color: #184d3b;
}

/*=========================
      RESPONSIVO
=========================*/

@media (max-width: 1100px) {

    .cardsAreas {
        justify-content: center;
    }

}

@media (max-width: 768px) {

    .cardsAreas {
        flex-direction: column;
        align-items: center;
    }

    .cardArea {
        width: 100%;
        max-width: 380px;
    }

}

/* Estilos para a Expansão do Card de Tecnologia */

/* Container das áreas profissionais para permitir a expansão lateral */
.cardsAreas {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    align-items: flex-start;
    /* Garante que os outros cards não estiquem verticalmente */
}

/* Card base */
.cardArea {
    position: relative;
    overflow: hidden;
    /* Garante que o conteúdo oculto não vaze */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Estado Expandido */
.cardArea.destaque.expandido {
    width: 550px;
    /* Expande para a direita */
    background: #184d3b;
    cursor: default;
}

/* Ocultar conteúdo original quando expandido para dar foco às subáreas */
.cardArea.expandido>.icone,
.cardArea.expandido>h3,
.cardArea.expandido>p,
.cardArea.expandido>button:not(.btn-voltar) {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-20px);
    transition: 0.3s;
}

/* Container de Subáreas */
.sub-areas-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 22px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateX(30px);
    transition: all 0.5s ease;
}

.cardArea.expandido .sub-areas-container {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.sub-areas-content h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.sub-areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.sub-area-item {
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.sub-area-item.ativo {
    background: #fff;
    color: #184d3b;
    border: 1px solid #fff;
}

.sub-area-item.ativo:hover {
    background: #4fd699;
    border-color: #4fd699;
    color: #fff;
}

.sub-area-item.inativo {
    opacity: 0.6;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.05);
}

.sub-area-item small {
    font-size: 10px;
    font-weight: 400;
    display: block;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4fd699;
}

.sub-area-item.inativo .dot {
    background: #666;
}

.btn-voltar {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    width: fit-content;
    transition: 0.3s;
}

.btn-voltar:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsividade para o card expandido */
@media (max-width: 768px) {
    .cardArea.destaque.expandido {
        width: 100%;
        max-width: 380px;
        min-height: 350px;
    }

    .sub-areas-grid {
        grid-template-columns: 1fr;
    }
}


/*Fim das configurações da section Areas*/
/*Configuração da Section Opotunidades*/

.oportunidades {
    width: 100%;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.oportunidades h2 {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
}

.cardsOportunidades {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Card */

.cardOportunidade {

    width: 330px;
    min-height: 210px;

    padding: 18px;

    border: 1px solid #d9d9d9;
    border-radius: 10px;

    background: #fff;

    transition: .3s;

    cursor: pointer;
}

.cardOportunidade:hover {

    transform: translateY(-5px);

    border-color: #7d2bc9;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

/* Tag superior */

.tipo {

    display: inline-block;

    padding: 5px 10px;

    border-radius: 20px;

    background: #e7d8f6;

    color: #7d2bc9;

    font-size: 12px;

    font-weight: 600;

    margin-bottom: 18px;
}

/* Título */

.cardOportunidade h3 {

    font-size: 24px;

    margin-bottom: 6px;

    color: #111;
}

/* Empresa */

.empresa {

    font-size: 14px;

    color: #555;

    margin-bottom: 14px;

    text-transform: uppercase;
}

/* Local */

.local {

    font-size: 14px;

    color: #333;

    margin-bottom: 18px;
}

/* Tecnologias */

.tags {

    display: flex;

    gap: 8px;

    flex-wrap: wrap;

    margin-bottom: 20px;
}

.tags span {

    background: #ececec;

    color: #666;

    padding: 5px 10px;

    border-radius: 20px;

    font-size: 12px;
}

/* Link */

.cardOportunidade a {

    text-decoration: none;

    color: #7d2bc9;

    font-weight: 600;

    transition: .3s;
}

.cardOportunidade a:hover {

    text-decoration: underline;
}

/* Botão inferior */

.btnTodas {

    display: block;

    margin: 40px auto 0;

    padding: 12px 28px;

    border: 2px solid #7d2bc9;

    border-radius: 8px;

    background: transparent;

    color: #7d2bc9;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition: .3s;
}

.btnTodas:hover {

    background: #7d2bc9;

    color: #fff;
}

/*=========================
      RESPONSIVO
=========================*/

@media (max-width: 768px) {

    .cardsOportunidades {

        flex-direction: column;

        align-items: center;
    }

    .cardOportunidade {

        width: 100%;
        max-width: 400px;
    }

}

/*Fim da configuração Oportunidades*/

/*Configuração da section Sobre*/
.sobre {

    max-width: 1200px;
    margin: 80px auto;
    padding: 40px;

    background: #06251f;

    border-radius: 12px;

    display: flex;
    align-items: center;
    gap: 40px;
}

/* Imagem */

.sobreImagem {

    flex: 1;
}

.sobreImagem img {

    width: 100%;
    max-width: 430px;
    height: 280px;

    object-fit: cover;

    border-radius: 10px;

    display: block;
}

/* Texto */

.sobreTexto {

    flex: 1.4;

    color: #fff;
}

.sobreTexto h2 {

    font-size: 38px;

    margin-bottom: 25px;

    font-weight: 700;
}

.sobreTexto p {

    font-size: 18px;

    line-height: 1.9;

    color: #d9d9d9;

    margin-bottom: 35px;
}

/* Ícones */

.sobreInfo {

    display: flex;

    gap: 18px;

    flex-wrap: wrap;
}

.info {

    display: flex;

    align-items: center;

    gap: 12px;
}

.info i {

    width: 42px;
    height: 42px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #c98cf8;

    color: #06251f;

    border-radius: 8px;

    font-size: 20px;
}

.info span {

    color: #fff;

    font-size: 15px;

    font-weight: 600;

    line-height: 1.4;
}

/*=========================
      RESPONSIVO
=========================*/

@media(max-width:900px) {

    .sobre {

        flex-direction: column;

        text-align: center;
    }

    .sobreImagem img {

        max-width: 100%;
        height: auto;
    }

    .sobreInfo {

        justify-content: center;
    }

}

@media(max-width:600px) {

    .sobre {

        padding: 25px;
    }

    .sobreTexto h2 {

        font-size: 30px;
    }

    .sobreTexto p {

        font-size: 16px;
    }

    .sobreInfo {

        flex-direction: column;
        align-items: center;
    }

}

/*Configuração da section footer*/

.footer {

    width: 100%;

    background: #051816;

    color: #fff;

    margin-top: 80px;

    padding: 40px 0;

    border-top: 1px solid rgba(255, 255, 255, .08);
}

/* Container */

.footerContainer {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 40px;

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 40px;
}

/* Logo */

.footerLogo {

    width: 260px;
}

.logo {

    width: 70px;

    margin-bottom: 20px;
}

.footerLogo p {

    font-size: 14px;

    color: #d4d4d4;

    line-height: 1.6;

    margin-bottom: 25px;
}

.footerLinks {

    display: flex;

    gap: 20px;
}

.footerLinks a {

    color: #fff;

    text-decoration: none;

    font-size: 13px;
}

.footerLinks a:hover {

    color: #9f5cff;
}

/* Colunas */

.footerCol h3 {

    font-size: 16px;

    margin-bottom: 18px;
}

.footerCol ul {

    list-style: none;
}

.footerCol ul li {

    margin-bottom: 12px;
}

.footerCol a {

    color: #d6d6d6;

    text-decoration: none;

    font-size: 14px;

    transition: .3s;
}

.footerCol a:hover {

    color: #9f5cff;
}

.footerCol p {

    color: #d6d6d6;

    font-size: 14px;

    margin-bottom: 20px;
}

/* Redes sociais */

.redes {

    display: flex;

    gap: 18px;
}

.redes i {

    font-size: 22px;

    cursor: pointer;

    transition: .3s;
}

.redes i:hover {

    color: #9f5cff;
}

/* Botão */

.vlibras {

    background: #7c2cff;

    color: white;

    border: none;

    border-radius: 6px;

    padding: 8px 18px;

    cursor: pointer;

    transition: .3s;
}

.vlibras:hover {

    background: #9650ff;
}

/* Copyright */

.copyright {

    background: #041110;

    color: #d6d6d6;

    text-align: center;

    padding: 18px;

    font-size: 13px;

    border-top: 1px solid rgba(255, 255, 255, .08);
}

/*=========================
      RESPONSIVO
=========================*/

@media(max-width:900px) {

    .footer {

        flex-wrap: wrap;

        justify-content: center;

        text-align: center;
    }

    .footerLogo {

        width: 100%;
    }

    .footerLinks,
    .redes {

        justify-content: center;
    }

}

@media(max-width:600px) {

    .footer {

        flex-direction: column;

        align-items: center;

        text-align: center;
    }

}

/* RESPONSIVIDADE*/
/* Para abrir em tablets */

@media (max-width: 900px) {

    nav ul {
        justify-content: center;
        gap: 30px;
    }

}

/* Para abrir em celulares */


@media (max-width: 600px) {

    nav {
        padding: 15px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .logo {
        height: 45px;
    }

}