#semCadastroPopup .input-group select {
    width: 80%;
    padding: 18px;
    font-size: 20px;
    display: block;
    margin: 0 auto;
}

#semCadastroPopup .botão {
    display: block;
    margin: 40px auto 0 auto;
    font-size: 20px;
    width: 60%;
}
#semCadastroPopup .input-group label {
    display: block;
    text-align: center;
    font-size: 20px;
    margin-bottom: 8px;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*{ /*aplica todas as configurações css para todo o codigo html*/
    margin: 0; 
    padding: 0;
    box-sizing: border-box;
    text-decoration: none; /*tira os sublinhados do texto*/
    list-style: none; /*tira as bolinhas da lista*/
}
body{
    font-family: "Poppins", sans-serif;
    
    background-repeat: no-repeat;
    background-size: cover;
    
}

.imagem{
    background-image: url(../assets/background.png);
    background-repeat: no-repeat;
    background-size: cover;
    height:962px; /* ajuste conforme necessário */
    margin-bottom: 0;
    
    
}

:root{
    --laranja: #ffa500;
    --verde: #14424b;
    --verde-claro: #217a8a;

}
.logo a{
    color: white;
}

/*classe reutilizavel*/
.container{
    max-width: 1440px;
    padding: 0 5%;
    margin: 0 auto;
}

.botão{
    padding: 10px 25px;
    color: white;
    border: none;
    cursor: pointer; /*mudar o shape do botão*/
    background-color: var(--verde);
    font-family: "Poppins", sans-serif;
    font-size: 20px;
}

/* menu superior*/
.background{
    background: var(--laranja);
}

nav{
    display: flex; /*os itens do menu vao ficar um do lado do outro*/
    justify-content: space-between; /*espaço no meio dos itens*/
    align-items: center; /* alinhar elemenos na vertical*/
    padding: 20px 0px;
    
    
}

.logo{
    font-size: 30px; 
    font-weight: bold;
}

.ul{
    display: flex;
    align-items: center;
}

.ul li{ /*configurar cada item da lista*/
    margin: 0 35px;
    font-size: 20px;
}

.ul li a{
    color: white;
    font-weight: bold;
}

/*main*/
main .container{
    display: flex;
    align-items: center;
    justify-content: space-between ;
    margin-top: 100px;
    
      
}

.texto-main{
    width: 50%;
}

.texto-main h1{
    font-size: 6.0rem;
    color: white;
}
.texto-main h4{
    font-size: 1.0rem;
    color: white;
}
.texto-main li{
    color: white; 
}

.texto-main div{
    display: flex;
    align-items: center;
    margin-top: 40px;
    justify-content: flex-start;
    gap: 50px; /* Espaço entre os botões */
}
.imagem-main{
    width: 100%;
    max-width: 600px;
}

.imagem-main img{
    width: 500px;
    height: auto;
    margin-left:150px;
    margin-top: 40px
}
.botao-link {
    
    color: white;
    text-decoration: underline;
    
}
/* menu icon*/
.menu-icon img{
    height: 30px;
    
}

.menu-icon{ /*fazer desaparecer quando tiver no desktop*/
    display: none; /* da para alterar a visibilidade do elemento*/
    position: relative;
    z-index: 10;/*para o icone de menu ficar para frente*/

}
/* =========================
   POPUP Estilo
========================= */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.6);
    z-index: 999;
}

.popup-content {
    background: #fff;             /* Fundo branco */
    color: #333;                  /* Texto escuro */
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    height: 500px;
    position: relative;
    padding-top: 45px;
    border: 3px solid var(--laranja); /* Borda amarela (usa a variável já definida) */
    box-shadow: 0 0 15px rgba(0,0,0,0.3); /* leve sombra */
}

.fechar {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #444;
    cursor: pointer;
}

/* Abas do popup (Registro / Login) */
.tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
}

.tablink {
    flex: 1;
    text-align: center;
    padding: 10px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    position: relative;
    transition: color 0.3s ease;
}

.tablink.active {
    color: var(--laranja);   /* Aba ativa amarela */
    font-weight: bold;
}

.tablink.active::after {
    content: "";
    position: absolute;
    bottom: -2px;   /* Barrinha abaixo */
    left: 20%;
    width: 60%;
    height: 3px;
    background: var(--laranja);
    border-radius: 2px;
}

/* Conteúdo de cada aba */
.tab-content {
    display: none;
}

.tab-content.ativo {
    display: block;
}

.tab-content form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    gap: 15px; /* espaço entre os elementos */
}


.input-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}

.input-group select {
    width: 80%;
    padding: 15px;
    border-radius: 15px;
    color: #00000098;
    background-color: white;
    border: 1px solid #ccc;
    font-size: 16px;
    margin-bottom: 5px;
    font-family: "Poppins", sans-serif;

}

.tab-content.ativo .input-group input{
    width: 80%;
    padding: 15px;
    border-radius: 15px;
    color: #00000098;
    background-color: white;
    align-items: center; 
}
/*fim popup*/


