/* Importação de fontes  */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url(./header.css);

.montserrat {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
}

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

/* Definição de rotas padrão */

.root {
    --bg-color: #FFFF;
    --secondary-color: #E30613;
    --third-color: #a12720;

    --font-text: "Montserrat", sans-serif;
    --h1-font: 6rem;
    --h2-font: 3rem;
    --p-font: 1rem;
}

/* Carreiras */

.container_banner {
    background-color: var(--bg-color);
    height: 50rem;
    width: 100%;
    display: flex;
    gap: 0.5rem;
    padding: 0.3rem;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to Left, rgba(0, 0, 0, 0.848), rgba(0, 0, 0, 0.634)), url('../media/img/banner-carreiras.png');
    background-size: cover;
    background-position: bottom center;
}

/* Conteúdo do Banner */
.banner_content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-left: 0;
}

.banner_content h1 {
    justify-content: justify;
    font-size: 5.1rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    color: #FFFF;
    line-height: 1.2;

}

.banner_title h1 span {
    color: #E30613;
}

.banner_text {
    width: 78%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.banner_text p {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 450;
    color: #FFFF;
    margin-top: 1rem;
    margin-left: 3rem;
}


.banner_btn a {
    padding: 0.7rem 1rem;
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    font-size: var(--p-font);
    font-weight: 800;
    color: #ffff;
}

/* Imagem do Banner */

.banner_image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    margin-bottom: -1rem;
}

.homem-carreira img {
    width: 80%;
    height: 80%;
    display: none;
}

/* Division content  */

.division {
    width: 100%;
    height: 2rem;
    display: flex;
    flex-direction: row;
    align-content: flex-end;
    justify-content: center;
    align-items: flex-end;
}

.banner_division {
    width: 100%;
    height: 100%;
    background-color: #a12720;
    display: flex;
}


.nav-content{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    padding: 1.5%;
  }
  
  /* '.nav-content ul {
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    gap: 1rem;
  }' */
  
  .nav-content ul li a {
    width: 15rem;
    height: 3rem;
    font-family:"Montserrat", sans-serif ;
    align-items: center;
    justify-content: center;
  
    display: flex;
    flex-direction: column;
    gap: 10px;
    
    padding: 13% 40%;
    font-size: 1.3rem;
    font-weight: 800;
    color: black;
    border-radius: 30px;
    background-color: #D9D9D9;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}
menu-list {
    flex-direction: column;
  }

/* Botão */
.nav-content ul li a.botao-sobre {
    background-color: #b61818;
    color: #fff;
    height: 2rem;
    padding: 0.8rem 2 rem;
}

.nav-content ul li a:hover {
    background-color: #868686;
    color: #000000;
}


/* Linha vermelha abaixo dos botões ativos */
.nav-division {
    margin-top: 1.5%;
    height: 4px;
    background-color: #b61818;
    width: 25%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    margin-bottom: 1.5%;
}

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

body{
    background-image: linear-gradient(to right, #ffffff, #f7f7f7);
    margin: 0;
    padding: 0;
}

.container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem;
}

.custom-card {
    background-color: #fff;
    margin: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    max-height: 30rem;
    min-height: 40rem;
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    text-align: center;
}


.avatar{
    width: 8rem;
    height: 8rem;
    object-fit: cover;
}

.card-title{
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.card-text{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    height: rem;
    font-size: 1rem;    
    color: #616161;
    font-weight: 400;
    line-height: 1.6;
}

.card-footer {
    padding: 0.5rem;
    border-top: 1px solid #f1f1f1;
    background-color: #ffffff;
  }
  
  .card-footer i {
    font-size: 1.2rem;
    color: #93a9d3;
    cursor: pointer;

  }
  
  .card-footer i:hover {
    color: #333333;
  }
  
/* Footer */

footer {
    background-color: #a12720;
    padding: 0;
    margin: 0;
    text-align: center;
    color: white;
    font-family: "Montserrat", sans-serif;
    position: relative;
}

.social-media-container {
    background-color: #D71920;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: -5px;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    background-color: #D71920;
    padding: 10px;
    border-radius: 5px;
    width: calc(100% + 20px);
    margin: 0 -10px;
    box-sizing: border-box;
    text-decoration: none;
}

.social-media i {
    text-decoration: none;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.addresses {
    display: flex;
    justify-content: space-around;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
    background-color: #b61818;
}

.address {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 10px;
}

.divider {
    width: 2px;
    height: 60px;
    background-color: white;
    margin-left: 10px;
    margin-right: 10px;
}


/* Responsividade */
@media (max-width: 1024px) {
    .container_banner {
        height: auto;
        padding: 2rem 1rem;
        flex-direction: column; 
        text-align: center;
    }
    .banner_content {
        padding: 0 1rem; 
    }
    .banner_content h1 {
        font-size: 4rem;
        margin-bottom: 1rem;
    }

    .banner_text {
        width: 90%; 
        margin: 0 auto;
    }
    .banner_text p {
        font-size: 1.1rem;
        margin-left: 2rem;
        margin-right: 2rem; 
        line-height: 1.6; 
    }
    .banner_btn a {
        padding: 0.6rem 0.9rem;
        font-size: 1rem; 
        margin-top: 1rem;
        text-align: center;
    }
    .banner_image img {
        display: none !important; 
    }

    .nav-content {
        flex-direction: column;
        text-align: center;
    }
    .nav-content ul {
        flex-direction: column;
        gap: 1rem;
        
    }

    .nav-content ul li a {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    } 
    .container {
        flex-direction: column;
        align-items: center;
    }
    .custom-card {
        width: 100%;
        padding: 1rem;
    }
    
    .col-12 {
        flex: 0 0 100%; 
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-content ul {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-content ul li a {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

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

    .custom-card{
        width: 100%;
    }

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

    .banner_content h1{
        font-size: 3.5rem;
    }

    .banner_text p {
        font-size: 1rem;
        margin-left: 1rem;
    }

    .banner_btn a{
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }

    .col-12 {
        flex: 0 0 100%; 
        max-width: 100%;
    }
    footer .addresses {
        flex-direction: column;
        gap: 1rem;
    }
    
    .divider{
      rotate: 90deg;
    }
    
    .social-media {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }

}

@media (max-width: 500px){
    .nav-content ul {
        gap: 0.5rem;
    }

    .nav-content ul li a{
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

    .custom-card{
        padding: 1rem;
    }
    .banner_content h1{
        font-size: 2.8rem;
    }

    .banner_text p {
        font-size: 0.9rem;
        margin-left: 0.5rem;
    }

    .banner_btn a {
        font-size: 0.4rem 0.7rem;
        padding: 0.8rem;
    }
}
