/*---------------------------------------------------------------------------------------------*/

.whatsapp-btn {
  position: fixed;   

  right: 20px;          /* distância da lateral direita */
  z-index: 999;         /* fica por cima de tudo */
}

.whatsapp-btn img {
  width: 60px;          /* tamanho do ícone */
  height: 60px;
  border-radius: 50%;   /* deixa circular */
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.whatsapp-btn img:hover {
  transform: scale(1.1);
}


/*---------------------------------------------------------------------------------------------*/



#fundo1 {
  position: relative;
  text-align: center;

  


}

.container-texto {

  display: flex;     /*-----o que facilita o posicionamento e alinhamento dos itens..-- */
  flex-wrap: wrap;    /*-----eles se organizam em várias linhas automaticamente quando o espaço horizontal acabar.-- */
  justify-content: center;  /*-----Alinha os itens horizontalmente ao centro ---------- */
  

  position: absolute;
  top: 50%; /* ajuste de altura */
  left: 35%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  opacity: 0;
  animation: aparecer 0.4s ease forwards;
  animation-delay: 0.4s;
  font-family: 'Cinzel Decorative', serif;
}

.borda-piscando {
  padding: 20px 40px;
  border: 3px solid white;
  animation: piscar 1s infinite;
}

.titulo {
  font-size: 18px;
  margin-bottom: 8px;
}

.linha {
  width: 100%;
  height: 2px;
  background: white;
  margin: 8px 0;
}

.subtitulo {
  font-size: 28px;
  font-weight: bold;
  margin-top: 8px;
}

@keyframes aparecer {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes piscar {
  0%, 100% {
    border-color: white;
    box-shadow: 0 0 10px white;
  }
  50% {
    border-color: transparent;
    box-shadow: none;
  }
}


.fundo2{

  display: flex;     /*-----o que facilita o posicionamento e alinhamento dos itens..-- */
  flex-wrap: wrap;    /*-----eles se organizam em várias linhas automaticamente quando o espaço horizontal acabar.-- */
  justify-content: center;  /*-----Alinha os itens horizontalmente ao centro ---------- */
  gap: 10%;
  background: #9186F5;

  background: transparent; /* força fundo transparente */

 

}

  




.fundo4{
 
  display: flex;     /*-----o que facilita o posicionamento e alinhamento dos itens..-- */
  flex-wrap: wrap;    /*-----eles se organizam em várias linhas automaticamente quando o espaço horizontal acabar.-- */
  justify-content: center;  /*-----Alinha os itens horizontalmente ao centro ---------- */
  gap: 10%;

  /* Background degradê de 3 cores */

  width: 100%;
  height: 50vh; /* ocupa toda a altura da tela */
  background: linear-gradient(
    135deg,      /* ângulo do degradê */
    #7956b9,     /* lilás */
    #3253be,     /* vinho */
    #9122c4      /* verde escuro */
  );
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 2rem;
  text-align: center;

  /* -----------------EFEITO: Pontiagudos: topo esquerdo e inferior direito ----------------------*/
  /* -----------------Arredondados: topo direito e inferior esquerdo -----------------------------*/
  clip-path: polygon(
    0% 0%,      /* topo esquerdo - ponta */
    100% 20%,   /* topo direito - arredondado */
    100% 80%,  /* inferior direito - ponta */
    10% 100%    /* inferior esquerdo - arredondado */
  );

  /*---------------------------------------------------------------------------------------------*/



}



/* Responsividade */



.container {
  text-align: center; /* centraliza os textos */
  margin: 50px auto;  /* espaço em cima/baixo */
  max-width: 900px;   /* largura máxima */
  padding: 20px;
}

.texto1 h1 {

  display: flex;     /*-----o que facilita o posicionamento e alinhamento dos itens..-- */
  flex-wrap: wrap;    /*-----eles se organizam em várias linhas automaticamente quando o espaço horizontal acabar.-- */
  justify-content: center;  /*-----Alinha os itens horizontalmente ao centro ---------- */
  

  font-size: 3rem;   /* bem grande */
  font-weight: bold;
  color:#2ED8F2;
  margin-bottom: 20px;

  margin-top: -10%;
  position: absolute;

}

.texto1 h2 {

  display: flex;     /*-----o que facilita o posicionamento e alinhamento dos itens..-- */
  flex-wrap: wrap;    /*-----eles se organizam em várias linhas automaticamente quando o espaço horizontal acabar.-- */
  justify-content: center;  /*-----Alinha os itens horizontalmente ao centro ---------- */
  

  font-size: 1.5rem; /* um pouco menor */
  font-weight: normal;
  color: #2ED8F2;

  position: absolute;
  top: 80%; /* ajuste de altura */
  left: 20%;
}




 /*----------------------------------------------------------------------------------------------------------- */
/* Wrapper para permitir sobreposição */
.faixa-wrapper {
  position: relative;
  width: 90%;
  margin: 40px auto;
}

/* Faixa principal */
.faixa {
  position: relative;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 120px;
  color: #fff;
  font: 800 2.5rem/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(135deg, #6b0f1a 0%, #5a0c18 35%, #4a0a15 70%, #3d0912 100%);
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.5), 0 4px 10px rgba(0,0,0,0.3);
  text-align: center;
  padding: 20px;
}

/* Ponta da faixa */
.faixa::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -22px;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: inherit;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5), 0 4px 10px rgba(0,0,0,0.3);
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  z-index: -1;
}

