* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    font-size: 62.5%;
    --primary-color: #fff;
    --secondary-color: #003366;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 1.6rem;
    font-family: "Manrope", sans-serif;
}

.top {
    padding: .8rem;
    background-color: #000;
    opacity: .8;
    border-radius: 50%;
    position: fixed;
    bottom: .8rem;
    right: .8rem;
    z-index: 1;
    cursor: pointer;
}

.top i {
    color: #fff;
    font-size: 3.2rem;
}

.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

.area-infos,
.area-logo-address,
.menu {
    flex-shrink: 0;
    /* Esses elementos manterão suas alturas naturais */
}

.area-infos {
    background-color: var(--secondary-color);
    padding: .75rem 0;
}

.area-infos .infos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
}

.area-infos .infos i {
    font-size: 1.8rem;
    color: #ccc;
}

.area-infos .infos i:first-child {
    color: var(--primary-color);
}

.area-infos .contact-infos {
    display: flex;
    gap: 2.4rem;
    color: #ccc;
}

.area-infos .contact-infos .address,
.area-infos .contact-infos .email,
.area-infos .contact-infos .phone {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.area-infos .contact-infos .email a,
.area-infos .contact-infos .phone a {
    text-decoration: none;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.area-infos .social-medias {
    display: flex;
    gap: 2.4rem;
}

.area-infos .social-medias i:hover {
    cursor: pointer;
    color: var(--primary-color);
}

/* Area logo e endereço */
.area-logo-address {
    margin: 2.4rem 0;
}

.logo-address {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-address .logo a {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.logo-address .logo i {
    font-size: 10rem;
    color: #f6ff00;
    text-shadow: 10px 1px 0px #000;
}

.logo-address .logo a {
    text-decoration: none;
    color: #000;
    font-size: 2.8rem;
    font-weight: 700;
}

.logo-address .wrapper-infos {
    display: flex;
    gap: 4.8rem;
}

.logo-address .icon-infos {
    display: flex;
    gap: 1.2rem;
}

.logo-address .icon-infos p {
    font-weight: 700;
}

.logo-address .icon-infos .icon {
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    padding: 1.2rem;
}

.logo-address .icon-infos i {
    color: #fff;
    font-size: 2.4rem;
}

.logo-address .menu-mobile {
    cursor: pointer;
    display: none;
}

.logo-address .menu-mobile i {
    font-size: 4rem;
}

/* Menu */

.menu .visible {
    display: flex;
}

.menu nav ul {
    position: relative;
    margin-bottom: -3.1rem;
    z-index: 999;
    background-color: #f8f6ef;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
}

.menu nav li {
    text-align: center;
    flex: 1;
    border-right: 1px solid #e2e2e2;
}

.menu nav li:hover {
    background-color: #e6e2e2;
}

.menu nav li:last-child {
    border-right: 0;
}

.menu nav a {
    padding: 2rem 0;
    display: block;
    text-decoration: none;
    color: #1f1f1f;
    font-weight: 600;
}

.menu nav li.home {
    background-color: var(--secondary-color);
}

.menu nav li.home a {
    color: #fff;
    font-weight: 700;
}

.menu nav li.home:hover {
    background-color: #022446;
}

.menu nav span:hover {
    border-bottom: 2px solid #c0c0c0;
}

.menu nav li.home span {
    border-bottom: 2px solid #c0c0c0;
}

/* Área carrosel - slides */
.carousel {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
}

.carousel .wrapper-carousel {
    width: 100%;
    height: 100%;
    display: none;
    background-color: #000;
    position: relative;
}

.carousel .wrapper-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .5;
}

.carousel .wrapper-carousel .content {
    position: absolute;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.carousel .wrapper-content {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.carousel .wrapper-content p,
.carousel .wrapper-content h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.carousel .wrapper-content p {
    font-size: 2.4rem;
    max-width: 65rem;
}

.carousel .wrapper-content h1 {
    font-size: 8.4rem;
    max-width: 1px;
    line-height: 8rem;
    margin-bottom: .8rem;
}

.carousel .wrapper-carousel .p-border {
    width: max-content;
    border-bottom: 2px solid #fff;
    padding-bottom: .4rem;
}

.carousel .carousel-visible {
    display: block;
}

.carousel .controls {
    position: absolute;
    z-index: 899;
    width: 100%;
    bottom: 50%;
    transform: translateY(50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
}

.carousel .controls button {
    border: 0;
    background-color: #000;
    opacity: .8;
    border-radius: 50%;
    padding: 1.6rem;
    cursor: pointer;
}

.carousel .controls button:hover {
    opacity: .9;
}

.carousel .controls button i {
    font-size: 2.4rem;
    color: #ccc;
}


/* About Us */
.about {
    max-width: 1300px;
    margin: 0 auto;
    ;
    padding: 10rem 0.8rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.about .about-image {
    overflow: hidden;
    border-radius: 8rem;
}

.about-us img {
    width: 100%;
    transition: .1s;
}

.about-us img:hover {
    transform: scale(1.1) rotate(-2deg);
    filter: brightness(110%);
}

.about-us .about-infos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.about-us .about-infos .p-border {
    width: max-content;
    color: #444;
    font-weight: 600;
    font-size: 2rem;
    border-bottom: 2px solid #ccc;
    padding-bottom: .4rem;
}

.about-us .about-infos p {
    font-size: 1.6rem;
    line-height: 2.4rem;
    max-width: 60rem;
    color: #444;
}

.about-us .about-infos .border-l {
    border-left: .4rem solid var(--secondary-color);
    padding-left: 2rem;
}

.about-us .about-infos h1 {
    font-size: 4rem;
    color: #141414;
}

/* Services */
.services {
    padding: 8rem 0;
    background-color: var(--secondary-color);
    color: #fff;
}

.services .area-services {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services .p-border {
    font-size: 2rem;
    border-bottom: 1px solid rgba(238, 206, 56, .6);
    color: var(--primary-color);
    font-weight: 600;
}

.services h1 {
    max-width: 60rem;
    text-align: center;
    margin: 2rem 0 4rem;
    font-size: 4rem;
}

.services .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
}

.services .wrapper-service {
    background-color: #022446;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 3.2rem;
    border-radius: .8rem;
    cursor: pointer;
    border-bottom: 2px solid var(--primary-color);
    transition: .2s;
}

.services .wrapper-service:hover {
    background-color: #001a35;
    color: #ddd;
    border-bottom: 2px solid #ddd;
}

.services .wrapper-service:hover i {
    transition: .2s;
}

.services .wrapper-service:hover i {
    color: var(--primary-color);
    transform: scale(1.3);
}

.services .wrapper-service i {
    color: var(--primary-color);
    font-size: 4rem;
}

.services .wrapper-service p {
    max-width: 10rem;
    text-align: center;
    font-weight: 600;
}

/* Clientes */
.clients {
    padding: 8rem 0 10rem;
    background-color: #f8f6ef;
}

.clients .area-client {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.clients .p-border {
    width: max-content;
    color: #444;
    font-weight: 600;
    font-size: 2rem;
    border-bottom: 2px solid #ccc;
    padding-bottom: .4rem;
}

.clients h1 {
    font-size: 4rem;
    color: #141414;
    margin-bottom: 8rem;
}

.clients .wrapper-logos {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    white-space: nowrap;
    width: 100%;
}

.clients .wrapper-logos::before,
.clients .wrapper-logos::after {
    content: "";
    position: absolute;
    top: 0;
    width: 10rem;
    height: 100%;
    z-index: 2;
}

.clients .wrapper-logos::before {
    background: linear-gradient(to left, rgba(248, 246, 239, 0), #f8f6ef);
    left: 0;
}

.clients .wrapper-logos::after {
    background: linear-gradient(to right, rgba(248, 246, 239, 0), #f8f6ef);
    right: 0;
}

.clients .logos-slide {
    display: inline-block;
    animation: slide-logos 20s infinite linear;
}

.clients .wrapper-logos:hover .logos-slide {
    animation-play-state: paused;
}

.clients .logos-slide img {
    height: 3.6rem;
    margin: 0 2rem;
}

@keyframes slide-logos {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.signature {
    text-align: right;
    font-size: 1.4rem;
    margin-top: 1rem;
    color: #0c0c0c;
    font-style: italic;
}

.clients {
    padding: 8rem 0;
    background-color: #f8f6ef;
}

.clients .p-border {
    width: max-content;
    color: #444;
    font-weight: 600;
    font-size: 2rem;
    border-bottom: 2px solid #ccc;
    padding-bottom: .4rem;
}

.feedback {
    width: max-content;
    color: #444;
    font-weight: 600;
    font-size: 2rem;
    border-bottom: 2px solid #ccc;
    padding-bottom: .4rem;
    text-align: center;
    margin: 0 auto; /* Isso vai centralizar o elemento dentro do seu contêiner */
    display: block; /* Garante que o elemento ocupe o espaço adequado para centralização */
}

/* Ajustar o espaçamento e evitar que os quadrados fiquem colados nas bordas */
.wrapper-comment {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 4rem;
    padding: 0 4rem; /* Adicionando um padding para afastar os quadrados das bordas */
}

/* Os outros estilos continuam os mesmos */
.area-comment {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 95%;
    position: relative;
    margin-bottom: 56px;
    height: auto !important; /* ✅ deixa crescer conforme necessário */
    box-sizing: border-box;
}


.comment-box {
    background-color: #f7d047;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.comment-box::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #f7d047 transparent transparent transparent;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
}

.profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.profile .name {
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.profile .profession {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
}



/* Localização */
.location {
    padding: 8rem 0;
}

.location iframe {
    width: 100%;
}

.location iframe+iframe {
    margin-top: 2rem;
}

.location h1 {
    font-size: 2rem;
    color: #444;
    border-bottom: 2px solid #ccc;
}

.location .location-icon {
    margin-bottom: 2.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.location-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.location-item {
    flex: 1 1 calc(50% - 2rem); /* Faz com que cada item ocupe 50% da largura disponível menos a margem */
    box-sizing: border-box;
}

.location-item h1 {
    text-align: center;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .location-item {
        flex: 1 1 100%; /* Para telas menores, cada item ocupa 100% da largura */
    }
}


/* Contact */
.contact {
    background-color: #f8f6ef;
    padding: 8rem 0;
}

.contact-title {
    font-size: 2rem;
    color: #444;
    border-bottom: 2px solid #ccc;
}

.contact .area-contact {
    display: flex;
    justify-content: space-between; /* Alinha o conteúdo com espaço entre */
    gap: 1rem; /* Reduz o espaço entre os blocos */
    padding: 0 2rem;
}

.contact .area-contact-text {
    width: 48%; /* Ajusta a largura do texto para ficar mais próximo */
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 1rem; /* Move o texto para a direita */
}

.contact .area-contact-text h2 {
    font-size: 2.8rem;
    color: #333; /* Cor do título */
    margin-left: 0.5rem; /* Move o título para a direita */
}

.contact .area-contact-text p {
    font-size: 1.6rem;
    color: #666; /* Cor do texto */
    max-width: 40rem; /* Limita a largura do texto */
    margin-left: 0.5rem; /* Move o parágrafo para a direita */
}

.contact .form-contact {
    width: 45%; /* Ajusta a largura do formulário para 45% */
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.contact form .error-hide,
.contact form .success-hide {
    display: none;
}

.contact form .error-show,
.contact form .success-show {
    display: block;
    font-size: 1.4rem;
    text-align: right;
}

.contact input,
.contact textarea {
    font-family: "Manrope", sans-serif;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: .4rem;
    background-color: #fcfcfc;
    font-size: 1.4rem;
    width: 100%;
}

.contact input::placeholder,
.contact textarea::placeholder {
    color: #979797;
}

.contact textarea {
    height: 15rem; /* Diminui a altura da área de texto */
    resize: none; /* Impede o redimensionamento */
}

.contact input:focus,
.contact textarea:focus {
    outline: 1px solid var(--secondary-color);
    background-color: #ffffff;
}

.contact input[type="submit"] {
    padding: 1.5rem 0;
    width: 100%; /* Faz o botão ocupar toda a largura do formulário */
    border: 0;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: .4rem;
    font-weight: 700;
    transition: .2s;
    cursor: pointer;
}

.contact input[type="submit"]:hover {
    background-color: #022446;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.contact .name-email {
    display: flex;
    gap: 1.5rem;
}

.contact .name-email input {
    flex: 1;
}

.contact .area-contact-infos {
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact .area-contact-infos h2 {
    font-size: 2.8rem;
}

.contact .area-contact-infos .p-contact {
    max-width: 40rem;
    color: #ccc;
}


/* Policies */
/* Estilo para a seção de políticas */
#politicas {
    padding: 2rem 0;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgb(255, 255, 255);
    border-radius: 8px;
    margin-top: 1rem;
}

.politica {
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 8px;
    background-color: #fdfdfd;
    border: 1px solid #8b8b8b;
    transition: transform 0.3s, box-shadow 0.3s;
}

.politica:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.politica h3 {
    display: flex;
    align-items: center;
    font-size: 1.8rem; /* Tamanho aumentado */
    color: #333;
    margin-bottom: 1rem;
}

.politica h3 i {
    margin-right: 0.5rem;
    font-size: 2rem; /* Tamanho aumentado */
    color: #007BFF;
}

.politica p {
    font-size: 1.50rem; /* Tamanho aumentado */
    color: #555;
    line-height: 1.8; /* Melhor legibilidade */
    margin-bottom: 1rem;
}

.politica .quote {
    font-style: italic;
    color: #444;
    border-left: 4px solid #053a70;
    padding-left: 1rem;
}

.politica .links {
    margin-top: 1.5rem;
}

.politica .links a {
    display: block; /* Links empilhados verticalmente */
    text-decoration: none;
    color: #007BFF;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem; /* Espaço entre os links */
    transition: color 0.3s ease;
}

.politica .links a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Estilo para imagens */
.politica img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 1.5rem auto 0;
    border-radius: 4px;
}

/* Adicionando margem inferior para separar as políticas */
.politica:last-child {
    margin-bottom: 0;
}


.certificado img {
    max-width: 200px; /* Tamanho fixo para a imagem (ajustável conforme necessário) */
    height: auto; /* Mantém a proporção da imagem */
    border-radius: 8px; /* Se desejar bordas arredondadas */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra para dar destaque à imagem */

}

/* Footer */
.footer {
    background: linear-gradient(to bottom, #043c74, #033a72);
    color: #fff;
    padding: 3rem 1rem;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 220px;
    margin: 1rem;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 1rem;
    margin-left: -80px; /* Ajuste este valor conforme necessário */
}

.sobb{
    margin-left: -80px;
}

.footer-section h3 {
    font-size: 1.5rem; /* Aumenta o tamanho do título */
    text-transform: uppercase; /* Deixa as letras em maiúsculas */
    margin-bottom: 1.5rem;
    color: #ffffff; /* Cor laranja para destacar os títulos */
    font-weight: bold;
}

.footer-section p {
    font-size: 1.4rem; /* Tamanho maior para os textos */
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 1rem 0;
    position: relative;
    padding-left: 25px; /* Espaço para a seta */
    font-size: 1.5rem; /* Aumenta o tamanho do texto */
}

.footer-section ul li::before {
    content: "❯";; /* Escolha um símbolo elegante daqui */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fab026; /* Cor do símbolo */
    font-size: 1.5rem; /* Tamanho maior para destaque */
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: bold; /* Negrito para os links */
}

.footer-section ul li a:hover {
    color: #fab026;
}

.social-icons a {
    margin: 0 0.5rem;
    color: #fff;
    font-size: 1.9rem; /* Ícones maiores */
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #fab026;
}

.footer-section i {
    margin-right: 0.5rem;
    color: #fab026;
    font-size: 2rem; /* Ícones maiores */
}


/* Scroll Animation */
.section-hide {
    opacity: 0;
    transform: scale(0.96);
    filter: blur(4px);
}

.section-show {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    transition: all .8s ease-in;
}

.wrapper-comment .area-comment:nth-child(1) {
    transition-delay: 900ms;
}

.wrapper-comment .area-comment:nth-child(2) {
    transition-delay: 600ms;
}

.wrapper-comment .area-comment:nth-child(3) {
    transition-delay: 300ms;
}

/* Responsividade - detalhes gerais */
@media all and (max-width: 1300px) {
    .container {
        padding: 0 .8rem;
    }
}

/* Responsividade menu */
@media (max-width: 788px) {
    .logo-address .wrapper-infos {
        display: none;
    }

    .logo-address .menu-mobile {
        display: block;
    }

    nav.container {
        padding: 0;
    }

    .menu nav ul {
        position: absolute;
        width: 100%;
        flex-direction: column;
    }

    .menu nav li {
        border-right: 0;
    }

    .menu .visible {
        display: none;
    }

    .area-infos .contact-infos .address {
        display: none;
    }

    .carousel .wrapper-content h1 {
        font-size: 5rem;
    }

    .carousel .wrapper-content p {
        font-size: 2rem;
    }
}

@media (max-width: 340px) {
    .logo-address .logo i {
        font-size: 4rem;
    }

    .logo-address .logo a {
        font-size: 2rem;
    }
}

@media (max-width: 550px) {
    .area-infos .contact-infos .email {
        display: none;
    }
}

@media (max-width: 340px) {
    .area-infos .contact-infos .phone {
        display: none;
    }
}

/* Responsividade about Us */
@media (max-width: 1112px) {
    .about {
        grid-template-columns: 1fr;
    }

    .about-us .about-infos {
        align-items: center;
    }

    .about .about-image {
        display: flex;
        justify-content: center;
    }

    .about-us .about-infos h1 {
        text-align: center;
    }

    .about-us img {
        width: 56rem;
        border-radius: 4rem;
    }
}

/* Responsividade Clients */
@media (max-width: 1112px) {
    .clients .wrapper-comment {
        flex-wrap: wrap;
        justify-content: center;
    }

    .clients .area-client {
        align-items: center;
    }

    .clients .area-comment {
        margin-bottom: 2.4rem;
    }

    .clients .area-comment:last-child {
        margin-bottom: 0;
    }
}

/* Responsividade contact */
@media (max-width: 1000px) {
    .contact .form-contact {
        flex-direction: column;
    }

    .contact input[type="submit"] {
        width: 100%;
    }

    .contact .name-email {
        flex-direction: column;
    }

    .contact .icon-infos span {
        font-size: 1.4rem;
    }
}

/* Responsividade Footer */
@media (max-width: 1300px) {
    footer .about-services-follow {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1112px) {

    footer .logo,
    footer .icon-infos {
        width: 100%;
        padding: .8rem .4rem;
    }
}

@media (max-width: 900px) {
    footer .about-services-follow {
        grid-template-columns: 1fr;
    }

    footer .area-links {
        flex-direction: column;
        gap: 1.6rem;
    }
}

.alinhamento-direita {
    text-align: right;
}

.empresa-logo {
    width: 200px; /* Ajuste o valor conforme necessário */
    height: auto; /* Mantém a proporção da imagem */
}

.empresa{
    width: 200px;
    height: auto;
}


/* Estilo geral da seção */
.trabalhe-conosco {
    text-align: center;
    padding: 20px;
  }

/* Filtros */
.filtros {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.filtro {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    background-color: #fff;
}

.botao {
    padding: 8px 12px;
    background-color: #022446;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.botao:hover {
    background-color: #011d38;
}

.botao.limpar {
    background-color: #022446;
}

.botao.limpar:hover {
    background-color: #022446;
}

/* Contêiner das vagas */
.vagas {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

/* Estilo do contêiner de cada vaga */
.vaga-container {
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Botão da vaga */
.vaga {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    cursor: pointer;
    padding: 12px;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    color: #022446;
    transition: background-color 0.3s ease;
}

.vaga:hover {
    background-color: #f0f0f0;
}

.vaga .seta {
    font-size: 18px;
    color: #022446;
    transition: transform 0.3s ease;
}

.vaga-container.open .seta {
    transform: rotate(180deg);
}

/* Descrição da vaga */
.vaga-descricao {
    display: none;
    padding: 15px;
    background-color: #fdfdfd;
    border-top: 1px solid #ccc;
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
}

.vaga-container.open .vaga-descricao {
    display: block;
}

/* Títulos da descrição */
.vaga-descricao strong {
    color: #022446;
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
}

/* Lista de benefícios */
.vaga-descricao ul.beneficios-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.vaga-descricao ul.beneficios-list li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.vaga-descricao ul.beneficios-list li i {
    margin-right: 8px;
    color: #1a6ecb;
}

/* Botão "Candidatar-se" */
.candidatar-se {
    display: block;
    margin-top: 15px;
    text-align: center;
    padding: 10px 15px;
    background-color: #1a6ecb;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.candidatar-se:hover {
    background-color: #145aa8;
}

.hidden {
    visibility: hidden;
}