#s-home {
    background: linear-gradient(to bottom, #2b2b2b, #2b2b2b);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;

    box-sizing: border-box;
    font-family: 'KoHo';
    height: 73vh;
    max-width: 100%; /* Garante que o contêiner não ultrapasse 100% da largura disponível */
    overflow: hidden; /* Impede que o conteúdo dentro do contêiner ultrapasse os limites */
}

.texto-home {
    text-align: left;
    font-size: 30px;
    margin-right: 100px;
}

.texto-homesub {
    text-align: left;
    font-size: 20px;
}

.button-instagram {
    margin-top: 20px; /* Adiciona espaço acima do botão */
    margin-right: 100px;
}

.botao-instagram {
    display: inline-block;
    padding: 15px 100px;
    font-size: 20px;
    font-family: 'KoHo', sans-serif;
    color: white;
    background-color: #E1306C;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

/* .botao-instagram:hover {
    background-color: #c13584;
} */

@media (max-width: 768px) {
    #s-home {
        flex-direction: column;
        height: auto;
    }

    .texto-home, .button-instagram {
        text-size-adjust: 100px;
        text-align: center;
        margin-right: 0px;
    }

    .imagem-home {
        margin-top: 20px;
        text-align: center;
        margin-right: 0px;
        width: 4000px;
    }
}

#space-1{
    background: #2b2b2b; /* Cor sólida para suavizar a transição OLD: #3b3b3b*/  
    height: 4vh;
}

#space-2{
    background: linear-gradient(to bottom, #2b2b2b, #2b2b2b);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    /* margin-top: 1.5px; LINHA BRANCA*/ 
    box-sizing: border-box;
    font-family: KoHo;
    height: 10vh;
    max-width: 100%;
    font-size: 30px;
}

#s-videos {
    background: #2b2b2b; 
    height: auto;
}

#s-videos h1 {
    font-size: 1.5px; 
    color: white;
}

.video-container {
    display: flex;
    flex-direction: column; /* Alinha os vídeos verticalmente */
    width: 100%; /* Garante que o contêiner use a largura total disponível */
}

.video-item {
    width: 100%; /* Garante que o vídeo ocupe toda a largura do contêiner */
    height: auto; /* Mantém a proporção da altura do vídeo */
}

.video-item.active {
    display: block; /* Mostra apenas o vídeo ativo */
}

@media (max-width: 768px) {
    
    .video-container {
        display: flex;
        flex-direction: column; /* Alinha os vídeos verticalmente */
        width: 100%; /* Garante que o contêiner use a largura total disponível */
    }

    .video-item {
        width: 100%; /* Garante que o vídeo ocupe toda a largura do contêiner */
        height: auto; /* Mantém a proporção da altura do vídeo */
    }

    .video-item.active {
        display: block; /* Mostra apenas o vídeo ativo */
    }

    .botao-veja-mais-videos{
        text-size-adjust: 100px;
        text-align: center;
    }
}

#space-3{
    background: #2b2b2b; /* Cor sólida para suavizar a transição OLD: #3b3b3b*/  
    height: 4vh;
}

.button-veja-mais-videos {
    margin-top: 20px; /* Adiciona espaço acima do botão */
    display: flex;
    justify-content: center;
    align-items: center;
}

.botao-veja-mais-videos {
    display: inline-block;
    padding: 15px 100px;
    font-size: 20px;
    font-family: 'KoHo', sans-serif;
    color: rgb(0, 0, 0);
    background-color: #ffffff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin: 20px auto; /* Centraliza o botão horizontalmente */
    display: block; /* Para garantir que o botão se comporte como um bloco */
}

#s-grid {
    background: #2b2b2b;
    height: auto;
}

#s-grid h1 {
    font-size: 1.5px;
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    grid-template-rows: repeat(4, 1fr); 
    grid-gap: 10px; 
    justify-items: center; 
}

.item {
    height: 100%;
    overflow: hidden; 
    background: #2b2b2b;
    display: flex;
    align-items: center; 
    justify-content: center; 
}

