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

* {
    margin: 0;
    border: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    list-style: none;
    text-decoration: none;
    color: black;
}

:root {
    --color1: #8E2424;
    --color2: #667085;
}

body {
    min-height: 100vh;
}

.header {
    position: fixed;
    top: 0;
    left: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    
    width: 100%; 
    height: 60px;

    padding: 10px 20px; 
    z-index: 5;
    background-color: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);    
}

.container-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;

}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo img {
    width: 1rem;
    height: 1rem;
}

.menu-nav {
    width: 100%;
    display: flex;
    align-items: center;
}

.menu-nav ul {
    /* background-color: #667085; */

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;  

    width: 100%;
    font-size: 0.9rem;
}

.menu-nav ul li a{
    color: rgba(0, 0, 0, 0.6);
    font-weight: normal;
}

.menu-nav ul li a:hover {
    color: black;
    text-decoration: underline;
}


/* --------------Menu Auth--------------- */

.auth {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
}

.login {
    font-weight: bold;
    color: var(--color2);
}

.login:hover {
    color: black;
}

.register {
    color: white;
    background-color: var(--color1);

    padding: 8px 12px;
    border-radius: 5px;
}

.register:hover {
    background-color: #b32c2c;
}

/* ----------- end Menu Auth ---------------- */

/*  MENU MOBILE */

/* HERO SECTION */
.hero {
    background-color: #667085;
    background-image: url(../src/img/hero-banner2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    width: 100%;
    height: 500px;  
}


.container-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    

    width: 100%;
    height: 100%;
    padding-top: 60px;

    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(1px);
  
}

.hero-content{
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;

    width: 100%;
    max-width: 1200px;
    height: 100%;
    padding: 20px 20px 0 20px;

    /* background-color: #66708570; */
}

.hero-content-box {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 20px;

    height: 100%;
    width: 100%;
    /* background-color: #66708570; */
}


.hero-title {
    color: white;
    font-size: 4rem;
    font-size: clamp(2.5rem, 8vw, 4rem);
}

.hero-subtitle {
    color: white;
    font-size: clamp(0.8rem, 3vw, 1rem);
    width: 60%;
}

.hero-btn {
    width: 100px;
    height: 40px;
    border-radius: 10px;
    background-color: var(--color1);
    color: white;
    border: none;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    cursor: pointer;

    transition: .3s ease;
}

.hero-btn:hover {
    transform: scale(1.1);
}

.hero-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: clamp(250px, 45%, 300px);
    /* object-fit: contain; */
    filter: drop-shadow(0px -2px 2px rgba(255, 255, 255, 0.3));

}

/* ====================================== */

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;

    max-width: 1400px;
    width: 100%;
    padding: 20px;
    margin: 0 auto;  
}


/* About us Section*/

.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center; 
    width: 100%;
    padding: 10px;
}

.about {
    gap: 40px;
}

.about-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-title {
    font-size: 48px;

}

.about-subtitle {
    color: var(--color1);
    font-size: 0.9rem;
    font-weight: bold;   
}

.about-description {
    display: block;
    max-width: 700px;
    color: var(--color2);
}


/* Stats Section */

.section.stats {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 40px;
}

.stats-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: left;
    
    gap: 40px;
    padding: 10px;
}

.stats-item {
    display: flex;
    flex-direction: column;

    width: 250px;
    min-height: 200px;
}

.stats-item h3{
    font-size: 2.5rem;
    color: var(--color1);
}

.stats-item p {
    font-size: 1rem; 
}

.stats-strong-p {
    font-weight: bold;
    margin-bottom: 10px;
}

.stats-description {    
    color: var(--color2);
    opacity: 0.8;
}

/* ================================== */


.container-vagas {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;  

    text-align: center;
    padding: 10px;
    /* background-color: #8E2424; */
}

.small-text {
    color: var(--color1);
    background-color: #C3191908;
    padding: 5px 10px;
    border-radius: 40px;
    font-size: 0.7rem;
}

.vagas-description {
    color: var(--color2);
}

.container-vagas img {
    width: 100%; 
    height: 300px;
    object-fit: cover;
    background-color: #667085;
}

.vagas-list, 
.container-vagas-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;

    width: 100%;
}

.vagas-list {
    padding: 20px;
}

/* .container-vagas-list {
    width: 50%;
} */

.vagas-list-item {
    width: 100%;
    max-width: 700px;
    height: 100px;

    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.11);
    border-radius: 10px;
    /* background-color: #667085; */
}

.vagas-list-item h4 {
    margin-bottom: 20px;
    color: rgb(85, 85, 85);
}

.vagas-list-item p, span {
    color: var(--color2);
    font-size: 0.75rem;  
}

.word-space {
    margin-right: 15px;
}

.section-feedback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;

    background-color: #C3191908;  
}

.feedback-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;

}

.feedback-description{
    font-size: 1.6rem;
    max-width: 800px;
    width: 100%;
}

.feed-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

.feedback-user-name {
    color: black;
    font-size: 0.8rem;
    font-weight: bold;
}

.feedback-user-comment {
    font-size: 0.7rem;
    max-width: 500px;
    width: 100%;
}

.small-text.text-feedback {
    background-color: transparent;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;

    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    padding: 30px 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.form-group-one {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.form-group-one span {
    color: black;
    font-weight: bold;
    font-size: 1.7rem;
}

.form-group-one p {
    color: var(--color2);
    font-size: 1rem;
}

.form-group-two {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.form-group-two input{
    padding: 9px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    max-width: 80%;
    
}

.form-group-two button {
    padding: 9px;
    background-color: var(--color1);
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.copyright {
    font-size: 0.8rem;
    color: rgb(146, 146, 146);
}


@media (max-width: 865px) {

    .menu-nav {
        flex-direction: column;
        /* align-items: start; */
        gap: 20px;
        position: fixed;
        top: 0px;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgb(255, 255, 255);
        padding: 80px 0px;
        opacity: 0;
        transition: .3s;
    }

    .menu-nav.abrir-menu {
        right: 0;
        opacity: 1;
    }

    .menu-nav ul {
        flex-direction: column;
        align-items: start;
        gap: 0;
        padding: 20px;
        width: 100%;
        max-width: 600px;
    }

    .menu-nav li {
        width: 100%;
    }

    .menu-nav ul li a {
        display: inline-block;
        padding: 20px 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .menu-nav ul li a:hover {
        text-decoration: none;
    }

    .burger-ico {
        display: flex;
        flex-direction: column;
        gap: 3px;
        cursor: pointer;
        padding: 10px;
        z-index: 1;
        position: relative;
    }

    .burger-ico span {
        width: 20px;
        height: 3px;
        border-radius: 2px;
        background-color: rgb(0, 0, 0);
        transition: transform .3s ease;
    }

    .burger-ico.abrir-menu span:nth-child(1){
        position: absolute;
        transform: rotate(45deg);    
    }

    .burger-ico.abrir-menu span:nth-child(2){
        opacity: 0;
    }

    .burger-ico.abrir-menu span:nth-child(3){
        position: absolute;
        transform: rotate(-45deg);
    }

    /* .about-title {
        font-size: 2rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .feedback-description{
        font-size: 1.3rem;
    } */

}

@media (max-width: 611px) {

    .stats-list {
        text-align: center;  
    }  

}

@media screen and (max-width: 475px) {
    .hero-img {
        display: none;
    }

    .hero-content-box {
        align-items: center;
        text-align: center;   
    }

    .hero-subtitle {
        width: 80%;
    }
}

