*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins", sans-serif;
}
html {
    overflow-x: hidden;
  }

::-webkit-scrollbar{
    width: 6px;
}

::-webkit-scrollbar-thumb{
    background-color: #1E1E1E;
    border-radius: 30px;
}

body{
    height: 100vh;
    overflow-x: hidden;
}

.interface{
    max-width: 1440px;
    margin: 0 auto;
}

/*section 1*/
section.sec-1 {
    background-image: url(imgs/Sem\ título\ \(15\).png); /* Caminho da imagem */
    background-size: cover; /* Ajusta a imagem para cobrir toda a section */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Impede que a imagem se repita */
    height: 100vh; /* Define a altura como 100% da tela */
}
  
.sec-1 .button{
    background-color: #faf9f8;
    color: #0e0e0e;
}




.txt1 h1{
    font-size: 48px;
    color: white;
    max-width: 600px;
    line-height: 50px;
}

.txt1 p{
    font-size: 20px;
    color: white;
    max-width: 550px;
    font-weight: 400;
}

.txt1 img{  
    border-radius: 20px;
    margin-left: -50px;  
}

.sec-1 .flex{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    gap: 50px;
}


button{
    width: 150px;
    color: white;
    background-color: #1E1E1E;
    border-radius: 30px;
    padding: 6px;
    border: solid 3px #1E1E1E;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.5s ease, transform 0.5s ease; /* Define a transição */
}

button:hover{
    color: #1E1E1E;
    background-color: white;
    transform: scale(1.04);
    transition: .2s;
}

/*section 2*/

.flex{
    display: flex;
}

section.sec-2{
    margin-top: 200px;
    margin-bottom: 100px;
}

.txt-sec2 h2,h4,p{
    color: #1E1E1E;
}

.txt-sec2 h2{
    max-width: 613px;
    font-size: 48px;
    line-height: 50px;
}

.txt-sec2 h4{
    font-size:32px ;
    max-width: 519px;
    line-height: 35px;
    font-weight: 300;
    color: #3a3a3a;
}

.txt-sec2{
    margin-top: 60px;
}

.txt-sec2 p{
    max-width: 585px;
    color: #1E1E1E;
}

section.sec-2 .flex{
    justify-content: center;
}

/*section 3*/

section.sec-3{
    margin-top: 100px;
    position: relative;
}

section.sec-3 .box button{
    font-weight: 600;
    font-size: 15px;
    margin-left: 62px;
}

section.sec-3 .flex{
    justify-content: center;
    margin-bottom: 50px;
}

