* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

  html {
      scroll-behavior: smooth; /* ativa o movimento suave */
    }

body {
  font-family: sans-serif;
  overflow-x: hidden;
  cursor: url("_img/luacursormouse-reduced.png") 0 0, auto; /* muda o cursor */
  background-color: #000000;
}


.logo {
  width: 70%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  width: 400px;
  height: auto;
  display: flex;
  justify-content: flex-start;
  margin-right: 600px;
  overflow: hidden; /* impede a imagem de “vazar” */
  transition: 0.4s ease-in-out;
}

.logo-2 {
  width: 50%;
}

/* Container principal */
.carousel {
  position: relative;
  width: 100%;
  height: 700px; /* ocupa 60% da altura da tela */
  overflow: hidden;
}

/* Track com slides */
.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  background-size: cover;      /* cobre toda a área */
  background-position: center; /* centraliza a imagem */
  background-repeat: no-repeat;
}

#slider1 {
    background-image: url(_img/bannerx1.png); 
    background-position: 50% 5%;
    background-repeat: no-repeat;
    transition: background-position 0.4s ease-in-out;
  }

#slider2 {
    background-image: url(_img/bannerx2.png); 
    background-position: 50% 5%;
    background-repeat: no-repeat;
    transition: background-position 0.4s ease-in-out;
  }

#slider3 {
    background-image: url(_img/bannerx3.png); 
    background-position: 50% 5%;
    background-repeat: no-repeat;
    transition: background-position 0.4s ease-in-out;
  }

#slider4 {
    background-image: url(_img/bannerx4.png);
    background-position: 50% 5%;
    background-repeat: no-repeat;
    transition: background-position 0.4s ease-in-out;
  }

/* Coloque suas imagens reais aqui 
.slide1 { background-image: url("img/slide1.jpg"); }
.slide2 { background-image: url("img/slide2.jpg"); }
.slide3 { background-image: url("img/slide3.jpg"); }*/


/* Botões */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  cursor: pointer;
  padding: 12px;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.carousel-btn svg {
  width: 28px;
  height: 28px;
}

.prev { left: 15px; }
.next { right: 15px; }

/* Indicadores */
.carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: white;
}

/* APRESENTAÇÃO */

.prazer {
  text-align: center;
  width: 100%;
  padding: 15px;
  background-color: #f2e963;
  color: black;
  font-family: "scale-variable", sans-serif;
  font-weight: 600;
}


.promessa {
  background-color: #000000;
  display: block;
  text-align: center;
  padding: 70px;
  width: 80%;
  margin: 0 auto;
}

#texto-promessa {
  color: #ffffff;
  font-size: 1.8em;
  line-height: 1.5;
  font-family: "massilia", sans-serif;
  font-weight: 100;
  font-style: normal;
}

#texto-promessa-bold {
  font-weight: 800;
}

.gifzera {
  width: 100%;
  display: block;
  margin: 0 auto;
}


.texto-animado {
      font-size: 2rem;
      font-weight: bold;
      white-space: nowrap;
      position: relative;
      animation: moverTexto 10s linear infinite;
      color: rgb(243, 243, 95);
      margin: 20px auto;
      overflow: hidden; /* impede a imagem de “vazar” */
    }

    @keyframes moverTexto {
      0% {
        transform: translateX(-100%); /* fora da tela à esquerda */
        opacity: 0;
      }
      10% {
        opacity: 1;
      }
      90% {
        opacity: 1;
      }
      100% {
        transform: translateX(100%); /* sai pela direita */
        opacity: 0;
      }
    }

    .gif-color-arrow {
     color: #f244b5;
     font-weight: bold;

    }

/* Imagem lua */

.justificativa {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content:center;
  flex-wrap: wrap;
  align-items: center;
  color: #ffffff;
  padding-bottom: 100px;
  padding-top: 50px;
}

.just-1 {
  flex: 0 0 26%;
  display: block;
  margin: 0 auto;
  margin-top: 30px;
}