.item img {
    opacity: 0.3;
    width: 100%;
    height: 100%; 
    transform: scale(1.5); /* Corrigido: 'scale1' para 'scale' */
    transition: transform 0.5s, opacity 0.5s;
    user-select: none; /* Evita a seleção da imagem */
    -webkit-user-select: none; /* Compatibilidade com navegadores WebKit */
    -moz-user-select: none; /* Compatibilidade com navegadores Firefox */
    -ms-user-select: none; /* Compatibilidade com navegadores IE/Edge */
}

.item img:hover {
    opacity: 1;
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr; 
        grid-template-rows: repeat(12, 1fr); 
    }

    .botao-veja-mais-videos{
        text-size-adjust: 100px;
        text-align: center;
    }
}

.button-veja-mais-fotos {
    margin-top: 10px; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.botao-veja-mais-fotos {
    display: inline-block;
    padding: 15px 100px;
    font-size: 20px;
    font-family: 'KoHo', sans-serif;
    color: rgb(0, 0, 0);
    background-color: #ffffff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin: 20px auto; 
    display: block; 
}

#space-4{
    background: #2b2b2b; 
    height: 5vh;
}

#s-quemsoueu {
    background: linear-gradient(to bottom, #2b2b2b, #2b2b2b);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    /* margin-top: 1.5px;  LINHA BRANCA */ 
    box-sizing: border-box;
    font-family: KoHo;
    height: 73vh;
    max-width: 100%; /* Garante que o contêiner não ultrapasse 100% da largura disponível */
    overflow: hidden; /* Impede que o conteúdo dentro do contêiner ultrapasse os limites */
}

#s-quemsoueu h1 {
    font-size: 1.5px; 
    color: white;
}

.texto-quemsoueu {
    text-align: center;
    font-size: 30px;
    margin-left: 100px;
}

.texto-quemsoueusub {
    text-align: center;
    font-size: 20px;
}

.button-quemsoueu{
    margin-top: 10px; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.botao-quemsoueu{
    display: inline-block;
    padding: 15px 100px;
    font-size: 20px;
    font-family: 'KoHo', sans-serif;
    color: rgb(0, 0, 0);
    background-color: #ffffff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin: 20px auto; /* Centraliza o botão horizontalmente */
    display: block; /* Para garantir que o botão se comporte como um bloco */
}

@media (max-width: 768px) {
    #s-quemsoueu {
        flex-direction: column;
        height: auto;
    }

    .texto-quemsoueu, .button-quemsoueu {
        margin-top: 20px;
        text-size-adjust: 100px;
        text-align: left;
        margin-left: 0px;
    }

    .imagem-quemsoueu {
        text-align: center;
        width: 4000px;
    }
}

#space-5{
    background: #2b2b2b; /* Cor sólida para suavizar a transição OLD: #3b3b3b*/  
    height: 10vh;
}

#space-6{
    background: #2b2b2b; 
    height: 10vh;
    background: linear-gradient(to bottom, #2b2b2b, #2b2b2b);
    color: #bfffa1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    /* margin-top: 1.5px; LINHA BRANCA*/ 
    box-sizing: border-box;
    font-family: KoHo;
    max-width: 100%;
    font-size: 30px;
}

#space-7{
    background: #2b2b2b; /* Cor sólida para suavizar a transição OLD: #3b3b3b*/  
    height: 10vh;
}

#s-atendimento h1 {
    font-size: 1.5px; 
    color: white;
}

#s-atendimento {
    background: #2b2b2b;
    /* height: 50vh;     REMOVIDO, BUG SOBREPOSIÇÃO*/ 
}

.texto-atendimentos{
    display: flex; /* Ativa o layout flexível */
    justify-content: center; /* Centraliza os itens horizontalmente */
    align-items: center; /* Centraliza os itens verticalmente */
    gap: 20px; /* Espaçamento entre os itens */
}