.flex-b{
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.box{
    background-color: #1E1E1E;
    border-radius: 30px;
    margin-bottom: 20px;
    height: 426px;
    max-width: 300px;
}

.box h1{
    max-width: 275px;
    color: rgb(255, 255, 255);
    font-size: 24px;
    margin-bottom: 50px;
    line-height: 25px;
    background-color: #0e0e0e;
    border-radius: 20px;
    padding: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.box:hover h1{
    color: #faf9f8;
}

.flex-b .box {
    position: relative; /* Permite o posicionamento absoluto dos filhos */
}

.flex-b .box img {
    width: 100%; /* A imagem ocupa toda a largura da caixa */
    height: auto; /* Mantém a proporção da imagem */
}

.flex-b .box h1,
.flex-b .box .button {
    position: absolute;
    bottom: 20px; /* Distância do fundo da caixa */
    left: 10px; /* Distância da lateral esquerda da caixa */
}

.flex-b .box:hover img {
    opacity: 0.3;
    transition: 0.6s ease;
}

.titulo-sec3 h1{
    font-size: 48px;
    max-width: 346px;
    color: #1E1E1E;
    line-height: 50px;
}

.paragrafo3 p{
    max-width: 665px;
    font-size: 20px;
    line-height: 25px;
    color: #131313;
}

.flex-b .box {
    position: relative;
    overflow: hidden; /* Garante que a imagem não ultrapasse os limites da box */
}

.flex-b .box img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease; /* Transição suave para o zoom */
}

.flex-b .box:hover img {
    transform: scale(1.2); /* Aumenta a imagem em 20% no hover */
}

/*section 4*/

section.sec-4{
    margin-top: 100px;
    height: 990px;
    background-color: #000000;
    padding: 50px;
    overflow-y: auto;
}

.titulo4 h1{
    color: #ffffff;
    font-size: 44px;
    line-height: 50px;
    max-width: 346px;
}

.para4 p{
    font-size: 20px;
    color: #ffffff;
    line-height: 25px;
    max-width: 635px;
}

section.sec-4 .flex{
    justify-content: center;
    gap: 40px;
}

section.sec-4 button{
    background-color: #ffffff;
    color: #1E1E1E;
    border: solid 2px #ffffff;
}

section.sec-4 button:hover{
    background-color: #3a3a3a;
    color: #ffffff;

}

.box1 {
    background: transparent; /* Fundo branco */
    border-radius: 10px; /* Bordas arredondadas para um visual clean */
    box-shadow: 0 4px 8px rgba(165, 163, 163, 0.1); /* Sombra suave para destaque */
    padding: 20px; /* Espaçamento interno */
    text-align: left; /* Centraliza o conteúdo */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animação suave */
    max-width: 350px;
    max-height: 350px;
    border: 2px solid #eeeeee;
    margin-top: 50px;
}

.box-inst{
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-inst .box1{
    max-width: 1130px;
    max-height: 350px;
    text-align: left;
}

.box-inst .box1 p{
    max-width: 1130px;
    padding: 10px;
}

.box1 h1{
    color: #ffffff;
    font-size: 32px;
    line-height: 30px;
}

.box1 p{
    font-size: 14px;
    color: #b2b2b2;
    max-width: 297px;
}

.box1 I{
    font-size: 35px;
    color: #ffffff;
    margin-right: -20px;
}

/*section 5*/

section.sec-5{
    margin-top: 100px;
}

section.sec-5 .flex{
    margin-top: 50px;
    gap: 40px;
    justify-content: center;
}

.titulo-s h1{
    color: #1E1E1E;
    font-size: 48px;
    max-width: 200px;
    line-height: 50px;
    margin-left: 150px;
}

.txt-sobre p{
    max-width: 600px;
    color:#161616;
    font-size: 15px;
}


section.sec-5 button{
    font-size: 20px;
    font-weight: 600;
}

.img-sobre img{
    border-radius: 30px;
}

/*rodapé*/
section.rodapé .txt1 img{
    margin-left: -30px;
    margin-bottom: -80px;
}

section.rodapé{
    height: 400px;
    background-color: #1E1E1E;
    margin-top: 200px;
}

section.rodapé .flex{
    justify-content: center;
    align-items: center;
    gap: 350px;
}

.coluna-1 p{
    max-width: 400px;
    color: white;
    margin-left: 35px;
}

.coluna-2 a{
    text-decoration: none;
    font-size: 20px;
}

.coluna-2 h1{
    font-size: 38px;
    color: #ffffff;
}

.icones a {
    display: flex;  /* Alinha ícone e texto na horizontal */
    align-items: center;  /* Centraliza verticalmente */
    gap: 8px;  /* Espaço entre ícone e texto */
    text-decoration: none;  /* Remove sublinhado */
    color: white;  /* Mantém a cor do texto padrão */
    font-weight: 600;
}

.icones :hover{
    color: #0e0e0e;
    transition: .2s ease;
}

.icones i:hover{
    color: white;
    transition: .2s ease;
}

.icones i{
    font-size: 20px;
    color: #faf9f8;
    padding: 10px;
}

hr{
    margin-top: 50px;
    color: white;
}

.copy{
    display: flex;
    justify-content: center;
    align-items: center;
}

.copy p{
    color: #ffffff;
}

/*sec-ad*/
section.sec-ad{
    margin-top: 100px;
    height: 780px;
    background-color: #000000;
    padding: 50px;
}

.box-ad {
    background: transparent; /* Fundo branco */
    border-radius: 10px; /* Bordas arredondadas para um visual clean */
    box-shadow: 0 4px 8px rgba(165, 163, 163, 0.1); /* Sombra suave para destaque */
    padding: 20px; /* Espaçamento interno */
    text-align: left; /* Centraliza o conteúdo */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animação suave */
    max-width: 350px;
    max-height: 350px;
    border: 2px solid #eeeeee;
    margin-top: 50px;
}

.sec-ad .flex{
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.box-ad i {
    font-size: 2rem; /* Ícones maiores */
    color: #ffffff; /* Azul para destacar os ícones */
    margin-bottom: 10px;
}

.box-ad h1 {
    font-size: 1rem; /* Tamanho do título */
    color: #ffffff; /* Cor escura para boa leitura */
    margin-bottom: 10px;
}

.box-ad p {
    font-size: 13px; /* Texto legível */
    color: #b3b3b3; /* Cinza suave para um visual moderno */

}

.box-ad:hover {
    transform: translateY(-5px); /* Efeito sutil ao passar o mouse */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Aumenta a sombra */
}

.txt-ad h1{
    font-size: 48px;
    line-height: 33px;
    max-width: 346px;
    margin-left: -60px;
    color: #ffffff;
}

.p-ad p{
     font-size: 20px;
     max-width: 635px;
     margin-left: 80px;
     color: #faf9f8;
}
/*sec-galeria*/
section.sec-gal{
    height: 1000px;
    margin-top: 100px;
}
.sec-gal .box{
    height: 390px;
}

.txt-gal .flex{
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.p-gal p{
    max-width: 665px;
    font-size: 20px;
}

.h1-gal{
    font-size: 44px;
    line-height: 53px;
}

.txt-gal .flex{
    gap: 50px;
}

.bol {
    width: 10px; /* Tamanho da bolinha */
    height: 10px; /* Tamanho da bolinha */
    background-color: black; /* Cor preta */
    border-radius: 50%; /* Deixa a forma redonda */
}

.txt-sobre p {
    line-height: 1.8;
}

.bol {
    width: 10px; /* Tamanho da bolinha */
    height: 10px; /* Tamanho da bolinha */
    background-color: black; /* Cor preta */
    border-radius: 50%; /* Forma redonda */
    display: inline-block; /* Faz com que a bolinha fique ao lado do texto */
    margin-right: 8px; /* Espaçamento entre a bolinha e o texto */
    vertical-align: middle; /* Alinha verticalmente ao meio do texto */
}


@media (max-width: 1000px){
    section.sec-1 {
        background-image: url(imgs/back-mob.png); /* Caminho da imagem */
        background-size: cover; /* Ajusta a imagem para cobrir toda a section */
        background-position: center; /* Centraliza a imagem */
        background-repeat: no-repeat; /* Impede que a imagem se repita */
        height: 800px; /* Define a altura como 100% da tela */
        width: 100%;
    }

    section.sec-1 .flex{
        flex-direction: column-reverse;
    }

    .txt-topo{
        margin-top: -100px;
        padding: 10px;
    }

    .txt1{
        margin-top: 30px;
    }

    .txt1 h1{
        font-size: 38px;
        line-height: 37px;
    }

    .txt1 p{
        font-size: 16px;
    }

    .img-topo img{
        width: 390px;
        margin-top: -100px;
    }
    /*section 2*/
    .flex{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    section.sec-2{
        height: 700px;
    }

    .img-2 img{
        width: 400px;
        margin-top: -190px;
    }

    .txt-sec2{
        padding: 10px;
    }

    /*sec-ad*/
    .p-ad p{
        font-size: 15px;
        width: 390px;
        margin-left: 0;
        padding: 10px;
    }

    .box-ad{
        z-index: 1;
    }

    section.sec-ad{
        height: 2140px;
    }

    /*section 3*/
    section.sec-3::before{
        content: "";
        position: absolute;
        top: -100px;
        left: 0;
        width: 100%;
        height: 50px;
        background-color: #000000;
        z-index: -1;
    }
    .flex-b{
        flex-direction: column;
    }
    .titulo-sec3, .paragrafo3{
        padding: 10px;
    }

    /*section 4*/
    .sec-4{
        min-height: 2700px;
    }

    .titulo4, .para4{
        padding: 10px;
    }
     
    .box-inst .box1{
        max-height: 750px;
    }

    .para4 p{
        font-size: 15px;
    }

    .icone i{
        margin-left: -15px;
        margin-bottom: -20px
    }

    .box1{
        text-align: center;
    }

    .box1 p{
        align-items: center;
    }

    /*sec-gal*/
    section.sec-gal{
        height: 2940px;
    }

    .p-gal p{
        font-size: 15px;
        padding: 30px;
    }
    /*section 5*/
    .img-sobre img{
        width: 340px;
        margin-left: 25px;
    }
    .titulo-s h1{
        margin-left: 10px;
    }

    .txt-sobre{
        padding: 10px;
    }

    /*rodape*/
    section.rodapé{
        height: 650px;
    }

    section.rodapé .txt1 img{
        margin-left: 0;
    }

    .coluna-1{
        text-align: center;
    }

    .coluna-1 p{
        margin-left: 0;
        padding: 30px;
    }

    .copy p{
        text-align: center;
        font-size: 10px;
    }

    .coluna-2{
        margin-top: -300px;
        text-align: center;
    }
}