.just-1 img {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.just-2 {
  flex: 0 0 60%;
  padding: 50px;
}

.just-texto {
  font-size: 1.2em;
  font-family: "massilia", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.orcamento-btn {
  border-radius: 50px;
  padding: 10px 10px 15px 10px;
  font-size: 1.2em;
  background-color: rgb(243, 243, 95);
  cursor: pointer;
  width: 80%;
  margin-top: 30px;
  border: none;
  outline: none;
  font-family: "massilia", sans-serif;
  font-weight: 800;
  font-style: normal;

}

.chamada-email {
  text-align: center;
  margin-top: 50px;
}

.h2-email {
  width: 100%;
    color: #ffffff;
  font-weight: bold;
  margin: 20px 10px 5px 10px;
  font-size: clamp(22px, 1.8vw, 32px);
  font-family: "massilia", sans-serif;
font-weight: 800;
font-style: normal;
}

.envio-msg {
  border-radius: 50px;
  padding: 10px 10px 15px 10px;
  font-size: 1.2em;
  background-color: rgb(243, 243, 95);
  cursor: pointer;
  width: 80%;
  margin-top: 30px;
  border: none;
  outline: none;
  font-family: "massilia", sans-serif;
  font-weight: 800;
  font-style: normal;
  text-decoration: none;
}

.envio-msg a {
  text-decoration: none;
  color: #000000;
  font-size: 1em;
}

.orcamento-btn a {
    text-decoration: none;
    color: #000;
}


/* SERVIÇOS */

.servicos {
  background-color: rgb(95, 97, 243);
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content:center;
  flex-wrap: wrap;
  align-items: center;
  color: #ffffff;
}

.serv-blocos {
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content:center;
  flex-wrap: wrap;
  align-items: center;
}

.bloco-serv {
  width: 20%;
  border: 2px solid #f244b5;
  border-radius: 50px;
  padding: 10px;
  margin: 50px 5px 50px 5px;
  height: 320px;
  display: flex;
  flex-direction: column; /* empilha conteúdo */
  justify-content: space-between; /* joga conteúdo para cima e ações para baixo */
}

h1 {
   font-family: "massilia", sans-serif;
font-weight: 800;
font-style: normal;
margin-bottom: 20px;
}

h2 {
  color: #ffffff;
  font-weight: bold;
  margin: 20px 10px 5px 10px;
  font-size: clamp(22px, 1.8vw, 32px);
  height: 130px;
  font-family: "massilia", sans-serif;
font-weight: 800;
font-style: normal;
}

.serv-1 {
  color: #ffffff;
  font-size: clamp(18px, 1.1vw, 22px);
  margin: 5px 10px;
  margin-top: auto;
  height: 150px;
  font-family: "massilia", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.serv-botao {
  color: #ffffff;
  border-radius: 50px;
  padding: 10px 10px 15px 10px;
  font-size: 1.2em;
  background-color: #f244b5;
  cursor: pointer;
  width: 100%;
  margin-bottom: 20px;
  text-decoration: none;
  border: none;
  outline: none;
  margin-top: auto;
  font-family: "massilia", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.link-serv-btn {
text-decoration: none;
color: #fff;
}


/* COMO FUNCIONA */

.funcionamento {
  background-color: #fff;
}

.funcionamento-holder {
  width: 80%;
  margin: 0 auto;
  display: block;
  padding: 2.5%;
}

 .func-drop {
      width: 100%;
      margin: 10px auto 10px auto;
      font-family: Arial, sans-serif;
      border: 2px solid #5f61f3;
      border-radius: 30px;
    }

    /* BOTOES */

    .func-bold {
      font-weight: 800;
  }

    /* Checkbox escondido */
    .toggle {
      display: none;
    }

    /* Botão/Frase que dispara */
    .label {
      display: flex;
      justify-content: space-between;
      color: white;
      padding: 15px;
      /*cursor: pointer;*/
      border-radius: 8px;
      text-align: center;
      user-select: none;
      transition: background 0.5s ease;
    }

    .label:hover {
     
    }

.func-call-01 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  padding: 0px 0px 3px 0px;
}

.func-numero {
  color: #f244b5;
  padding: 5px 0px 0px 0px;
  font-size: 1.2em;
  font-family: "scale-variable", sans-serif;
  font-weight: 500;
}

.func-texto {
  color: #000000;
  font-size: 1.3em;
  margin-left: 15px;
  font-family: "massilia", sans-serif;
  font-weight: 400;
  font-style: normal;
}
    
    /* Conteúdo oculto */
    .content {
      max-height: 0;
      overflow: hidden;
      background: #ecf0f1;
      border-radius: 0 0 30px 30px;
      transition: max-height 1.5s ease;
      padding: 0 15px;
    }

    .content p {
      padding: 15px 0;
    }

    /* Quando ativo */
    .toggle:checked + .label + .content {
      max-height: 600px; /* altura suficiente para caber o texto */      
    }

    /* Mostra o "X" quando aberto 
    .label::after {
      content: " ▼";
      float: right;
      transition: transform 0.3s ease;
      color: #000000;
    }

    .toggle:checked + .label::after {
      content: " ✖";
      max-height: 0px;
    }
*/

    
      /* Quando ativo */
    .toggle2:checked + .label + .content {
      max-height: 600px; /* altura suficiente para caber o texto */      
    }

    /* Mostra o "X" quando aberto 
    .label::after {
      content: " ▼";
      float: right;
      transition: transform 0.3s ease;
      color: #000000;
    }

    .toggle2:checked + .label::after {
      content: " ✖";
    }
*/
      /* Quando ativo */
    .toggle3:checked + .label + .content {
      max-height: 600px; /* altura suficiente para caber o texto */      
    }

    /* Mostra o "X" quando aberto 
    .label::after {
      content: " ▼";
      float: right;
      transition: transform 0.3s ease;
      color: #000000;
    }

    .toggle3:checked + .label::after {
      content: " ✖";
    }
*/
       /* Quando ativo */
    .toggle4:checked + .label + .content {
      max-height: 600px; /* altura suficiente para caber o texto */      
    }

    /* Mostra o "X" quando aberto 
    .label::after {
      content: " ▼";
      float: right;
      transition: transform 0.3s ease;
      color: #000000;
    }

    .toggle4:checked + .label::after {
      content: " ✖";
    }
*/

.combinado {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 colunas: imagem e textos */
    width: 100%;
    height: auto ; /* ou defina a altura que quiser */
    margin: 0 auto;
    background-color: #fff
}

 .blocodaEsq  {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    vertical-align: center;
    padding: 0;
    margin: 0;
    background-image: url(_img/notebook-3.png);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 100% !important;
    transition: background-position 0.4s ease-in-out;
  }

.blocodaEsq img {

   

}
/*
.Esq-img {  
 object-fit: cover;      /* cobre toda a área, sem distorcer 
  object-position: 50% 50%; /* foco inicial no centro
  transition: object-position 0.5s ease; /* anima suavemente o movimento 
  float: right;
}*/

  .blocodaDir  {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    vertical-align: center;
    min-width: 100%;
    padding: 0;
    margin: 0;
    height: 400px;
  }

  .text-block {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size: 1.3rem;
    
  }

.fee {
  background-color:#f2e963; 
  height: 50%;
  border-bottom: 6px solid #ffffff;
}

.producoes-pontuais {
  background-color: #5f61f3;
   height: 50%;
}

.bloco-call {
    display: block;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: auto;
    width: 60%;
    font-family: "massilia", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.blocoDir-bold {
  font-weight: 800;
  color: #000000;
}

.text-block .top-block {

}
/*
.linha {
  border: 1px solid #fff;
}*/








.formulario {
  background-color: #000000;
  height: 600px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}

.form-text {
  padding: 40px;
  width: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.form-cap {
  width: 50%;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.form-text h1 {
  color: #f244b5;
  font-weight: bold;
  font-size: 2.5em;
  margin-left: -85px;
  font-family: "massilia", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.form-text p {
  color: #ffffff;
  font-size: 1.5em;
  line-height: 1.2;    /* ajusta a altura das linhas */
  font-family: "massilia", sans-serif;
  font-weight: 200;
  font-style: normal;
}

form {
  width: 80%;
  padding: 20px;
}

#nome {
  width: 60%;
}

#celular {
  width: 60%;
}

#email {
  width: 100%;
}

#mensagem {
  width: 100%;
}

/* Campos do formulário */
.formulario input,
.formulario textarea {
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 15px;
  border: none;
  font-size: 14px;
  box-sizing: border-box;
  font-family: "massilia", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Textarea maior */
.formulario textarea {
  resize: vertical;
  min-height: 100px;
}

/* Botão de envio */
.formulario button {
  background-color: #f244b5; /* rosa vibrante */
  width: 50%;
  color: #fff;
  padding: 10px 10px 15px 10px;
  border: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-family: "massilia", sans-serif;
  font-weight: 800;
  font-style: normal;
  cursor: pointer;
  float: right; /* botão alinhado à direita */
  transition: background-color 0.3s;
}

/* Hover no botão */
.formulario button:hover {
  background-color: #e60099;
}

/* Para limpar o float do botão */
.formulario::after {
  content: "";
  display: table;
  clear: both;
}


#mensagem-retorno {
  opacity: 0;
  margin-top: 15px;
  font-weight: bold;
  text-align: center;
  transition: opacity 0.5s ease;
}
#mensagem-retorno.mostrar {
  opacity: 1;
}


footer {
  
}


footer {
  background-color:  rgb(243, 243, 95); 
  padding: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.social-icons {
  display: flex;
  gap: 15px; /* Espaçamento entre os ícones */
}

.icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.icon i {
  font-size: 20px;
  color: #fff; /* Ícone branco */
}

.icon:hover {
  background-color: #555;
  transform: scale(1.1);
}

/* Cores específicas por rede (opcional) */
.icon.instagram:hover {
  background: linear-gradient(45deg, #feda75, #d62976, #962fbf, #4f5bd5);
}

.icon.tiktok:hover {
  background: #000;
  color: #00f2ea;
}

.icon.linkedin:hover {
  background: #0077b5;
}

@media (max-width: 1080px) {
.bloco-serv {
  width: 33%;
}

  .combinado {
    display: block;
    
}

 .blocodaEsq  {
    width: 100%;
    min-height: 500px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    vertical-align: center;
    padding: 0;
    margin: 0;
    background-image: url(_img/notebook-3.png);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 100% !important;
    transition: background-position 0.4s ease-in-out;
  }

.promessa {
  padding: 50px;
  width: 100%;
  margin: 0 auto;
}

    .logo {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.logo img {
  width: 300px !important;
  height: auto;
  display: flex;
  justify-content: flex-start;
  margin-right: 300px !important;
  overflow: hidden; /* impede a imagem de “vazar” */

}



}

@media (max-width: 768px) {
 .just-1, .just-2 {
    flex: 0 0 100%;
  }

  .bloco-serv {
  width: 65%;
   margin: 10px;
  }

  #start-block {
    margin-top: 50px;
  }

  #end-block {
    margin-bottom: 50px;
  }

.bloco-header {
  height: 400px;
}

.blocodaEsq  {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    vertical-align: center;
    /* min-width: 100%; */
    padding: 0;
    margin: 0;
    background-image: url(_img/notebook-3.png);
    background-repeat: no-repeat;
    background-size: 100% !important;
  }


  /*
  .bloco-header {
    width: 100%;
    height: 400px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    vertical-align: center;
    padding: 0;
    margin: 0;
    background-position: 100% 40%;
    background-repeat: no-repeat;
    background-size: 100% !important;
    transition: background-position 0.4s ease-in-out;

}*/

.formulario {
    height: unset;
    flex-direction: column;
}

.form-text {
  width: 100%;
}

.form-cap {
  width: 100%;
}


  .logo {
  width: 80%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.logo img {
  width: 300px !important;
  height: auto;
  display: flex;
  justify-content: flex-start;
  margin-right: unset !important;
  overflow: hidden; /* impede a imagem de “vazar” */
  margin-top: 100px;
}


}

@media (max-width: 1235px) {
  .blocodaEsq  {
    background-size: auto 100%;
  }


}

@media (max-width: 1335px) {
  .blocodaEsq  {
    background-size: auto 100%;
  }

  .logo {
  width: 70%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.logo img {
  width: 350px;
  height: auto;
  display: flex;
  justify-content: flex-start;
  margin-right: 400px;
  overflow: hidden; /* impede a imagem de “vazar” */
}


  
  }