*{
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth
}
body{
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main{
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section.hero{
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('./src/fundo.jpg');
    background-size: cover; /* Ajusta o tamanho da imagem para cobrir todo o contêiner */
    background-position: center; /* Centraliza a imagem horizontal e verticalmente */
}
.hero .content{
    width: 90%;
    max-width: 1280px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.hero .imagem{
    width: 20vw;
    max-width: 200px;
    min-width: 80px;
}
.conteudo{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.hero .imagem img{
    width: 100%;
}
p.hero{
    color: white;
    text-align: center;
    font-family: "Raleway", Sans-serif;
    font-size: 30px;
    font-weight: 600;
}
@media screen and (max-width: 990px) {

    p.hero{
        font-size: 20px;
    }
}
@media screen and (max-width: 600px) {

    p.hero{
        font-size: 20px;
    }
}


.trabalhos-mais-pedidos{
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.trabalhos-mais-pedidos .content{
    
    padding: 100px 0;
    width: 90%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    
}
.trabalhos-mais-pedidos .content .conteudo{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
    gap: 60px;
}
.trabalhos-mais-pedidos .content .conteudo .coluna{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



/* Estilo base do acordeão */
.trabalhos-mais-pedidos .accordion{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    
}
.trabalhos-mais-pedidos .accordion-item {
    
    width: 100%;
}
.trabalhos-mais-pedidos .accordion-header {
    
    background-color: var(--primary-color);
    color: black;
    padding: 10px;
    width: 100%;
    cursor: pointer;
    border-radius: 10px;
    z-index: 1;
    position: relative;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    
}

.trabalhos-mais-pedidos .accordion-content {
    max-height: 0;
    transition: max-height 0.5s ease-in-out, padding 0.4s ease-in-out;
    width: 100%;
    /* display: none; */
    padding: 10px 10px 0 10px ;
    background-color: #fff;
    margin-top: -5px;
    z-index: -1;
    overflow: hidden;
}
/* Estilo para a seção expandida */
/* .trabalhos-mais-pedidos .accordion-item.active .accordion-content {
    display: block;
} */
.trabalhos-mais-pedidos .accordion-item:hover .accordion-content {
    max-height: 1000px; /* Ajuste conforme o conteúdo */

}
/* Estilo para a seta */
.trabalhos-mais-pedidos .arrow {
    
}

/* Estilo para a seta quando o conteúdo está aberto */
/* .trabalhos-mais-pedidos .accordion-item.active .arrow {
    transform: rotate(180deg); Rotação para cima
} 
*/
/* Estilo para a seta quando o conteúdo está aberto */
.trabalhos-mais-pedidos .accordion-item:hover .arrow {
    transform: rotate(180deg); /* Rotação para cima */
}

@media screen and (max-width: 762px) {
    .trabalhos-mais-pedidos .content .conteudo{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
        gap: 10px;
    }
}


.banner-frase{
    
    background-color: #010F36;
    padding: 70px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner-frase .content{
    max-width: 1280px;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sobre-nos{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
}
.sobre-nos .content{
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.sobre-nos .content .imagem{
    width: 60%;
    max-width: 505px;
}
.sobre-nos .content .imagem img{
    width: 100%;
    border-radius: 10px;
}
.sobre-nos .content .conteudo{
    height: 80%;
    width: 40%;
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-direction: column;
}
ul {
    width: 88%;
    color: #191C1F;
    font-family: "Raleway", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-align: start;
}
@media screen and (max-width: 970px) {
    .sobre-nos .content .imagem{
        display: none;
    }
    .sobre-nos .content .conteudo{
        width: 100%;
        align-items: center;
    }
}

.experiencia{
    background-color: #010F36;
    padding: 70px 0; 
    display: flex;
    justify-content: center;
    align-items: center;
}
.experiencia .content{
    max-width: 1280px;
    width: 90%;
    display: flex;
    flex-direction: row-reverse;
    gap: 30px;
    justify-content: center;
    align-items: center;
    
}
.experiencia .content .imagem{
    width: 50%;
}
.experiencia .content .imagem img{
    width: 100%;
    border-radius: 10px;
}
.experiencia .content .conteudo{
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-direction: column;
    gap: 50px;
}
.experiencia .content .conteudo .conteudo-btn{
    display: flex;
    width: 100%;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
@media screen and (max-width: 970px) {

    .experiencia .content .conteudo{
        width: 100%;
        gap: 20px;
    }
    .experiencia .content{
        align-items: center;
        flex-direction: column;
    }
    .experiencia .content .imagem{
        display: none;
    }
}



section.comentarios{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0px;
    padding: 100px 0;
}
section.comentarios .content{
    width: 90%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    
}
section.comentarios .content .topo{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    
}

section.comentarios .content .cards{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Define as colunas responsivas */
    gap: 30px; /* Espaçamento entre os cards */
    
}
section.comentarios .content .cards .card{
    background-color: #fff;
    padding: 10px 0px;
    border-radius: 5px;
    display: flex;
    gap: 10px;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    text-align: start;
    height: 400px;
}
section.comentarios .content .cards .card h2{
    text-align: start;
}
section.comentarios .content .cards .card img{
    margin-bottom: 5px;
    width: 35px;    
}

@media screen and (max-width: 650px) {

    section.comentarios .content .cards{
        gap: 15px;
       
    }
    section.comentarios{
        padding: 40px 0px;
    }
    section.comentarios .content .cards .card{
        gap: 5px;
        height: 460px;
    }
}

section.cta{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
    background-image: url('./src/fundo.jpg');
    background-size: cover; /* Ajusta o tamanho da imagem para cobrir todo o contêiner */
    background-position: center; /* Centraliza a imagem horizontal e verticalmente */
}
section.cta .content{
    width: 90%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    
}
section.cta .content .conteudo .imagem{
    width: 40%;
}
section.cta .content .conteudo .imagem img{
    width: 100%;
}
section.cta .content .conteudo{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    
}
section.cta .content .conteudo .form{
    padding: 25px 0px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    width: 50%;
}
section.cta .content .conteudo .form form{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
section.cta .content .conteudo form .input{
    background-color: #ececec;
    border: none;
    border-radius: 8px;
    height: 35px;
    width: 80%;
    padding: 5px 10px;
    outline: none;
}
@media screen and (max-width: 950px) {

    section.cta .content .conteudo{

        flex-direction: column;
        
    }
    section.cta .content .conteudo .form{
        width: 100%;
    }
    section.cta .content .conteudo .imagem{
        width: 100%;
    }
}

section.duvidas{
    background-color: #000;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.duvidas .content{
    max-width: 1280px;
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.duvidas .content .conteudo {
    max-width: 576px;
    width: 100%;
}
.duvidas .content .conteudo p{
    color: white;
}
/* Estilo base do acordeão */
.duvidas .content .conteudo .accordion{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px;
    gap: 10px;
}
.duvidas .content .conteudo .accordion-item {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    width: 100%;
    font-style: normal;
    font-size: 16px;
    color: white;
    background-color: #303030;
}
.duvidas .content .conteudo .accordion-header {
    padding: 10px;
    background-color: var(--primary-color);
    color: white;
    width: 95%;
    cursor: pointer;
    border-radius: 10px;
    z-index: 1;
    position: relative;
    font-family: "Raleway", Sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 24px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.duvidas .content .conteudo .accordion-content {
    width: 100%;
    display: none;
    padding-top: 15px;
    background-color: #000;
    z-index: -1;
}
/* Estilo para a seção expandida */
.duvidas .content .conteudo .accordion-item.active .accordion-content {
    display: block;
}
/* Estilo para a seta */
.duvidas .content .conteudo .arrow {
    color: #006BCD;
    padding: 0 10px;
}

/* Estilo para a seta quando o conteúdo está aberto */
.duvidas .content .conteudo .accordion-item.active .arrow {
    transform: rotate(180deg); /* Rotação para cima */
}

@media screen and (max-width: 900px) {
    .duvidas .content{
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}

.cases{
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.cases .content{
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 1280px;
    gap: 60px;
}
.cases .grid-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Duas colunas com largura mínima de 200px */
    grid-gap: 50px; /* Espaçamento entre as imagens */
    justify-content: center;
    align-items: center;
}

.cases .item {
    overflow: hidden; /* Para garantir que as imagens não vazem para fora dos contêineres */
}

.cases .item img {
    max-width: 100%; /* Ajusta a largura da imagem para preencher completamente a div */
    height: auto; /* Ajusta a altura da imagem para preencher completamente a div */
    object-fit: cover; /* Ajusta a imagem para preencher a div sem distorção */
}

@media screen and (max-width: 400px) {
    .cases .grid-container {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr)); /* Duas colunas com largura mínima de 200px */
        grid-gap: 50px; /* Espaçamento entre as imagens */
        justify-content: center;
        align-items: center;
    }
}

footer{
    width: 100%;
    background-color: #010F36;
    display: flex;
    flex-direction: column;
    /* height: 250px; */
    padding-top: 90px;
    align-items: center;
    gap: 24px;
}
footer .content{
    width: 100%;
    background-color: #010F36;
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #293e77;
    padding-bottom: 48px;
}

footer .imagem{
    width: 33%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
footer .conteudo{
    width: 33%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
footer .contato{
    width: 33%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

footer .contato img{
    padding: 5px;
    background-color: #ececec;
    border-radius: 10px;
    margin: 0 5px;
}


@media screen and (max-width: 800px) {
    footer .content{
        width: 100%;
        background-color: #010F36;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    footer{
        height: auto;
        padding: 25 0px;
        
    }
    footer .imagem{
        width: 90%;

    }
    footer .conteudo{
        width: 90%;

    }
    footer .contato{
        width: 90%;
    }
}


@keyframes slide {
  from {
    transform: translateX(65%);
  }
  to {
    transform: translateX(-65%);
  }
}

.logos {
  overflow: hidden;
  padding: 20px 0;
  background: white;
  white-space: nowrap;
  position: relative;
  pointer-events: none;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide img {
  height: 70px;
  margin: 0 40px;
}


@media screen and (max-width: 400px) {
    .logos-slide img {
        height: 50px;
        margin: 0 40px;
      }
}


.slider {
    position: relative;
    max-width: 600px;
    margin: auto;
}

.slides {
    display: flex;
}

.slide {
    flex: 0 0 auto;
    width: 100%;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: auto;
}

.dots-container {
    text-align: center;
    margin-top: 10px;
}

.dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: #6b6b6b;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 5px;
}

.dot.active {
    background-color: rgb(56, 56, 56);
}
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

#pop-up{
  z-index: 100;
  left: 0;
  top: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #00448050;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px); /* para compatibilidade */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 22px 0 8px;
}
#pop-up a{

  position: relative;
  
  overflow: hidden;
}
#pop-up a img{
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}
#pop-up button{
  background-color: unset;
  border: none;
  font-size: 40px;
  cursor: pointer;
  position: absolute;
  right: 32px;
  top: 18px;
  z-index: 200;
}
#pop-up button i{
  font-size: 40px;
  color: #fff;
}
#pop-up button i:hover{
  color: #dddddd;
}
#pop-up button.cta{
  color: #fff;
  font-size: 16px;
  bottom: 32px;
  right: 32px;
  top: unset;
  padding: 8px 16px;
  border: 1px #fff solid;
  border-radius: 12px;
}
#pop-up button.cta:hover{
  color: #000;
  background-color: #fff;
  transition: ease;
}
@media screen and (max-width: 700px) {
    #pop-up button.cta{
        display: none;
    }
}