.atd-1, .atd-2, .atd-3{
    padding: 150px 100px;
    font-size: 40px;
    font-family: 'KoHo', sans-serif;
    color: rgb(0, 0, 0);
    background-color: #ffffff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin: 20px auto; 
    display: block; 
}

@media (max-width: 768px) {

    #s-atendimento {
        height: auto;  
        overflow: hidden;
    }

    .texto-atendimentos {
        flex-direction: column; /* Alinha os itens verticalmente em telas menores */
        align-items: center; /* Estica os itens para preencher o contêiner */
    }

    .atd-1, .atd-2, .atd-3 {
        width: 100%; /* Faz os itens ocuparem toda a largura disponível */
        margin: 10px 0; /* Ajusta o espaçamento entre os itens na vertical */
        text-align: center; /* Centraliza o texto dentro dos itens */
    }
}

#space-8{
    background: linear-gradient(to bottom, #2b2b2b, #2b2b2b);
    height: 10vh;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    /* margin-top: 1.5px; LINHA BRANCA*/ 
    box-sizing: border-box;
    font-family: KoHo;
    height: 10vh;
    max-width: 100%;
    font-size: 30px;
}

@media (max-width: 768px) {
    #space-8{
        height: 30vh;
        overflow: hidden;
    }
   
}

#s-feedback{
    background: linear-gradient(to bottom, #2b2b2b, #2b2b2b);
    height: 60vh;
    display: flex;
    justify-content: center;
}

#s-feedback h1 {
    font-size: 1.5px; 
    color: white;
}

.title-avaliacao{
    display: flex;
    align-items: center;
    justify-content: space-between; /* Alinha título e botões */
    padding: 10px;
}

.button-container {
    display: flex;
    gap: 200px; /* Espaçamento entre botões */
}

/* @media (max-width: 600px) {
    .title-container {
        flex-direction: column;
        align-items: flex-start; 
    }

    .button-container {
        margin-top: 10px; 
        width: 100%;
        justify-content: space-between; 
    }
} */

#next, #pause, #prev{
    position: absolute;
    /* top: 40%; BUG RESOLVIDO */ 
    color: #fff;
    background-color: transparent;
    border: none;
    font-size: xxx-large;
    font-family: monospace;
    font-weight: bold;
    left: 400px;
}

#next{
    left: unset;
    right: 400px;
}

/* #pause{
    right: 1px;
} */


.slider{
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.feedbacktexto{
    position: absolute;
    width: 400px;
    height: 400px;
    text-align: justify;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    transition: 0.5s;
    left: calc(45% - 110px);
    top: 0;
    font-family: 'KoHo';
    font-size: 20px;
}

.Imagem-cliente {
    width: 100px;
    height: 100px;
    background-color: #ccc;
    border-radius: 50%;
    margin-bottom: 50px;
}

.Nome-cliente {
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
}

.Feedback-cliente {
    font-size: 0.9em;
    text-align: left;
    max-width: 600px;
}

@media (max-width: 768px) {

    #s-feedback{
        height: 110vh;
    }

    .feedbacktexto{
        height: auto; 
        left: calc(35% - 100px);
        overflow: hidden;
        /* padding: 40px; */
    }

    .Feedback-cliente{
        font-size: 0.9em;
        text-align: left;
        max-width: 200px;
    }
  
    #next {
        right: 10px;
        margin-top: 10px;
    }

    #prev{
        overflow: hidden;
        left: 250px;
        /* bottom: 20px; */
        margin-top: 10px; 
    }

    .slider{
        overflow: hidden;
    }
}

#space-9{
    background: linear-gradient(to bottom, #2b2b2b, #2b2b2b);
    color: white;
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    /* margin-top: 1.5px; LINHA BRANCA*/ 
    box-sizing: border-box;
    font-family: KoHo;
    max-width: 100%;
    font-size: 30px;
}

@media (max-width: 768px) {
    #space-9{
        text-align: center;
    }
}

#s-servico{
    background: #2b2b2b;
    height: 40vh;
}

