html { font-size: 62.5%; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}

:root {
    --font-large: 3.6rem;
    --font-sec: 2rem;
    --font-medium: 1.6rem;
    --font-small: 1.2rem;
}

a { text-decoration: none; color: white; }
li { list-style: none; }
button { cursor: pointer; }
h1 { font-size: var(--font-large); }
h2 { font-size: var(--font-sec); }
h3, p, label { font-size: var(--font-medium); }
h4, h5, span { font-size: var(--font-small); }

@media ( max-width: 760px ) {
    h1 { font-size: var(--font-sec) !important; }
    h2 { font-size: var(--font-medium) !important; }
    h3, p { font-size: var(--font-small) !important; }
    h4, h5, span { font-size: var(--font-small) !important; }
}

.fale-conosco { 
    width: 16rem;
    height: 4rem;

    border: none; 
    border-radius: 3.2rem; 
    background-color: #26684f;

    color: rgb(245, 245, 245);
    font-weight: bold; 

    transition: ease all 0.3s; 
}

.container-empresas .fale-conosco {
  background-color: rgb(245, 245, 245);
  a { color: #26684f; }
}

.container-empresas .fale-conosco:hover { background-color: rgb(240, 240, 240); color: #26684f; }

.fale-conosco:hover { background-color: #144231; color: rgb(245, 245, 245); }

header {
    display: flex;
    justify-content: space-evenly;
    align-items: center;

    position: fixed;
    z-index: 9999;

    width: 100%;
    height: 7.2rem;
    padding: 0 3.2rem;


    box-shadow: 0 0.4rem 0.8rem rgba(192, 192, 192, 0.100);
    background-color: #26684f;

    p { font-size: calc( var(--font-sec) * 1.5 ); font-weight: 850; }
}

header .logo {
    display: flex;
    align-items: center;

    img { width: 6rem; height: 4.8rem; }
}

header .menu {
    display: flex;
    align-items: center;
    gap: 1.6rem;

    a {
        color: rgb(245, 245, 245);
        font-size: calc( var(--font-small) + 0.2rem );
        font-weight: 400;

        transition: ease all 0.3s;
    }

    a:hover { color: rgb(200, 200, 200); }

    .contato {
        padding: 0.8rem 1.6rem;

        border-radius: 3.2rem;
        border: 0.1rem solid rgb(245, 245, 245);

        transition: ease-in-out all 0.5s;
    }

    .contato:hover {
        background-color: rgb(245, 245, 245);

        a { color: #26684f; }
    }
}

.menu-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-toggle {
    display: none;
    font-size: 2.4rem;
    background: none;
    color: rgb(245, 245, 245);
    border: none;
}

@media (max-width: 1100px) {
    header {
        padding: 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-mobile {
        width: 100%;
        min-height: 7.2rem;
        padding: 0 3.2rem;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .menu {
        display: none;
        flex-direction: column;

        width: 100%;
        opacity: 0;

        pointer-events: none;
        transition: opacity 0.3s ease-in-out;
        background-color: #26684f;
    }

    .menu.show {
        display: flex;
        padding: 3.2rem;

        opacity: 1;
        pointer-events: auto;
    }

    .menu > a {
        padding: 0.8rem 0;
        display: block;
    }
}

.sobre {
  padding: calc( 10.8rem + 8dvh ) 3.2rem 8dvh 3.2rem;

  width: 100%;

  display: flex;
  justify-content: space-evenly;
  align-items: center;

  .text, form { 
    display: flex;
    flex-direction: column;
    gap: 0.8rem;

    h2 { line-height: 2.4rem; }
  }

  .text { max-width: 48%; }
  
  form { gap: 1.6rem; }

  .forms-contato {
    width: 36%;
    min-width: 48rem;
    height: auto;

    display: flex;
    flex-direction: column; 
    gap: 1.6rem;

    padding: 3.2rem;

    border-radius: 1.6rem;
    box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.100);
    background-color: white;
  }

  input, textarea {
    border: none;
    border-radius: 1.6rem;
    box-shadow: 0 0.4rem rgba(0, 0, 0, 0.100);

    width: 100%;
    padding: 0.8rem 1.6rem;

    outline: none;
  }

  textarea { min-height: 12rem; }

  button {
    border: none;
    border-radius: 1.6rem;
    background-color: #26684f;
    color: white;

    padding: 0.8rem 1.6rem;
  }
}

.sobre > *, 
.vantagens > * {
    position: relative;
    z-index: 2;
}

.sobre, .vantagens { position: relative; }

.vantagens {
    padding: 0 3.2rem 8dvh 3.2rem;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3.2rem;
}

.vantagem {
    padding: 3.2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: calc( 25% - 2.4rem - 1.6rem );

    background-color: white;
}

.vantagem i {
    width: 40px;
    height: 40px;
    color: #26684f;
    margin-bottom: 15px;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;   
    z-index: 0;     
    pointer-events: none; 
}

@media ( max-width: 1100px ) {
  .vantagens .vantagem { width: 100%; }

  .sobre {
    flex-direction: column;
    gap: 3.2rem;

    .text { width: 36%; min-width: 48rem; text-align: center; }
  }
}

@media ( max-width: 760px ) {
  .sobre .text { min-width: 100%; }

  .sobre .forms-contato {
    width: 100%;
    min-width: 100%;
  }
}

.parceiros {
  background-color: #26684f; 
  color: white;
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.container-empresas {  
  width: 100%;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3.2rem;
}

.container-empresas .empresa {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;

  width: 30%;

  img { width: 100%; aspect-ratio: 1 / 1 }
}

@media ( max-width: 1000px ) {
  .container-empresas .empresa {
    width: 100%;
    align-items: center;
    text-align: center;

    img { width: 32rem }
  }
}

.parceiros-header {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}

.parceiros-header h2 {
  font-size: 32px;
  margin: 0;
}

.parceiros-header p {
  font-size: 16px;
  margin-top: 8px;
  color: #e2e2e2;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.card {
  border-radius: 1.6rem;
  height: 150px;
  flex: 1 1 calc(25% - 20px); 
  min-width: 200px;
  position: relative;
  overflow: hidden;

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cloud {
  position: absolute;
  top: 15px;
  left: 15px;
  background: white;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 13px;
  color: black;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  white-space: nowrap;
}

@media (max-width: 992px) { .card { flex: 1 1 calc(50% - 20px); } }

@media (max-width: 576px) { .card { flex: 1 1 100%; } }

.secao-servicos {
  background-color: #f9f9f9;
  padding: 8dvh 3.2rem;
  font-family: Arial, sans-serif;
}

.limite-servicos {
  max-width: 1200px;
  margin: 0 auto;
}

.titulo-servicos {
  font-size: 24px;
  letter-spacing: 4px;
  margin-bottom: 30px;
  border-bottom: 2px solid #26684f;
  display: inline-block;
}

.container-servicos {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  overflow: hidden;
}

.bloco-informativo {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bloco-informativo h3 {
  font-size: 18px;
  margin: 0;
}

.bloco-informativo p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.botao-orcamento {
  width: fit-content;
  padding: 10px 16px;
  background: none;
  border: 2px solid #26684f;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  
  a { color: #26684f; }
}

.botao-orcamento:hover {
  background-color: #26684f;

  a { color: white; }
}

.faixa-carrossel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.card-servico {
  flex: 0 0 250px;
  background: white;
  padding: 16px;
  border-radius: 4px;
  scroll-snap-align: start;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);

  img {
    width: 100%;
    aspect-ratio: 1 / 0.6;
  }
}

.card-servico h4 {
  margin: 0 0 10px;
  font-size: 16px;
}

.card-servico p {
  font-size: 13px;
  color: #444;
  margin-bottom: 10px;
}

.faixa-carrossel::-webkit-scrollbar { height: 6px; }

.faixa-carrossel::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

@media ( max-width: 760px ) {
  .bloco-informativo { flex: 0 0 0; }
  .container-servicos { flex-direction: column; overflow: auto; }
}

.secao-depoimentos {
  background-color: #26684f;
  color: white;
  padding: 8dvh 3.2rem;
}

.limite-depoimentos {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.limite-depoimentos::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc( 50% + 3.2rem );
  width: 0.08rem;
  background-color: #e0e0e0;
  transform: translateX(-0.5px); 
}

.lado-esquerdo, .lado-direito { width: 50%; }

.lado-esquerdo {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.lado-esquerdo blockquote {
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  padding-left: 10px;
  color: white;
}

.lado-esquerdo blockquote span {
  display: block;
  margin-top: 8px;
  color: #d6f5e2;
  font-weight: bold;
  font-size: 14px;
}

.lado-direito {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lado-direito h2 {
  font-size: var(--font-sec);
  font-weight: bold;
  margin: 0 0 15px;
  line-height: 1.2;
}

.lado-direito p {
  font-size: 15px;
  color: #f0f0f0;
  line-height: 1.2;
  text-align: right;
}

@media ( max-width: 1100px ) {
  .limite-depoimentos { flex-direction: column-reverse; gap: 3.2rem; max-width: 100%; }
  .limite-depoimentos:before { display: none; }
  .lado-esquerdo, .lado-direito { width: 100%; }
  .lado-direito p, .lado-direito h2 { text-align: center; font-size: var(--font-sec) !important; margin: 0; }
  .lado-direito p { font-size: var(--font-medium) !important; }
}

.faq-container {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 8dvh 3.2rem;

  background-color: rgb(240, 240, 240);

  .title {
    width: calc( 80% - 3.2rem );
    margin-bottom: 1.6rem;

    text-align: left;
    line-height: 1.6rem;
  }
}

.faq-item {
  width: 80%;
  border-bottom: 0.05rem solid rgb(200, 200, 200);

  button { font-weight: bold; }
}

.faq-question {
  background: none;
  border: none;

  width: 100%;

  text-align: left;
  padding: 1.6rem;
  font-size: var(--font-medium);

  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 10px;
  font-size: var(--font-medium);
  transition: transform 0.3s;
}

.faq-question.active::after { content: "−"; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.6rem;

  p { padding-bottom: 1.6rem; }
}

@media ( max-width: 1100px ) {
  .faq-item { width: 100%; }
  .faq-container .title { width: calc( 100% - 3.2rem ); }
}

.footer {
    background-color: #26684f;
    color: #fff;
    font-family: Arial, sans-serif;
}

.footer-container {
    padding: 1.6rem 3.2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img { height: 40px; }

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-menu a:hover { color: #ddd; }

.footer-social a img {
    height: 24px;
    width: 24px;
    filter: brightness(0) invert(1); 
    transition: transform 0.3s;
}

.footer-social a:hover img { transform: scale(1.1); }

.footer-copy {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    color: #e0e0e0;
}

@media ( max-width: 760px ) {
    .footer .footer-container, .footer .footer-container .footer-menu {
      flex-direction: column;
      gap: 3.2rem;
    }

    .footer .footer-container .footer-logo img {
      width: 8rem;
      height: 6rem;
    }

    .footer .footer-container .footer-menu { gap: 1.6rem; }
}