@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* Garante que o body ocupe a altura total da viewport */
    background-color: #fafafa;
    color: #fff;
}

/* .porque-trabalhar-connosco,
.topo-rodape,
.fundo-rodape,
.nossos-cursos,
.primeiro-header,
.quem-somos,
.vagas-emprego,
.clientes-corporativos,
.noticias-destaque,
.testemunhos-depoimentos {
    padding: 0px 180px;
}

.porque-trabalhar-connosco,
.nossos-cursos,
.topo-rodape,
.quem-somos,
.vagas-emprego,
.clientes-corporativos,
.noticias-destaque,
.testemunhos-depoimentos {
    padding-top: 75px;
    padding-bottom: 75px;
} */

/* --------------- CABEÇALHO --------------- */

header {
    flex: 0 0 auto;
    background-color: #fcfcfc;
}

.primeiro-header {
    background-image: linear-gradient(rgba(20, 25, 31, 0.85), rgba(20, 25, 31, 0.85)), url('/assets/images/tech.jpg');
    background-color: #1d232a;
    background-position: center;
    background-size: cover;

    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 0px 250px; */
    height: 100px;

    padding: 0 10% 0;
    margin: auto;
    text-align: center;
}

.logo-edaco {
    height: 80px;
}

.logo-edaco img {
    height: 100%;
    width: auto;
    object-fit: contain;
    position: sticky;
    z-index: 100;
}

form {
    margin: 0;
    padding: 0;
}

form input {
    border-radius: 0px;
    border: 1px solid #39b54a;
    height: 38px;
    padding: 0px 15px;
    width: 400px;
}

form input:focus {
    outline: none;
    /* Remove o contorno padrão */
    border-radius: 0px;
    border: 1px solid #39b54a;
    box-shadow: 0 0 5px rgba(57, 181, 74, 0.5);
}

form button {
    text-decoration: none;
    color: #39b54a;
    background-color: #fff;
    font-weight: bolder;
    border: 1px solid #39b54a;
    padding: 10px 14px;
    transition: linear 0.3s;
}

form button:hover {
    color: #fff;
    border: 1px solid #39b54a;
    background-color: #39b54a;
}

.div-login-button a {
    text-decoration: none;
    color: #39b54a;
    font-weight: bolder;
    border: 1px solid #39b54a;
    padding: 10px 20px;
    transition: linear 0.3s;
}

.div-login-button a:hover {
    color: #fff;
    border: 1px solid #39b54a;
    background-color: #39b54a;
}

/* .user-logged-button {
    display: flex;
    align-items: center;
}

.user-logged-button a {
    text-decoration: none;
    color: #39b54a;
    font-weight: bolder;
    border: none;
    display: flex;
    align-items: center;
    padding-right: 0;
}

.user-logged-button i {
    margin-left: 8px;
}

.user-logged-button img {
    margin-left: 20px;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    object-fit: cover;
} */

.user-logged-button {
    position: relative;
    display: flex;
    align-items: center;
}

.user-logged-button a {
    text-decoration: none;
    color: #39b54a;
    font-weight: bolder;
    border: none;
    display: flex;
    align-items: center;
    padding-right: 0;
}

.user-logged-button i {
    margin-left: 8px;
}

.user-logged-button img {
    margin-left: 20px;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    object-fit: cover;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    list-style: none;
    /* padding: 10px 0; */
    /* margin-top: 10px; */
    /* border: 1px solid #ddd; */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    width: 150px;
}

.dropdown-menu li a {
    padding: 10px;
    text-align: left;
    text-decoration: none;
    font-weight: 420;
    color: #14191f;
    display: block;
}

.dropdown-menu li a:hover {
    color: #fff;
    background: #39b54a;
}

.user-logged-button:hover .dropdown-menu {
    display: block;
}

