html, body {
  overflow-x: hidden;
}

main{
    margin-top: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.background {
    position: relative; /* necessário para o iframe usar como referência */
    background-color: #FEE827;
    width: 84rem;
    height: 45rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 20px;
    overflow: visible; /* permite que o iframe "vaze" para fora */
}

main h1{
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    width: 70rem;
    text-align: center;
    letter-spacing: -3px;
    color: #1a1a1a;
    margin-bottom: 8px;
    margin-top: -1rem;
}

main span{
    color: white;
    background-color: #4C83F3;
    padding: 5px 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

main span:hover{
    transform: scale(1.05); /* aumenta em 5% */
}

main h2{
    font-family: "Maven Pro", sans-serif;
    font-size: 1.6rem;
    color: #2b2b2b;
    text-align: center;
    width: 59rem;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

main h3{
    margin-top: 0px;
    color: #5B5B5B;
    font-size: 1.5rem;
    margin-bottom: 12px;
    text-align: center;
}

main img{
    height: 5rem;
    filter: grayscale(100%) brightness(20%) contrast(90%);
    margin-bottom: 80px;
}

iframe {
    position: absolute;
    bottom: -43%;
    left: 50%;
    transform: translateX(-50%);
    width: 55rem;
    height: 27rem;
    z-index: 10;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2); /* opcional: efeito de profundidade */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

iframe:hover {
    transform: translateX(-50%) scale(1.01); /* Aproxima 5% para frente */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); /* Aumenta a sombra pra dar efeito de profundidade */
}

/* AQUI ESTA A SECTION CATEGORIAS */

.categIcones{
    height: 26rem;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: center;
    gap: 1rem;
}

.categorias{
    width: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0;
    padding: 0;
    margin-bottom: -3rem;
}

.categorias a img {
    height: 4.5rem;
    width: 4.5rem;
    border-radius: 50%; /* Usar 50% garante um círculo perfeito */
    object-fit: cover;  /* << ADICIONE ESTA LINHA */
    margin-bottom: 8px;
    transition: transform 0.3s ease, opacity 0.3s ease; /* Ajustei a transição */
}

.categorias a img:hover{
    transform: scale(1.05); /* aumenta em 5% */
    opacity: 90%;
}

.categorias a{
    text-align: center;
    color: #5b5b5b;
    font-size: 1rem;
    font-weight: 500;
}

.categorias a span {
    color: #1a1a1a; /* Cor padrão do texto */
    transition: color 0.3s ease;
}

.categorias a:hover span {
    color: #4C83F3; /* Azul quando passar o mouse na imagem/link */
}

/* AQUI ESTA A SECTION DEPOIMENTOS */

.depoimentos{
    height: 45rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.depoimentos h2{
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    font-size: 3rem;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.depoimentos .sub{
    color: #2a2a2a;
    font-size: 24px;
    font-weight: 400;
    width: 53rem  ;
    text-align: center;
    margin-bottom: 24px;
}

.boxs{
    display: flex;
    flex-direction: center;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.depbox{
    width: 20.5vw;
    min-height: 22rem;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    background-color: #f7f7f7;
}

.depuser{
    display: flex;
    flex-direction: center;
    align-items: center;
    margin-bottom: 0px;
    gap: 20px;
}

.depuser img{
    height: 60px;
    width: 60px;
    border-radius: 50px;
    object-fit: cover;
}

.depinfouser{
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    width: 100%;
}

.depinfouser h3{
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0px;
}

.depoimentos p{
    font-size: 16px;
    letter-spacing: 1px;
}

.depinfouser h4{
    margin-top: 4px;
    font-size: 16px;
    font-weight: 500;
    color: #5a5a5a;
}

.depbox {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.depbox:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* AQUI ESTA A SECTION NUMEROS */

.numeros{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50vh;
    margin-top: -1rem;
    margin-bottom: 5rem;
}

.numerosbackground{
    display: flex;
    background-color: #4C83F3;
    border-radius: 20px;
    width: 70vw;
    height: 45vh;
    flex-direction: column;
    color: white;
    align-items: center;
    justify-content: center;
}

.numeros h2{
    font-size: 48px;
    font-family: 'Montserrat', sans-serif;
    width: 55vw;
    margin-bottom: -8px;
    margin-top: 0px;
    font-weight: 400;
    letter-spacing: -2px;
}

.numeroscont{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 55vw;
}

.numerosbox{
    transition: transform 0.3s ease, color 0.3s ease;
}

.numerosbox:hover{
    transform: scale(1.05); /* aumenta em 5% */
}

.numerosbox h3{
    font-size: 60px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0px
}

.numerosbox p{
    font-size: 18px;
    margin-bottom: 0px;
    letter-spacing: 1px;
}

/* AQUI ESTA A SECTION NUMEROS */

.solucoes{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40vh;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.solucoescont{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: center;
    width: 70vw;
}

.solucoescontbox{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: center;
    gap: 1rem;
}

.soculoestext{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 40vh;
    margin-right: 1rem;
}

.soculoestext h2{
    font-size: 48px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin-top: 0;
    letter-spacing: -2px;
}

.soculoestext a{
    font-size: 20px;
    border-bottom: 2px solid #1a1a1a;
    padding: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    text-align: center;
    gap: 8px;
    transition: opacity 0.3s ease;
    width: 54%;
}

.soculoestext a:hover {
    opacity: 0.95;
}

.soculoestext a i {
    transition: transform 0.3s ease;
}

.soculoestext a:hover i {
    transform: translateX(5px);
}

.solucoesbox{
    width: 14.8vw;
    height: 40vh;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.solucoesbox h3{
    font-size: 28px;
    margin-top: 12px;
}

.solucoesbox p{
    width: 15vw;
    letter-spacing: 1px;
    font-size: 18px;
}

.solucoescontbox img{
    height: 80px;
    width: 80px;

}

#box1{
    border-radius: 10px;
    border: 1px solid #1a1a1a;
}

#box2{
    background-color: #4C83F3;
    border-radius: 10px;
    color: white;
}

#box3{
    background-color: #1a1a1a;
    border-radius: 10px;
    color: white;
}

/* AQUI ESTA A SECTION DESENVOLVER */

.desenvolver{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 70vh;
    margin-top: 4rem;
}

.desenvolvercont{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70vw;
    height: 65vh;
    background-color: #FEE827;
    border-radius: 20px;
}

.desenvolvercont h2{
    font-size: 48px;
    font-family: 'Montserrat', sans-serif;
    width: 40vw;
    text-align: center;
    font-weight: 400;
    margin-top: 0;
    letter-spacing: -2px;
    margin-top: 3rem;
    color: #1a1a1a;
    margin-bottom: 52px;
}

.devboxcont {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 60vw;
    gap: 2rem;
}

.devbox{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    width: 11vw;
}

.devbox.visible {
    opacity: 1;
    transform: translateX(0);
}

.devbox .devnum{
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    height: 50px;
    width: 50px;
    border-radius: 10px;
    font-weight: 500;
    color: #1a1a1a;
}

.devbox h3{
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.devbox p{
    font-size: 16px;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* AQUI ESTA A SECTION PRODUTOS */

.produtos {
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
}

.produtoscont {
    display: flex;
    flex-direction: column;
    width: 70vw;
}

.produtosgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
    margin-top: 2rem;
}

.produtos h2{
    font-size: 48px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -2px;
    font-weight: 400;
    margin-bottom: 0px;
    width: 40vw;
}

.produtosgrid a img {
    width: 400px;
    height: 300px;
    margin-bottom: 1rem;
    border-radius: 10px;
    object-fit: cover;  
}

.produtosgrid a {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    height: 200px;
}

.produtosgrid a img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: opacity 0.4s ease;
}

.produtosgrid a h3 {
    position: absolute;
    top: 10px;
    left: 10px;
    margin: 0;
    padding: 5px 10px;
    color: white;
    z-index: 2;
    background: none;
    font-size: 24px;
}

.produtosgrid a p {
    position: absolute;
    bottom: 10px;
    left: 10px;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: left;
    z-index: 3;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 16px;
    letter-spacing: 1px;
}

.produtosgrid a::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #1a1a1a;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.produtosgrid a:hover img {
    opacity: 0;
}

.produtosgrid a:hover::after {
    opacity: 1;
}

.produtosgrid a:hover p {
    opacity: 1;
}

.produtosgrid a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
    z-index: 1;
    pointer-events: none;
}

.produtodestaque {
    grid-column: span 2;
    background-color: #4C83F3;
    color: white;
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 200px;
}

.produtodestaque h3 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 0px;
    font-family: 'Montserrat', sans-serif;
}

.botaoProdutos i {
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.botaoProdutos:hover i {
    transform: translateX(5px);
}

.produtodestaque a{
    background-color: #1a1a1a !important;
    padding: 20px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 600 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.produtodestaque a:hover{
    opacity: 95%;
}

.botaoProdutos::before,
.botaoProdutos::after {
    content: none !important;
    display: none !important;
}

/* AQUI ESTA A SECTION DESENVOLVER */

.acao{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 65vh;
    margin-top: 4rem;
}

.acaocont{
    display: flex;
    flex-direction: center;
    justify-content: space-between;
    align-items: center;
    width: 70vw;
    height: 46vh;
    background-color: #4C83F3;
    border-radius: 20px;
    color: white;
}

.acaotext{
    margin-left: 6rem;
    width: 600px;
}

.acaotext h2 {
    margin-bottom: 4rem;
    font-size: 48px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin-bottom: 0px;
    letter-spacing: -2px;
}

.acaotext p {
    margin-bottom: 4rem;
    font-size: 24px;
    font-weight: 400;
    width: 500px;
    margin-bottom: 24px;
}

.acao img{
    border-radius: 20px;
    height: 500px;
    width: 500px;
    margin-right: 6rem;
    margin-top: -1rem;
    object-fit: cover;
}

/* AQUI ESTA A SECTION FAQS */

.faqs {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 2rem;
}

.faqscont {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1300px; /* Um max-width é bom para legibilidade */
}

.faqs h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 48px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: -2px;
}

.faq-item {
    border-bottom: 1px solid #ccc;
    margin-bottom: 1rem;
}

.faq-question {
    /* --- MUDANÇAS APLICADAS AQUI --- */
    display: flex; /* 1. Torna o botão um container flex */
    justify-content: space-between; /* 2. Empurra o texto para a esquerda e o ícone para a direita */
    align-items: center; /* 3. Alinha verticalmente o texto e o ícone */
    width: 100%;
    text-align: left;
    padding: 1rem;
    font-size: 20px; /* Ajustado para melhor visualização */
    font-weight: bold;
    font-family: 'Montserrat', sans-serif; /* Garante a consistência da fonte */
    cursor: pointer;
    background-color: #ffffff;
    border: none;
    outline: none;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #4C83F3;
}

/* --- ANIMAÇÃO DO ÍCONE --- */
.faq-question .icon-container {
    transition: transform 0.4s ease; /* 4. Adiciona a transição suave para a rotação */
}

.faq-item.active .faq-question .icon-container {
    transform: rotate(180deg); /* 5. Gira o ícone quando a classe .active é adicionada */
}


.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease-out;
    padding: 0 1rem;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-answer p {
    margin: 0 0 1rem 0; /* Ajustado para melhor espaçamento */
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Um valor alto para permitir que o conteúdo apareça */
    padding: 1rem 1rem;
}

@media (max-width: 1024px) {

  /* MAIN */
  main h1 {
    font-size: 40px;
    width: 90%;
    letter-spacing: -1px;
  }

  main h2 {
    font-size: 18px;
    width: 90%;
    letter-spacing: 1px;
  }

  main h3 {
    font-size: 20px;
    width: 90%;
  }

  main img {
    width: 90%;
    height: auto;
    margin-bottom: 0px;
  }

  .background {
    width: 90vw;
    height: auto;
    padding: 2rem 1rem;
  }

iframe {
        position: relative;
        width: 80vw;
        height: 35vh;
        bottom: auto;
        transform: none;
        margin-top: 2rem;
        left: auto; /* << CORREÇÃO APLICADA AQUI */
        /* A linha 'bottom: 0%' não é necessária aqui */
    }

    iframe:hover {
        transform: none; /* Remove qualquer transformação ao passar o mouse */
        box-shadow: none; /* Opcional: remove a sombra também */
    }

  .devbox h3{
    font-size: 1rem;
  }

  /* CATEGORIAS */
  .categIcones {
    flex-wrap: wrap;
    height: auto;
    gap: 2rem;
    padding: 2rem 0;
    align-items: center;
    width: 100vw;
  }

  .categorias {
    width: 80px;
    margin-bottom: 1rem;
  }

  .categorias a img {
    width: 70px;
    height: 70px;
  }

  .categorias a {
    font-size: 16px;
  }

  /* DEPOIMENTOS */
  .depoimentos {
    height: auto;
    padding: 2rem 0;
  }

  .depoimentos h2 {
    font-size: 32px;
    text-align: center;
    width: 90%;
  }

  .depoimentos .sub {
    font-size: 18px;
    width: 90%;
  }

  .boxs {
    flex-direction: column;
  }

  .depbox {
    width: 90%;
  }

  /* NUMEROS */
  .numeros {
    height: auto;
    margin-bottom: 2rem;
  }

  .numerosbackground {
    width: 90vw;
    height: auto;
    padding: 2rem 1rem;
  }

  .numeros h2 {
    font-size: 32px;
    width: 90%;
  }

  .numeroscont {
    flex-direction: column;
    gap: 1rem;
    width: 90%;
    align-items: flex-start;
  }

  .numerosbox h3 {
    font-size: 40px;
  }

  .numerosbox p {
    font-size: 16px;
    text-align: center;
  }

  /* SOLUCOES */
  .solucoes {
    height: auto;
  }

  .solucoescont {
    flex-direction: column;
    width: 90vw;
  }

  .soculoestext {
    height: auto;
    margin: 0 0 2rem 0;
    align-items: center;
  }

  .soculoestext h2 {
    font-size: 32px;
    text-align: center;
    margin-top: 0px;
  }

  .soculoestext a {
    width: auto;
    font-size: 18px;
    justify-content: center;
    width: 50%;
  }

  .solucoescontbox {
    flex-direction: column;
    width: 100%;
  }

  .solucoesbox {
    width: 90%;
    height: auto;
    position: relative;
    text-align: center;
    align-items: center;
    padding: 3rem;
  }

  .solucoesbox p {
    position: relative;
    margin: 1rem 0 0 0;
    width: 100%;
  }

  .solucoescontbox img {
    position: relative;
    margin: 1rem 0 0 0;
  }

  /* DESENVOLVER */
  .desenvolver {
    height: auto;
  }

  .desenvolvercont {
    width: 90vw;
    height: auto;
    padding: 2rem 1rem;
  }

  .desenvolvercont h2 {
    font-size: 32px;
    width: 90%;
    margin-bottom: 2rem;
  }

  .devboxcont {
    flex-direction: column;
    gap: 2rem;
    width: 90%;
    align-items: center;

  }

  .devbox {
    width: 90%;
  }

  /* PRODUTOS */
  .produtoscont {
    width: 90vw;
  }

  .produtos h2 {
    font-size: 32px;
    width: 90%;
  }

  .produtosgrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .produtodestaque {
    grid-column: span 2;
  }

  .produtodestaque {
    height: auto;
}

.botaoProdutos i {
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.botaoProdutos:hover i {
    transform: translateX(5px);
}

.produtodestaque a{
    height: 15%;
}

.produtodestaque a:hover{
    opacity: 95%;
}

/* ACAO */
  .acao {
    height: auto;
    padding: 2rem 0;
  }

  .acaocont {
    flex-direction: column;
    width: 90vw;
    height: auto;
    padding: 2rem 1rem;
  }

  .acaotext {
    margin: 0 0 2rem 0;
    width: 100%;
    text-align: center;
  }

  .acaotext h2 {
    font-size: 32px;
  }

  .acaotext p {
    font-size: 18px;
    width: 100%;
  }

  .acao img {
    width: 90%;
    height: auto;
    margin: 0;
  }

  /* FAQS */
  .faqscont {
    width: 90vw;
  }

  .faqs h2 {
    font-size: 32px;
  }

  .faq-question {
    font-size: 18px;
  }
}

@media (min-width: 1025px) and (max-width: 1700px) {

  /* MAIN */

    .devbox h3{
    font-size: 1.2rem;
  }

  main h1 {
    font-size: 56px; /* menor que 72px padrão, maior que 44px mobile */
    width: 80vw;     /* um pouco maior que 60vw para aproveitar mais espaço */
    letter-spacing: -2px;
  }

  main h2 {
    font-size: 20px;
    width: 70vw;
  }

  main h3 {
    font-size: 22px;
    width: 70vw;
  }

  main img {
    height: 60px;
    margin-bottom: 40px;
  }

  .background {
    width: 80vw;  /* entre 70vw e 90vw */
    height: 70vh; /* um pouco menor que 80vh */
    padding: 2rem 2rem;
  }

  iframe {
    position: absolute;
    bottom: -48%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;   /* maior que 50vw para aproveitar tela */
    height: 45vh;  /* maior que 35vh e menor que 50vh */
    z-index: 10;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }

  /* CATEGORIAS */
  .categIcones {
    height: 50vh; /* um pouco maior que 46vh */
    gap: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 3rem;
  }

  .categorias {
    width: 100px;
    margin-bottom: -2rem;
  }

  .categorias a img {
    height: 80px;
    width: 80px;
  }

  .categorias a {
    font-size: 18px;
  }

  /* DEPOIMENTOS */
  .depoimentos {
    height: 65vh; /* entre desktop e mobile */
    margin-bottom: 2rem;
  }

  .depoimentos h2 {
    font-size: 40px;
  }

  .depoimentos .sub {
    font-size: 20px;
    width: 70vw;
  }

  .boxs {
    gap: 1.5rem;
  }

  .depbox {
    width: 25vw; /* um pouco maior que 20.5vw */
  }

  /* NUMEROS */
  .numeros {
    height: 45vh;
    margin-bottom: 4rem;
  }

  .numerosbackground {
    width: 80vw;
    height: 40vh;
  }

  .numeros h2 {
    font-size: 40px;
    width: 80vw;
    margin-left: 6rem;
  }

  .numeroscont {
    width: 80vw;
    gap: 2rem;
    padding: 0rem 3rem;
  }

  .numerosbox h3 {
    font-size: 50px;
  }

  .numerosbox p {
    font-size: 17px;
  }

  /* SOLUCOES */
  .solucoes {
    height: 38vh;
  }

  .solucoescont {
    width: 80vw;
  }

  .soculoestext {
    height: 38vh;
  }

  .soculoestext h2 {
    font-size: 40px;
  }

  .soculoestext a {
    width: 60%;
    font-size: 19px;
  }

  .solucoescontbox {
    gap: 1.2rem;
  }

  .solucoesbox {
    width: 16vw;
    padding: 12px;
    height: auto;
    min-height: 350px;
    max-height: 370px;
  }

  .solucoesbox h3 {
    font-size: 26px;
  }

  .solucoesbox p {
    width: 14vw;
  }

  .solucoescontbox img {
    height: 75px;
    width: 75px;
  }

  /* DESENVOLVER */
  .desenvolver {
    height: 70vh;
  }

  .desenvolvercont {
    width: 80vw;
    height: 68vh;
  }

  .desenvolvercont h2 {
    font-size: 40px;
    width: 60vw;
    margin-bottom: 3rem;
  }

  .devboxcont {
    width: 65vw;
    gap: 1.8rem;
  }

  .devbox {
    width: 13vw;
  }

  /* PRODUTOS */
  .produtoscont {
    width: 80vw;
  }

  .produtos h2 {
    font-size: 40px;
    width: 60vw;
  }

  .produtosgrid {
    grid-template-columns: repeat(3, 1fr);
  }

  .produtodestaque {
    grid-column: span 3;
    height: 180px;
  }

  /* ACAO */
  .acao {
    height: 55vh;
  }

  .acaocont {
    width: 80vw;
    height: 40vh;
  }

  .acaotext {
    margin-left: 4rem;
    width: 550px;
  }

  .acaotext h2 {
    font-size: 40px;
  }

  .acaotext p {
    font-size: 22px;
    width: 450px;
  }

  .acao img {
    height: 450px;
    width: 450px;
    margin-right: 4rem;
  }

  /* FAQS */
  .faqscont {
    width: 80vw;
  }

  .faqs h2 {
    font-size: 40px;
  }

  .faq-question {
    font-size: 20px;
  }

}