/* Botão WhatsApp */
.cta {
  position: absolute;
  top: 70%;
  right: 0;
  transform: translate(50%, -50%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  background-color: #25D366;
  color: #fff;
  font: 700 1.2rem/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,0.35), 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.cta:hover {
  transform: translate(50%, -50%) translateY(-2px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.45), 0 4px 10px rgba(0,0,0,0.25);
}

/* Ícone WhatsApp */
.cta i {
  font-size: 1.6rem;
}

/* ---------------------- */
/* 📱 Responsividade */
@media (max-width: 900px) {
  .faixa {
    font-size: 2rem;
  }
  .cta {
    font-size: 1rem;
    padding: 12px 18px;
  }
}

@media (max-width: 600px) {
  .faixa-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .faixa {
    font-size: 1.4rem;
    border-radius: 18px;
    height: auto;
    padding: 40px 20px;
  }

  .faixa::after {
    display: none; /* remove a ponta para não quebrar no mobile */
  }

  .cta {
    position: relative;
    transform: none;
    margin-top: 20px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
}


 /*----------------------------------------------------------------------------------------------------------*/

 .fundo5{
  display: flex;     /*-----o que facilita o posicionamento e alinhamento dos itens..-- */
  flex-wrap: wrap;    /*-----eles se organizam em várias linhas automaticamente quando o espaço horizontal acabar.-- */
  justify-content: center;  /*-----Alinha os itens horizontalmente ao centro ---------- */
  gap: 10%;

  display: flex;
  align-items: center;
  color: #070707;
  font-size: 2rem;
  text-align: center;

  /* efeito scroll */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fundo5.visible {
  opacity: 1;
  transform: translateY(0);
}



 

 

/*-----------------------------------------------------------------------------------------------------------*/


 .container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  background: black;
  
}

.card {
  background-color: #F5F5F5;
  border-radius: 10px;
  overflow: hidden;
  width: 250px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.2s;
  
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.card h2 {
  font-size: 1.3em;
  font-weight: bold;
  margin: 15px 10px 10px 10px;
}

.card p {
  font-size: 0.95em;
  margin: 0 10px 15px 10px;
  color: #555;
}

.card a {
  display: inline-block;
  margin-bottom: 15px;
  text-decoration: none;
  color: #fff;
  background-color: #e63946;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background-color 0.2s;
}

.card a:hover {
  background-color: #d62839;
}

@media (max-width: 1000px) {
  .card {
    width: 45%;
  }
}

@media (max-width: 600px) {
  .card {
    width: 100%;
  }
}
-
/*----------------------------------------------------------------------------------------------------------*/

/* Div principal com background degradê */
.pagina {
  background: linear-gradient(to bottom, #001f4d, #0077b6); /* azul escuro para azul oceano */
  min-height: 100vh;
  padding: 0;
}

/* Topo */
.topo {
  position: relative;
  width: 100%;
  height: 10vh; /* ocupa 10% da tela */
  overflow: hidden;
}

.topo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.slogan {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  max-width: 90%;
}


/*----------------------------------------------------------------------------------------------------------*/


#serviços{
  display: flex;     /*-----o que facilita o posicionamento e alinhamento dos itens..-- */
  flex-wrap: wrap;    /*-----eles se organizam em várias linhas automaticamente quando o espaço horizontal acabar.-- */
  justify-content: center;  /*-----Alinha os itens horizontalmente ao centro ---------- */
  gap: 1%;


}

.servico{
  text-align: center;

}

/*----------------------------------------------------------------------------------------------------------*/

.Texto5 {
  background-color: #0d0f0f; /* Cor de fundo */
  color: #ffffff;            /* Texto branco para contraste */
  padding: 20px;
  border-radius: 12px;
  max-width: 95%;
  margin: 20px auto;
  line-height: 1.6;
}

.Texto5 .titulo {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffcc00; /* Cor diferente para destacar o título */
}

/*----------------------------------------------------------------------------------------------------------*/


/* Espaço só para simular rolagem */
.spacer {
  height: 8vh;
}

/* Caixa */
.Texto6 {
  background-color: #0d0f0f;
  color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  max-width: 900px;
  margin: 30px auto;
  line-height: 1.6;
  text-align: center;

  opacity: 1;
  transform: translateY(0);
  transition: opacity 2300ms ease, transform 2300ms ease;
}

/* Invisível ao carregar */
.Texto6.hidden {
  opacity: 0;
  transform: translateY(50px);
}

/* Visível ao rolar */
.Texto6.show {
  opacity: 1;
  transform: translateY(0);
}

/* Conteúdo */
.Texto6 .titulo {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffcc00;
}

.Texto6 .descricao {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.Texto6 .lista-clientes {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.Texto6 .lista-clientes li {
  background: #1a1c1c;
  padding: 10px;
  border-radius: 8px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.Texto6 .lista-clientes li:hover {
  background: #333;
  transform: scale(1.05);
}

.Texto6 .extras {
  font-size: 1rem;
  font-weight: bold;
  color: #ffcc00;
}


/*----------------------------------------------------------------------------------------------------------*/
/* Nada no body. Tudo escopado no carrossel. */

/* Fundo com a imagem 125.jpg */
.fundo {
  position: relative;
  width: 100%;
  height: 30%; /* ajuste a altura */
  background: url("125.jpg") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -7%;
}

/* Carrossel centralizado sobre o fundo */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7); /* fundo semi-transparente */
  border-radius: 12px;
  padding: 10px;
}

.carousel {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.2s ease-in-out;
}

.carousel-item {
  min-width: 120px;
  text-align: center;
  margin: 5px;
}

.carousel-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(100%); /* preto e branco */
  transition: filter 0.3s ease;
}

.carousel-item img:hover {
  filter: grayscale(0); /* volta colorido no hover */
}

.carousel-item p {
  margin-top: 5px;
  font-size: 13px;
  font-weight: 600;
}


/*----------------------------------------------------------------------------------------------------------*/

.section-golden {
  position: relative;
  min-height: 100vh; /* ocupa toda a tela */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #FFD700, #FFC300);
  overflow: hidden;
}

.section-golden h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 50px;
  z-index: 2;
  position: relative;
}

.section-golden h1 span {
  color: red;
}

.cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1100px;
  z-index: 2;
  position: relative;
}

.card {
  background: white;
  padding: 20px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  flex: 1 1 300px;
  max-width: 320px;
}

.card .icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: red;
}

.card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

/* SVG das ondas */
.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  z-index: 1;
}

/*----------------------------------------------------------------------------------------------------------*/


.footer {
    position: relative;
    width: 100%;
    min-height: 70vh; /* ocupa toda a tela */
    background: #0c0202;
    color: #fff;
    overflow: hidden;
  }

  .footer::before,
  .footer::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.25) 25%, transparent 70%);
    border-radius: 50%;
    animation: ondas 10s infinite linear;
  }

  .footer::after {
    animation-duration: 16s;
    opacity: 0.4;
  }

  @keyframes ondas {
    from { transform: rotate(0deg) scale(1); }
    to   { transform: rotate(360deg) scale(1.2); }
  }

  .footer {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    position: relative;
    z-index: 1; /* fica acima das ondas */
  }

  .mapa ul {
    list-style: none;
    padding: 0;
  }

  .mapa ul li a {
    color: #fff;
    text-decoration: none;
  }

  .contato form input,
  .contato form textarea,
  .contato form button {
    
    width: 90%;
    margin: 8px 0;
    padding: 10px;

  }

  .pagamento, .copy {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
    margin-top: -15%;
  }

  /*----------------------------------------------------------------------------------------------------------*/