.fixed {
    position: fixed;
    /* Fixa o segundo-header no topo */
    top: 0;
    /* Garante que fique no topo */
    left: 0;
    right: 0;
    z-index: 100;
    /* Fica acima de outros elementos */
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(20, 25, 31);
    background: radial-gradient(circle, rgba(20, 25, 31, 1) 0%, rgb(71, 239, 105) 700%);
    /* padding: 10px 0; */
}

.menu-item {
    position: relative;
}

.menu-link {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: inline-block;
}

.menu-link:hover,
.menu-link:focus {
    background-color: #39b54a;
}

/* Estilo dos dropdowns */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown a {
    color: #14191f;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}

.dropdown a:hover {
    color: #fff;
    background-color: #39b54a;
}

.menu .logo-edaco,
.menu .fa-bars {
    display: none;
}

.menu-resp {
    background-color: #1d232a;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    overflow: hidden;

    display: none;
    transition: 0.5s;
}

.menu-resp .fa-xmark {
    padding: 30px;
    font-size: 25px;
    transition: 0.5s;
}

.menu-resp .fa-xmark:hover {
    color: #4ad35c;
}

.menu-resp .div-barra-pesquisa {
    display: block;
}

/* ---------------------- */

/* .menu-resp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding-top: 60px;
    overflow-y: auto;
} */

.menu-resp .menu-item {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-resp .menu-link {
    display: block;
    width: 100%;
    padding: 15px 0;
}

.menu-resp .dropdown {
    display: none;
    text-align: center;
    background-color: #2b3037;
    width: 100%;
}

.menu-resp .dropdown a {
    padding-left: 30px;
    color: #fff;
}

.menu-resp .menu-item:hover .dropdown {
    display: block;
}

/* ----------------- */

.menu-resp .div-barra-pesquisa form {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.menu-resp .div-barra-pesquisa input[type="search"] {
    flex: 1;
    border: none;
    padding: 10px;
    font-size: 16px;
}

.menu-resp .div-barra-pesquisa input[type="search"]:focus {
    outline: none;
}

.menu-resp .div-barra-pesquisa button {
    background-color: #39b54a;
    border: none;
    margin: 10px;
    padding: 12px 15px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.menu-resp .div-barra-pesquisa button:hover {
    background-color: #2d9340;
}

@media(max-width: 980px) {
    .primeiro-header {
        display: none;
    }

    .menu {
        height: 60px;
        padding: 0 10%;
        justify-content: space-between;
    }

    .menu .menu-item {
        display: none;
    }

    .menu .logo-edaco,
    .menu .fa-bars {
        display: block;
    }

    .menu .logo-edaco {
        height: 40px;
        z-index: 0;
    }

    .menu .fa-bars {
        font-size: 25px;
        transition: 0.5s;
    }

    .menu .fa-bars:hover {
        cursor: pointer;
        color: #4ad35c;
    }
}

.menu-item {
    position: relative;
}

.menu-link {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: inline-block;
    cursor: pointer;
}

.submenu {
    display: none;
    background-color: #2b3037;
    width: 100%;
    padding: 10px 0;
}

.submenu a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}

.submenu a:hover {
    background-color: #39b54a;
}

.menu-item.active .submenu {
    display: block;
}

@media(max-width: 980px) {
    .menu-item {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu-link {
        display: block;
        width: 100%;
        padding: 15px 0;
    }

    .submenu {
        display: none;
        text-align: center;
        background-color: #2b3037;
        width: 100%;
    }

    .menu-item.active .submenu {
        display: block;
    }
}




/* --------------- CORPO --------------- */

main {
    flex: 1 0 auto;
}



/* ------ CAROUSEL ------ */

.carousel {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.carousel-images {
    display: flex;
    transition: transform 1s ease-in-out;
    width: 1200%;
}

.carousel-images .slide {
    position: relative;
    /* background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9) ), url('/assets/images/visitaUm.jpg'); */
    background-position: center;
    background-size: cover;
    width: 100vw;
    height: 600px;
}

.evento-destaque {
    position: absolute;
    margin: auto;
    width: 100%;
    /* height: 100%; */
    bottom: 10px;
    text-align: center;
}

.evento-destaque p {
    text-transform: uppercase;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2.6rem;
    margin: auto;
    width: 70%;
}

.evento-destaque a {
    display: inline-block;
    margin: 20px 0;
    padding: 10px 30px;
    border: 1px solid #fff;
    color: #fff;
    font-weight: bolder;
    text-decoration: none;
    transition: 0.5s ease-in-out;
}

.evento-destaque a:hover {
    background-color: #fff;
    color: #39b54a;
}

.carousel-images img {
    width: 100vw;
    height: 600px;
    object-fit: cover;
    transition: transform 10s ease-in-out;
}

.carousel-images img.zoom {
    transform: scale(1.1);
}

.carousel-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    text-align: center;
    width: calc(100% - 40px);
    box-sizing: border-box;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 9px 15px;
    cursor: pointer;
    font-size: 18px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

@media (max-width: 768px) {
    .carousel {
        height: 50%;
    }

    .carousel-images img {
        height: 50%;
    }

    .carousel-text {
        font-size: 14px;
    }

    .carousel-btn {
        padding: 10px;
        font-size: 16px;
    }
}




/* ------ QUEM SOMOS ------ */

.quem-somos {
    background: rgb(29, 35, 42);
    background: linear-gradient(180deg, rgba(29, 35, 42, 1) 23%, rgba(71, 239, 105, 1) 400%);
    padding: 5%;
    margin: auto;
    text-align: center;
}

.sobre {
    margin-top: 5%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    transition: 0.3s;
}

@media (max-width: 1260px) {
    .sobre {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .sobre {
        grid-template-columns: repeat(1, 1fr);
    }
}

.quem-somos p {

    margin: 2% 5% 0 5%;
    text-align: center;
    /* padding-bottom: 50px; */
}

.quem-somos h1 span {
    color: #4ad35c;
}

.quem-somos-head p {
    margin-top: 14px;
}

.quem-somos-qualidade {
    position: relative;
    cursor: pointer;
    margin-top: 20px;
    padding-top: 5px;
    box-sizing: border-box;
}

p.sobre-over {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    text-align: justify;
    /* width: 100%; */
    background: #14191f;
    color: white;
    padding: 20px;
    margin: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 10;
}

.quem-somos-qualidade i {
    color: #4ad35c;
    font-size: 2.6em;
}

.quem-somos-qualidade h2 {
    margin-top: 12px;
}

.quem-somos-qualidade:hover .sobre-over {
    opacity: 1;
}




/* ------ SECÇÃO DO VÍDEO ------ */

.seccao-video {
    background-color: #1d232a;
    border-top: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 50px; */
}

.descricao-video {
    margin-top: 20px;
}

.host-name {
    margin-top: 20px;
}

.link-aprender-mais {
    margin-top: 40px;
}

.link-aprender-mais a {
    text-decoration: none;
    color: #fff;
    font-size: 1.4em;
    font-weight: bolder;
    background-color: #39b54a;
    padding: 10px 15px;
    transition: linear 0.3s;
}

.link-aprender-mais a:hover {
    background-color: #2b9138;
}

.video-box {
    /* width: 1500px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 600px;
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    box-shadow: 0 0px 16px rgba(0, 0, 0, 0.2);
}

.video-box video::-webkit-media-controls-play-button,
.video-box video::-webkit-media-controls-timeline,
.video-box video::-webkit-media-controls-current-time-display,
.video-box video::-webkit-media-controls-time-remaining-display,
.video-box video::-webkit-media-controls-seek-back-button,
.video-box video::-webkit-media-controls-seek-forward-button,
.video-box video::-webkit-media-controls-fullscreen-button,
.video-box video::-webkit-media-controls-rewind-button,
.video-box video::-webkit-media-controls-fast-forward-button {
    display: none;
}

/* Optional: Adjust the position and appearance of the volume control */
.video-box video::-webkit-media-controls-volume-control-container {
    position: absolute;
    color: greenyellow;
    left: 10px;
    bottom: 8px;
    z-index: 1;
}




/* ------ NOSSOS CURSOS ------ */

.nossos-cursos {
    color: #14191f;
    background-color: rgb(245, 245, 245);
    padding: 5%;
    margin: auto;
    text-align: center;
}

.cursos {
    margin: 5% 5% 0 5%;
    /* display: flex;
    justify-content: space-around;
    flex-wrap: wrap; */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    /* max-width: 1250px; */
    gap: 20px;
    margin-top: 30px;
}

.curso-card {
    margin: 10px;
    /* width: 280px; */
    background-color: #fff;
    /* border-radius: 10px; */
    overflow: hidden;
    transition: 0.5s;
    box-shadow: 0 0px 16px rgba(0, 0, 0, 0.2);
}

.curso-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.curso-descricao a {
    margin: 20px 0;
    display: flex;
    align-items: center;
    color: #14191f;
    text-decoration: none;
    transition: linear 0.5s;
}

.curso-descricao a:hover {
    color: #fff;
    background-color: #1d232a;
}

.curso-descricao a i {
    background-color: #4ad35c;
    color: #fff;
    padding: 20px;
    font-size: 30px;
}

.curso-descricao a h3 {
    text-transform: uppercase;
    margin: 0 10px;
}

@media (max-width: 700px) {
    .cursos {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}




/* ------ VAGAS DE EMPREGO ------ */

.vagas-emprego {
    background: rgb(29, 35, 42);
    background: linear-gradient(90deg, rgba(29, 35, 42, 1) 23%, rgba(71, 239, 105, 1) 400%);
    padding: 5% 5% 10% 5%;
    margin: auto;
    text-align: center;
    border-left: 30px solid #4ad35c;
}

.vagas-emprego-cards {
    display: flex;
    /* flex-wrap: wrap; Permite que os itens quebrem a linha */
    /* justify-content: space-between; */
}

.potencial-empreg {
    width: 100%;
    /* Define a largura para cada div ser quadrada */
    height: 200px;
    /* Define a altura para ser quadrada */
    background-color: #fff;
    color: #14191f;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    flex-basis: 31%;
    border-radius: 10px;
    box-sizing: border-box;
    transition: 0.5s;
}

.potencial-empreg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vagas-emprego-head {
    margin-top: 60px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.vagas-emprego-head hr {
    margin-top: 10px;
    height: 4px;
    width: 20%;
    background-color: #fff;
}

.vagas-emprego-head p {
    margin-top: 30px;
}

.link-candidatar-se {
    padding: 20px;
    display: block;
}

.vagas-emprego-mais {
    margin-top: 30px;
}

.vagas-emprego-mais a {
    font-size: 1.2em;
    font-weight: bolder;
    text-align: center;
    padding: 10px 20px;
    display: block;
    color: #fff;
    text-decoration: none;
    background: #4ad35c;
    transition: linear 0.3s;
}

.vagas-emprego-mais a:hover {
    background-color: #2b9138;
}




/* ------ CLIENTES CORPORATIVOS ------ */

.noticias-destaque {
    color: #14191f;
    padding: 5%;
    margin: auto;
    text-align: center;
}

.noticias-destaque-head {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.noticias-destaque-head a {
    margin-bottom: 16px;
    margin-top: 16px;
    font-size: 1.2em;
    font-weight: bolder;
    text-align: center;
    padding: 10px 20px;
    width: 260px;
    color: #fff;
    text-decoration: none;
    background: #4ad35c;
    transition: linear 0.3s;
}

.noticias-destaque-head a:hover {
    background-color: #2b9138;
}

.noticias-cards {
    /* display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start; */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 100%;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    margin-top: 30px;
    margin: 5% 5% 0 5%;
}

.noticia-card {
    box-shadow: 0 0px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    flex-basis: 23%;
    padding: 12px;
    box-sizing: border-box;
}

.noticia-card:hover {
    transform: scale(1.05);
}

.noticia-img {
    width: 100%;
    height: 180px;
}

.noticia-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.noticia-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.titulo {
    font-size: 0.7em;
    text-align: center;
    padding: 10px;
}

.descricao {
    padding: 10px;
    padding-top: 0;
    text-align: justify;
}

.noticia-box-foot {
    background-color: #39b54a;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.noticia-box-foot a {
    color: #14191f;
    background-color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    font-weight: bolder;
    transition: linear 0.3s;
}

.noticia-box-foot a:hover {
    color: #fff;
    background-color: #2b9138;
}

.noticia-box-foot span {
    color: #fff;
    font-weight: bolder;
}

@media (max-width: 1150px) {
    .noticia-card {
        flex-basis: 48%;
    }
}



/* ------ CLIENTES CORPORATIVOS ------ */

.clientes-corporativos {
    padding: 5%;
    margin: auto;
    text-align: center;
    border-top: 1px solid #4ad35c;
}

.clientes-corp-head {
    color: #14191f;
    text-align: center;
}

.clientes-corp-logos {
    margin: 5% 5% 0 5%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-content: center;
    gap: 20px;
}

@media (max-width: 600px) {
    .clientes-corp-logos {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
    }
}

.cliente-logo {
    height: 50px;
}

.cliente-logo img {
    height: auto;
    width: 100%;
    max-height: 50px;
    object-fit: contain;
}




/* ------ TESTEMUNHOS ------ */

.testemunho-section {
    padding: 5% 10% 0 10%;
    background: rgb(29, 35, 42);
    background: linear-gradient(180deg, rgba(29, 35, 42, 1) 23%, rgba(71, 239, 105, 1) 400%);
    color: #fff;
}

.testemunho-section h1 {
    text-align: center;
}

.testemunho-p {
    margin-top: 30px;
    margin-bottom: 60px;
    text-align: center;
}

.testemunhos-main-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testemunhos-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px; /* Espaço entre os cards */
    padding: 0 20px; /* Para evitar que os cards toquem as bordas */
}

.testemunhos-box {
    flex: 0 0 calc(50% - 10px); /* Dois cards por vez com espaço entre eles */
    background-color: #14191f;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.testemunhos-box .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('/assets/images/cursoUm.jpg'); */
    background-size: cover;
    background-position: center;
    z-index: -1;
    animation: zoomInOut 10s infinite alternate ease-in-out;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.speech-data {
    margin-bottom: 20px;
    display: flex;
}

.speech-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
    /* margin-bottom: 20px; */
}

.testemunhos-box p {
    line-height: 1.5rem;
    text-align: justify;
}

.testemunhos-box h3 {
    margin: 0 0 7px 0;
}

.testemunhos-box i {
    color: #4ad35c;
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

@media (max-width: 768px) {
    .testemunhos-box {
        flex: 0 0 100%; /* Um card por vez em telas menores */
    }

    .prev-btn,
    .next-btn {
        display: block; /* Mostra os botões em telas menores */
    }
}

@media (max-width: 1000px) {
    .testemunhos-box {
        flex-direction: column;
    }
}

@media (max-width: 850px) {
    .testemunhos-main-container {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 700px) {
    .testemunhos-box {
        flex-direction: column;
    }

    .testemunho-box {
        width: 100%;
    }
}

/* -------------------------------- */

/* .testemunhos-depoimentos {
    background: rgb(29, 35, 42);
    background: linear-gradient(180deg, rgba(29, 35, 42, 1) 23%, rgba(71, 239, 105, 1) 400%);
    padding: 5% 5% 0 5%;
    margin: auto;
    text-align: center;
}

.test-dep-head {
    text-align: center;
}

.testemunhos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.testemunho-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    flex-basis: 31%;
    border-radius: 10px;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}

.test-img {
    margin-bottom: 10px;
    width: 100px;
    height: 100px;
}

.test-img img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    object-fit: cover;
}

.test-box {
    background-color: #1d232a;
    border-radius: 10px;
    overflow: hidden;
}

.test-box span {
    background-color: #39b54a;
    display: block;
    text-align: center;
    padding: 10px;
    font-weight: bolder;
    font-size: large;
}

.test-box p {
    display: block;
    text-align: justify;
    padding: 10px 20px;
    font-size: large;
} */




/* ------ POR QUE TRABALHAR CONNOSCO ------ */

/* .porque-trabalhar-connosco {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgb(29, 35, 42);
    background: linear-gradient(0deg, rgba(29, 35, 42, 1) 23%, rgba(19, 60, 24, 1) 100%);
}

.why-workwus-head {
    padding-bottom: 20px;
}

.reason-why {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.why-workwus {
    border: 1px solid #39b54a;
    padding: 20px;
    width: 300px;
    text-align: center;
    transition: linear 0.3s;
}

.why-workwus p {
    margin-top: 20px;
}

.why-workwus:hover {
    background-color: #39b54a;
} */

.porque-trabalhar-connosco {
    padding: 5%;
    margin: auto;
    text-align: center;
    background: rgb(29, 35, 42);
    background: linear-gradient(0deg, rgba(29, 35, 42, 1) 23%, rgba(71, 239, 105, 1) 400%);
}

.porque-trabalhar-connosco h1 {
    font-size: 36px;
    font-weight: 600;
}

.linha {
    margin: 5% 5% 0 5%;
    display: flex;
    justify-content: space-between;
    /* align-items: flex-start; */
}

.why-workwus {
    border: 1px solid #39b54a;

    flex-basis: 31%;
    border-radius: 10px;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}

.why-workwus h3 {
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

.why-workwus p {
    text-align: justify;
}

.why-workwus:hover {
    background-color: #39b54a;
}




/* --------------- RODAPÉ --------------- */

footer {
    flex: 0 0 auto;
    /* Mantém o footer com altura automática */
}

.rodape {
    padding: 0 5% 0 5%;
    margin: auto;
    border-top: 1px solid #39b54a;
    background-color: #14191f;
}

.seccao-topo-rodape {
    margin-bottom: 5%;
    box-sizing: border-box;
}

.links-rapidos {
    padding-top: 30px;
}

.links-rapidos a {
    color: #fff;
    display: block;
    text-decoration: none;
    padding-bottom: 5px;
}

.links-rapidos a:hover {
    color: #39b54a;
    text-decoration: underline;
}

.form-newsletter {
    padding-top: 30px;
}

.form-newsletter input {
    width: 200px;
}

.form-newsletter button {
    height: 40px;
}

.fundo-rodape {
    text-align: center;
    padding-bottom: 20px;
}

.social-media-links {
    padding-top: 30px;
    font-size: 1.6em;
}

.social-media-links a {
    color: #fff;
    cursor: pointer;
}

.social-media-links a:hover {
    color: #39b54a;
}

@media (max-width: 900px) {}

@media(max-width: 700px) {
    .linha {
        flex-direction: column;
        /* justify-content: center; */
        /* align-items: center; */
    }

    .rodape .linha {
        align-items: flex-start;
    }

    .quem-somos,
    .porque-trabalhar-connosco,
    .rodape,
    .nossos-cursos,
    .clientes-corporativos,
    .testemunhos-depoimentos,
    .testemunho-section,
    .noticias-destaque,
    .vagas-emprego {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .why-workwus,
    .quem-somos-qualidade,
    .noticia-card,
    .curso-card {
        margin-bottom: 5%;
    }


    .seccao-topo-rodape {
        margin-bottom: 16%;
    }
}
