body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #242525;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.logo img {
  height: 60px;
}

.btns a {
  text-decoration: none;
  color: #F9F1EF;
  margin-left: 30px;
  font-weight: 500;
  transition: color 0.3s ease;
  text-shadow: 1px 1px 6px #F9F1EF;
}

.btns a:hover {
  color: #b95402;
  transition: all 0.5s;
  text-shadow: 1px 1px 6px #F47A21;
}

/*Index comeca aqui*/

/* sobre comeco*/

.ajp-sobre {
  position: relative;
  background-image: url('../Assets/006.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 60px 20px;
  overflow: hidden;
}

.ajp-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Escurece o fundo */
  z-index: 1;
}

.ajp-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  background-color: rgba(0, 0, 0, 0.65);
  padding: 40px;
  border-radius: 10px;
  text-shadow: 1px 1px 3px black;
}

.ajp-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #ff6600;
}

.ajp-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* sobre fim*/


/* Primeiro container começo*/
.container1 {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.list {
  position: relative;
  width: 100%;
  height: 100vh;
  font-family: "Orbitron", sans-serif;
}

.item {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.item.active {
  opacity: 1;
  visibility: visible;
}

.product-img {
  position: relative;
  width: 100%;
  height: 100%;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: white;
  text-align: center;
  padding: 20px;
  width: 100%;
  max-width: 800px;
  box-sizing: border-box;
}

.product-Name {
  font-size: 2.6rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.product-Name img {
  height: 40px;
}

.product-Desc {
  margin-top: 10px;
  font-size: 1.4rem;
}

.btn {
  margin-top: 20px;
  background: transparent;
  border: 1px solid orange;
  color: white;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 15px;
}

.btn:hover {
  background: orange;
  color: black;
}

.lfrg-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% - 40px);
  left: 20px;
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
}

.arrows-btn {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  font-size: 24px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: background-color 0.3s ease;
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5));
  width: 40px;
  height: 40px;
}