.trabalhos-realizados{
    display: grid;
    grid-template-columns: repeat(3, 3fr); 
    grid-template-rows: repeat(3, 3fr); 

    font-size: 25px; 
    color: white;
    font-family: 'KoHo';
    text-align: center;
}

.servico-item{
    padding: 10px;
}

@media (max-width: 768px) {
    #s-servico{
        height: 110vh;
        overflow: hidden;     
    }

    .trabalhos-realizados{
        grid-template-columns: repeat(2, 6fr); 
        grid-template-rows: repeat(2, 6fr); 
        flex-direction: column;
        padding-left: 8px;
        text-align: left;
    }
}

#s-valor-preco{
    background: linear-gradient(to bottom, #2b2b2b, #2b2b2b);
    height: 10vh;
    background-color: #000; /* Fundo preto como no exemplo */
    color: rgb(255, 175, 25);
    padding: 50px;
    text-align: center;
    font-family: 'KoHo';
    font-size: 40px;
}

@media (max-width: 768px) {
    #s-valor-preco {
        height: 70vh;
    }
}

#s-producao{
    background: linear-gradient(to bottom, #2b2b2b, #2b2b2b);
    height: 70vh;
    background-color: #000; /* Fundo preto como no exemplo */
    color: #fff;
    padding: 50px;
    text-align: center;
    font-family: 'KoHo';
}

#s-producao{
    font-size: 1.5px; 
    color: white;
}

.titulo {
    font-size: 30px;
    margin-bottom: 20px;
}

.etapas {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.etapa {
    background-color: #141414;
    padding: 20px;
    border-radius: 5px;
}

.subtitulo {
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 10px;
}

.descricao {
    font-size: 20px;
}

.arrow {
    font-size: 100px;
    color: #00bcd4; /* Cor da seta azul */
}

.etapas .arrow:nth-child(3) {
    transform: rotate(90deg); /* Rotaciona seta para baixo */
}

.etapas .arrow:nth-child(5) {
    transform: rotate(180deg); /* Rotaciona seta para esquerda */
}

@media (max-width: 768px) {
    #s-producao {
        height: 130vh;
    }

    .etapas {
        grid-template-columns: 1fr; /* Mantém uma coluna no mobile */
        grid-template-rows: auto;
    }
    
    .etapas .arrow {
        transform: rotate(90deg); /* Setas rotacionadas para baixo */
        display: none;
    }

    /* Remove as setas verticais padrão, caso estejam configuradas */
    .etapas .arrow:nth-child(5) {
        display: block; /* Garante que todas as setas fiquem visíveis */
    }

    .etapa {
        padding: 15px;
        margin-bottom: 10px;
    }

    .titulo {
        font-size: 25px;
        margin-bottom: 15px;
    }

    .subtitulo {
        font-size: 25px;
        margin-bottom: 5px;
    }

    .descricao {
        font-size: 20px;
    }
}

#space-10{
    background: #2b2b2b; /* Cor sólida para suavizar a transição OLD: #3b3b3b*/  
    height: 30vh;
}

#s-ultimomomento{
    background: #202020;/*#2b2b2b;*/
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    font-family: KoHo;
    height: 25vh;
    max-width: 100%; /* Garante que o contêiner não ultrapasse 100% da largura disponível */
    overflow: hidden; /* Impede que o conteúdo dentro do contêiner ultrapasse os limites */
    font-size: 30px;
}

.texto-ultimo-momento {
    text-align: left;
    margin-right: 100px;
}

.texto-ultimo-momento-sub {
    text-align: left;
    font-size: 20px;
}

@media (max-width: 768px) {
    #s-ultimomomento {
        flex-direction: column;
        height: auto;
    }

    .inf-email2{
        text-align: left;
    }

    .texto-ultimo-momento, .button-instagram, .texto-ultimo-momento-sub {
        text-size-adjust: 100px;
        text-align: center;
        margin-right: 0px;
    }
}