/*parceiros*/
.parceiros{
    background: var(--verde);
    padding: 30px 0;
    margin-top: 0; /* aumenta esse valor para mais espaço acima */

    
    
}
.parceiros .container{
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.parceiros .parceiros-texto{
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}
.parceiros .nome-parceiros{
    display: flex;;
    justify-content: center;
    align-items: center;
    color: white;
    white-space: nowrap;
    /* Remova justify-content: center; para o texto deslizar */
    position: relative;
    height: 2.5rem; /* ajuste conforme necessário */
   
}
.nome-parceiros {
    width: 600px; 
    max-width: 100%;
    overflow: hidden;
    
}
.nome-parceiros-inner {
    display: inline-block;
    padding-left: 30%;
    animation: parceiros-marquee 20s linear infinite;
}
.nome-parceiros-inner span {
    margin-right: 40px; /* espaço entre nomes */
    font-size: 2rem; /* letras maiores */
    font-weight: bold;
}
@keyframes parceiros-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
/* section sobre*/
.sobre {
    background: white;      /* Ou outra cor desejada */
    background-image: none; /* Remove a imagem de fundo herdada do body */
    margin-top: 0; /* aumenta esse valor para mais espaço */
    padding: 40px 0;
}
.sobre .container {
    display: flex;
    flex-direction: column; /* força o título ficar em cima e os cards embaixo */
    align-items: center; /* centraliza o conteúdo */
    background-color: #ffffff;
    border: 4px solid var(--laranja);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.sobre .titulo-sobre {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: bold;
}

/* garantir que os cards fiquem lado a lado em telas grandes */
.sobre .cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.sobre .card {
    flex: 1;
    margin: 0;
    padding: 30px;
    border-radius: 15px;
    background-color: #ffa500;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.sobre .container .card:first-child img {
    width: 70px; /* ajuste para o tamanho desejado */
    height: auto;
}
.sobre .card:hover{ /* quando o mause passa por cima destaca*/
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px);
    transition: all 0.3s ease;
    background-color: white; 
}
.sobre .card img{
    width: 100px
}
.sobre .card .titulo,
.sobre .card h3 {
    margin-top: 8px;   /* pequeno espaço acima */
    margin-bottom: 4px; /* pequeno espaço abaixo */
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
}

.sobre .card p {
    margin-top: 0;   /* sem espaço extra acima */
    margin-bottom: 0; /* sem espaço extra abaixo */
    line-height: 1.4;
}
/*tornar colaborador */
.colaborador{
    background-color: var(--verde-claro);
    padding: 70px 0;
    margin-top: 200px;
}
.colaborador .box-colaborador{
    text-align: center;
    padding: 100px ;
    background-image: url('../assets/background_colb.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 15px;

}
.colaborador .box-colaborador h2{
    font-size: 2.5rem;
}
.colaborador .box-colaborador p{
    margin: 13px 0;
    font-weight: 500%;

}
.colaborador .box-colaborador input{
    width: 35%;
    padding: 15px;
    border-radius: 15px;
    color: #00000098;
    background-color: white;

}
.colaborador .box-colaborador button{
    font-size: 15px;
    border: none;
    outline: none;
    padding: 15px;
    border-radius: 15px;
    color:white;
    background-color: var(--verde-claro);
    cursor: pointer;

}
/*footer*/
footer{
    background-color: var(--verde);
    padding: 60px;
}
footer .container{
    display: flex;
    color: white;
    justify-content: space-between; 
    

}
footer .container .ul{
    width: 25%;
    
    
}
footer .container h3{
    margin-bottom: 20px;
    font-weight: 600;
}
footer .container .redes-sociais img{
    width: 40px;
    margin-right: 10px;
}
footer .container ul > p{
    margin-bottom: 20px;
}
footer .container li{
    margin: 10px 0;
}
footer .container a{
    color: white;
}
/*resposivo*/
@media (max-width: 960px){ /*isso quer dizer que quando a tela for menor que o valor que esta entre parenteses a tag vaiser ativada*/
    .menu-icon{
        display: block; /*para o menu icon aparecer quando diminuir a tela*/
    }
    .ul{
        position: fixed;
        background-color: var(--laranja);
        top:0%;
        width: 100%;
        height: 100%;
        left: 100%;
        transition: 0.3s; /*tempo de transição da abertura do menu*/
        flex-direction: column; /*para os itens ficarem um embaixo do outro*/
        justify-content: center; /*para ficar no meio os itens*/
    }
    .ul li{
        font-size: 25px;
        margin: 20px 0;

    }
    .ul.ativo{
        left: 0; /*para aparecer as opções de menu*/
    }
    main .container{
     flex-direction: column;

    }

    main .container{
        flex-direction: column;
        margin-top: 100px;/* diminua aqui conforme desejar */
    }

    main .container .imagem-main{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        
    }
    main .container .imagem-main img {
        margin-left: 0;
        margin-top: 40px;
        width: 300px;
    }
    main .container .texto-main h1{
        font-size: 4.5rem;
    }
    main .container .texto-main h4{
        font-size: 1.0rem;
    }
    main .container .texto-main{
       width: 100%;
       text-align: center;
    }
    main .container .texto-main div{
        justify-content: center;
        gap: 20px; /* Adiciona espaço entre os botões */
    }
    .parceiros .container{
        flex-direction: column;
    }

    .parceiros .nome-parceiros{
        margin-top: 30px;
    }

    .sobre .container{
            flex-direction: column;
            align-items: center;
            padding: 20px;
        }
        .sobre .cards {
            flex-direction: column;
            gap: 30px;
            width: 100%;
            align-items: center;
            display: flex;
        }
        .sobre .card{
            width: 100%;
            max-width: 350px;
            margin: 0 auto;
        }
    .colaborador .box-colaborador h2{
        font-size: 2rem;
    }
    .colaborador .box-colaborador input{
        width:90%;

    }
    .colaborador .box-colaborador button{
        width:50%;
        margin-top: 20px;
    }
    .colaborador .box-colaborador{
        padding: 50px  ;
    }
    footer .container{
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}