.arrows-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.num-ind {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.dots {
  display: flex;
  justify-content: center;
}

.dots .dot {
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dots .dot.active {
  background-color: #333;
}

/* Primeiro container fim*/




/* clientes começo*/
.clientes {
  background-color: #ffffff;
  padding: 60px 40px;
}

.clientes-header h2 {
  font-size: 2.5rem;
  color: #f26522;
  text-align: center;
  margin-bottom: 40px;
}

.clientes-header span {
  color: #000000;
}

.clientes-conteudo {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.clientes-texto {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.clientes-texto p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.clientes-texto ul {
  padding-left: 20px;
}

.clientes-texto li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.clientes-imagem {
  flex: 1;
  min-width: 300px;
  max-width: 700px;
  display: flex;
  justify-content: center;
  margin-left: 15em;
  margin-top: 2em;
}

.clientes-imagem img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* clientes fim*/



/* Contato começo*/
.contato-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  padding: 20px 40px;
  background: #1c1c1c;
  color: white;
}

.contato-left {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}

.contato-left h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contato-left h3 {
  color: #f26522;
  margin-bottom: 20px;
}

.contato-left p {
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

.contato-right {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.membro {
  display: flex;
  align-items: center;
  gap: 20px;
}

.membro img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.membro h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.membro p {
  margin: 5px 0 0;
  font-size: 0.9rem;
}

/* Contato fim*/

/*Index acaba aqui*/


/* trabalhe conosco comeca aqui*/

.contato-banner {
  background: url('../Assets/texto.png') center/cover no-repeat;
  min-height: 200px; /* Adjusted from fixed height to min-height for flexibility */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Removed padding-top as overlay handles vertical padding */
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  text-align: center;
  padding: 60px 20px; /* Adjusted padding to control vertical spacing */
  color: white;
  min-height: 19vh; /* Changed to min-height to allow content to dictate height, but ensure a minimum */
  display: flex; /* Added to center content vertically within the overlay if needed */
  flex-direction: column; /* Added for vertical centering */
  justify-content: center; /* Added for vertical centering */
}

.overlay h1 {
  font-size: 2.8rem;
  font-weight: bold;
}

.overlay p {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #ccc;
}

.contato-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 5%;
  gap: 60px;
  background: white;
  /* Removed max-height and overflow-y to allow natural scrolling */
}

.formulario {
  flex: 1 1 500px;
}

.formulario .intro-text {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #333;
}

.formulario form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.formulario .linha {
  display: flex;
  gap: 10px;
}

.formulario input,
.formulario textarea {
  width: 96.3%;
  padding: 14px;
  border: 1px solid #ccc;
  font-size: 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.formulario input:focus,
.formulario textarea:focus {
  outline: none;
  border-color: #ff7b00;
  box-shadow: 0 0 5px rgba(255, 123, 0, 0.3);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.captcha {
  background: #f2f2f2;
  padding: 14px;
  text-align: center;
  color: #777;
  border-radius: 6px;
  font-size: 0.9rem;
  width: 300px;
  margin-left: 30%;
}

.formulario button {
  padding: 15px;
  background: #ff7b00;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.formulario button:hover {
  background: #e96a00;
  transform: scale(1.02);
}

.info-contato {
  flex: 1 1 300px;
  padding-left: 200px;
}

.info-contato .box {
  margin-bottom: 30px;
}

.info-contato h3 {
  color: #ff7b00;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.info-contato p {
  color: #333;
  font-size: 0.95rem;
}

.fechado {
  color: #999;
  font-style: italic;
}

.travar-scroll {
  height: 100vh;
}

/*trabalhe conosco termina aqui*/

/* empresa comeca aqui */
.ajp-sobre2 {
  position: relative;
  background-image: url('../Assets/f12.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 60px 20px;
  overflow: hidden;
}

.ajp-overlay2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Escurece o fundo */
  z-index: 1;
}




.hero {
  background: url('../Assets/03\ cor.png') center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-texto {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.hero h1 span {
  color: #ffa500;
}


section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ff7b00;
}

section p,
section li {
  font-size: 1.1rem;
  line-height: 1.6;
}


.big-numbers-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  background-color: #ffffff;
}

.big-numbers-box {
  display: flex;
  width: 90%;
  height: 80vh;
  border: 2px solid #ff7b00;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.big-numbers-left {
  flex: 1;
  background: url('../Assets/big.png') no-repeat center center;
  background-size: cover;
}

.big-numbers-right {
  flex: 1;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.big-numbers-right::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 100%;
  background-color: #ff7b00;
}

.big-numbers-right h2 {
  font-size: 3rem;
  color: #ff7b00;
  margin-bottom: 20px;
}

.big-numbers-right .subtitulo {
  font-size: 1.5rem;
  margin-bottom: 50px;
  color: black;
}

.metricas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 30px;
}

.numero h3 {
  font-size: 2rem;
  font-weight: normal;
}

.numero h3 strong {
  font-weight: bold;
}

.numero p {
  font-size: 1rem;
  color: #333;
}




.oque-fazemos {
  padding: 4% 30% 0% 30%;
  background: #fff;
  text-align: center;
}

.oque-header img {
  width: 150px;
  margin-bottom: 10px;
}

.oque-header h2 {
  font-size: 2rem;
  color: #ff5c00;
  margin-bottom: 5px;
}

.oque-header .email {
  font-size: 0.95rem;
  color: #333;
}

.oque-header .email a {
  color: #ff5c00;
  text-decoration: none;
  font-weight: 500;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.servico {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.servico .icone {
  background-color: #ff5c00;
  color: white;
  font-size: 26px;
  padding: 20px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 15px;
}

.servico h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 600;
  color: #222;
}

.servico p {
  font-size: 0.95rem;
  color: #666;
}

.servicos-ajp {
  background-color: #fff;
  padding: 80px 10%;
  text-align: center;
}

.titulo-servico {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #ff6a00;
  margin-bottom: 60px;
}

.grid-servicos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.card-servico {
  background: #fff;
  border: 1px solid #eee;
  border-top: 5px solid #ff6a00;
  padding: 20px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-servico:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.card-servico img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 4px;
}

.card-servico h3 {
  color: #222;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.card-servico p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}






.parallax-section {
  background-image: url('../Assets/11.png');
  /* Troque pelo nome da imagem que você enviou */
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  color: white;
}

.parallax-content {
  max-width: 1200px;
  background: rgba(0, 0, 0, 0.8);
  padding: 50px;
  border-radius: 15px;
  margin: 0 auto;
  font-family: "Orbitron", sans-serif;
}

.parallax-content h2 {
  color: #f09d66;
  font-size: 42px;
  margin-bottom: 40px;
  text-align: center;
}

.content-block {
  margin-bottom: 40px;
}

.content-block h3 {
  color: #ffa500;
  font-size: 28px;
  margin-bottom: 15px;
  border-bottom: 2px solid #ff6600;
  display: inline-block;
  padding-bottom: 5px;
}

.content-block p {
  font-size: 18px;
  line-height: 1.8;
  color: white;
}

.content-block p strong {
  color: #ffa500;
}

/* empresa termina aqui */
/* proposta */
.form-container {
  background-color: #fff;
  padding: 100px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 800px;
  margin: 160px auto 80px auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-container h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: #333;
}

.form-container p {
  text-align: center;
  color: #777;
  margin-bottom: 20px;

}

.mensagem-sucesso {
    color: green;
    margin-top: 10px;
}

.mensagem-erro {
    color: red;
    margin-top: 10px;
}

input,
select,
textarea,
.form-container button {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.form-container button {
  background-color: #ff6600;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #e65c00;
}

/* pop up */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #4CAF50; /* Cor verde de sucesso */
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
    z-index: 1000;
    font-family: 'Montserrat', sans-serif;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.hidden {
    display: none;
}




/* footer*/
.ajp-footer {
  background-color: #000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #444;
  padding-bottom: 40px;
}

.footer-logo img {
  width: 160px;
}

.footer-menus {
  display: flex;
  justify-content: space-between;
  flex: 1;
  gap: 60px;
  margin-left: 9vh;
}

.footer-column h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #aaa;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
}

.footer-column a:hover {
  color: #b95402;
  transition: all 0.5s;
  text-shadow: 1px 1px 6px #F47A21;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-social a img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.footer-social a img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #ff6a00;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #b95402;
  transition: all 0.5s;
  text-shadow: 1px 1px 6px #F47A21;
}

/* responsividade começo*/
@media (max-width: 992px) {

  header {
    padding: 15px 30px;
  }

  .btns a {
    margin-left: 20px;
  }

  .ajp-content {
    padding: 30px 20px;
  }

  .ajp-content h2 {
    font-size: 2.2rem;
  }

  .product-Name {
    font-size: 2rem;
  }

  .product-Desc {
    font-size: 1.2rem;
  }

  .clientes-conteudo {
    flex-direction: column;
    align-items: center;
  }

  .clientes-imagem {
    margin-left: 0;
    margin-top: 0;
  }

  .contato-container {
    flex-direction: column;
    align-items: center;
  }

  .info-contato {
    padding-left: 0;
  }

  .big-numbers-box {
    flex-direction: column;
    height: auto;
  }

  .big-numbers-left {
    min-height: 300px;
  }

  .metricas {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 60px 20px;
  }

  .parallax-section {
    background-attachment: scroll;
    padding: 80px 20px;
  }

  .parallax-content h2 {
    font-size: 36px;
  }

  .content-block h3 {
    font-size: 24px;
  }

  .contato-banner { /* Added for responsiveness of the banner */
    min-height: 250px;
  }

  .overlay { /* Adjusted for responsiveness of the overlay */
    padding: 40px 20px;
    min-height: auto;
  }
}

@media (max-width: 768px) {

  header {
    flex-direction: column;
    padding: 10px 20px;
  }

  .btns {
    margin-top: 10px;
  }

  .btns a {
    margin-left: 15px;
    font-size: 0.9rem;
  }

  .ajp-content h2 {
    font-size: 1.8rem;
  }

  .ajp-content p {
    font-size: 1rem;
  }

  .product-Name {
    font-size: 1.8rem;
  }

  .product-Desc {
    font-size: 1rem;
  }

  .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .clientes-header h2 {
    font-size: 2rem;
  }

  .clientes-texto p {
    font-size: 1rem;
  }

  .clientes-imagem img {
    max-width: 100%;
  }

  .contato-left h2 {
    font-size: 1.5rem;
  }

  .contato-left h3 {
    font-size: 1.2rem;
  }

  .membro h4 {
    font-size: 0.9rem;
  }

  .membro p {
    font-size: 0.8rem;
  }

  .captcha {
    width: 100%;
    margin-left: 0;
  }

  .big-numbers-right h2 {
    font-size: 2.2rem;
  }

  .big-numbers-right .subtitulo {
    font-size: 1.2rem;
  }

  .oque-fazemos {
    padding: 4% 10% 0% 10%;
  }

  .servicos-grid {
    grid-template-columns: 1fr;
  }

  .parallax-content {
    padding: 30px 20px;
  }

  .parallax-content h2 {
    font-size: 28px;
  }

  .content-block h3 {
    font-size: 20px;
  }

  .content-block p {
    font-size: 14px;
  }

  .form-container {
    padding: 40px 20px;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-menus {
    flex-direction: column;
    gap: 30px;
    margin-left: 0;
  }

  .contato-banner { /* Further adjustments for smaller screens */
    min-height: 200px;
  }

  .overlay h1 { /* Adjusted font size for smaller screens */
    font-size: 2.2rem;
  }

  .overlay p { /* Adjusted font size for smaller screens */
    font-size: 1rem;
  }
}

@media (max-width: 480px) {

  .logo img {
    height: 50px;
  }

  .btns a {
    font-size: 0.8rem;
  }

  .product-Name {
    font-size: 1.5rem;
  }

  .product-Desc {
    font-size: 0.9rem;
  }

  .clientes-header h2 {
    font-size: 1.8rem;
  }

  .contato-left h2 {
    font-size: 1.3rem;
  }

  .contato-left h3 {
    font-size: 1.1rem;
  }

  .membro img {
    width: 60px;
    height: 60px;
  }

  .big-numbers-right h2 {
    font-size: 1.8rem;
  }

  .big-numbers-right .subtitulo {
    font-size: 1rem;
  }

  .oque-fazemos {
    padding: 4% 5% 0% 5%;
  }

  .parallax-content {
    padding: 20px 10px;
  }

  .parallax-content h2 {
    font-size: 24px;
  }

  .content-block h3 {
    font-size: 18px;
  }

  .content-block p {
    font-size: 13px;
  }

  .form-container {
    padding: 30px 15px;
  }

  .footer-column a {
    font-size: 0.8rem;
  }

  .overlay h1 { /* Even smaller font size for very small screens */
    font-size: 1.8rem;
  }

  .overlay p { /* Even smaller font size for very small screens */
    font-size: 0.9rem;
  }
}


/* responsividade fim*/