body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  letter-spacing: 0px;
  overflow-x: hidden;
}

/* Class Header */
.header {
  position: relative;
  width: 100vw;
  z-index: 100;
  padding: 0;
  box-sizing: border-box;
  background-color: white;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  width: 75%;
  margin: 0 auto;
  box-sizing: border-box;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  max-height: 50px;
  margin-right: 50px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-buttons {
  display: flex;
  align-items: center;
}

.header-icon .icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: black;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-icon .icon-link i {
  font-size: 20px;
}

.header-icon .icon-link:hover {
  color: white;
  background-color: black;
}

.contact-text {
  font-size: 14px;
  padding: 10px 10px;
}

.contact-text:hover {
  background-color: #000000;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 10px 10px;
  cursor: pointer;
  text-align: center;
}

.header-buttons-container {
  display: flex;
  align-items: center;
  gap: 40px;
}


/* Class Sub-header*/
.sub-header {
  background-color: black;
  padding: 25px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.sub-header-content {
  display: flex;
  justify-content: space-between;
  width: 75%;
  margin: 0 auto;
  align-items: center;
}

.sub-header-text {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.sub-header-buttons {
  display: flex;
  gap: 15px;
}

.sub-header-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.specialist-button {
  background-color: black;
  color: white;
  border: 2px solid rgb(0, 0, 0);
  gap: 10px;
}

.specialist-button i {
  font-size: 16px;
}


.visit-button {
  background-color: #2189ff;
  color: white;
  gap: 10px;
}


/* Modal styles */
.modal {
  display: none;
  position: absolute;
  top: 60px;
  right: 200px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  width: 200px;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.modal.show {
  display: block;
  opacity: 1;

}

.modal-content {
  display: flex;
  flex-direction: column;
  position: relative;
}

.modal-button {
  text-decoration: none;
  color: #000;
  padding: 10px;
  border: none;
  display: block;
  text-align: left;
  margin-top: 10px;
}

.modal-button:hover {
  font-weight: bold;
}

.close-button {
  font-size: 20px;
  color: #aaa;
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 10px;
}

.close-button:hover {
  color: black;
}


/* Class Banner */
.banner {
  position: relative;
  background-image: url('image/banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 55px;
  z-index: 1;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Semi-transparent black overlay */
  z-index: 1;
}

.banner-cotainer {
  position: relative;
  width: 75%;
  z-index: 2;
  /* Place text above the overlay */
}

.banner-text {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -3px;
  color: #fff;
  margin-bottom: 20px;
}

.banner-text-sub {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}

/* CEP Container Styles */
.cep-container {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.input-container {
  position: relative;
  width: 1200px;
  /* Ajuste conforme necessário */
}

.cep-input {
  width: 100%;
  padding: 15px 15px;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 10px;
  background-color: white;
  color: #2189ff;
  outline: none;
  caret-color: #2189ff;
  position: relative;
}

/* Placeholder Styling */
.cep-input::placeholder {
  color: #999;
  font-size: 14px;
}

/* Focus and Typing Effect */
.cep-input:focus::placeholder {
  color: #2189ff;
  /* Alterar cor do placeholder enquanto digita */
  transition: all 0.3s ease;
}



/* Class features */
.features-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  /* Espaçamento entre os blocos */
  margin: 40px auto;
  /* Centraliza horizontalmente */
  width: 75%;
  /* Define a largura do contêiner */
  margin-top: -77px;

}


.feature-block {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 40px;
  flex: 1;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
  height: 185px;
}

.feature-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 75px;
  height: 75px;
  background-color: black;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  margin: 0 auto 15px auto;
}

.feature-title {
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.feature-text {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

/* Class rapid */
.rapid-service {
  padding: 40px 20px;
  text-align: center;
  margin: 40px auto;
  width: 75%;

}

.rapid-service-header {
  margin-bottom: 40px;
}

.rapid-service-title {
  font-size: 45px;
  font-weight: 700 !important;
  letter-spacing: -3px;
  color: #000;
  text-align: left;
  margin-bottom: 0px;
}

.rapid-service-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  text-align: left;
  margin-top: 0px;
}

.rapid-service-blocks {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.service-block {
  background-color: #eee;
  border-radius: 15px;
  padding: 20px 40px;
  flex: 1;
  max-width: 23%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}

.service-title {
  font-size: 24px;
  font-weight: 400;
  color: #5b5b5b;
  text-align: left;
  margin-bottom: 0px;
}

.service-header i {
  font-size: 35px;
  color: #000;
}

.service-text {
  font-size: 16px;
  color: #000;
  margin-bottom: 20px;
  text-align: left;
}

.service-button {
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}




/* Class Assistência Tecnica */

.special-assistance-container {
  justify-content: space-between;
  padding: 20px;
  width: 75%;
  margin: 40px auto;
}

.special-assistance-title {
  margin-bottom: 10px;
  color: #000000;
}

h1.special-assistance-title {
  font-size: 45px;
  font-weight: 700 !important;
  letter-spacing: -3px;
  text-align: center;
  margin-bottom: 0px;
}

h2.special-assistance-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 30px;
  text-align: center;
  margin-top: 0px;
}

.special-assistance {
  background-color: #fff;
  padding: 10px 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}


.special-assistance-content {
  font-size: 18px;
  color: #666;
}



.assistance-media {
  display: flex;
  justify-content: space-between;
  /* Espaço entre os dois blocos */
  align-items: center;
  /* Alinha verticalmente os itens */
  flex-wrap: wrap;
  /* Permite que os elementos quebrem linha em telas menores */
}


.assistance-image {
  max-width: 150px;
  margin-right: 20px;
}

.assistance-text {
  color: #000000;
  margin-right: 20px;
  font-size: 12px;

}

.assistance-image-text {
  color: #000000;
  font-size: 14px;
  margin: 2px 0px 22px 0px;
  font-weight: 600;
}

.assistance-text-image {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.assistance-text-image p {
  border: 1px solid #000;
  color: #000;
  border-radius: 20px;
  padding: 5px 10px;
  margin: 0;
  background-color: transparent;
  text-align: center;
  font-size: 16px;
}

.assistance-text-image p.active {
  border-color: #2189ff;
  color: #2189ff;
}

h1.assistance-text {
  font-size: 30px;
  margin: 0%;
  font-weight: 700
}

h2.assistance-text {
  font-size: 20px;
  margin: 0%;
  margin-bottom: 15px;
  color: #474747;
  letter-spacing: -1px;
}

p.assistance-text {
  color: #fff;
  background-color: #000;
  margin-right: 20px;
  font-size: 16px;
  padding: 5px 10px;
  border-radius: 40px;
  max-width: max-content;
}

p.assistance-text.active {
  background-color: #2189ff;
  color: #ffffff;
}



.assistance-contato {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.btn-agendar {
  background-color: #000;
  color: #fff;
  padding: 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-agendar:hover {
  background-color: #333;
  transform: scale(1.05);
}

.btn-whatsapp,
.btn-phone {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 2px solid;
  font-size: 24px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.btn-whatsapp {
  border-color: #25d366;
  color: #25d366;
}

.btn-phone {
  border-color: #2189ff;
  color: #2189ff;
}

.btn-whatsapp:hover,
.btn-phone:hover {
  transform: scale(1.1);
}

.btn-blue {
  background-color: #2189ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}


/* Class form*/

.form-section-container-banner {
  position: relative;
  background-image: url('image/banner2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 20px;
}

.form-section-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 20px;
  width: 75%;
  margin: 40px auto;
}

.form-section {
  display: none;
}

.form-section.active {
  display: block;
  background-color: #FFF;
  padding: 50px;
  border-radius: 8px
}

.form-container {
  flex: 1;
}


.form-control {
  width: 100%;
  box-sizing: border-box;
  font-size: 20px;
  background-color: #ffffff;
  color: #232323;
  line-height: 1rem !important;
  height: auto;
  padding: 1.0rem 1.2rem;
  transition: border-color 0.25s ease 0s;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  margin-bottom: 15px;
}

.form-control::placeholder {
  color: #6c757d;
}

.form-control:hover {
  border: 2px solid #2189ff;
}

.form-control:focus {
  border: 2px solid #2189ff;
  outline: none;
}

.radio-group {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.radio-control {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
  margin-bottom: 15px;
}

.radio-control img.radio-image {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
}

.radio-control input[type="radio"] {
  margin-bottom: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  /* Torna o input redondo */
  background-color: #fff;
  /* Cor de fundo do input */
}

.radio-control input[type="radio"]:checked {
  border: 2px solid #2189ff;
  /* Borda azul quando selecionado */
  background-color: #2189ff;
  /* Cor de fundo do input */
}

.radio-control:hover input[type="radio"] {
  border: 2px solid #2189ff;
  /* Borda azul ao passar o mouse */
  appearance: none;
  /* Remove o estilo padrão */
}


.radio-control span {
  margin-top: 5px;
  color: #474747;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
}


.form-button {
  width: 100%;
  font-size: 20px;
  box-sizing: border-box;
  background-color: #2189ff;
  color: #fff;
  margin-top: 10px;
  border: none;
  padding: 1.0rem 1.2rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

/* Informações à direita */
.info-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 20px;

}

.info-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 0px;
  color: #fff;
}

.info-text {
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
}

.info-text-form {
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
}

.info-button {
  background-color: #2189ff;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}



#btn_forms {
  display: none;
}

@keyframes tremer {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }

  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }

  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }

  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }

  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }

  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }

  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }

  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }

  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }

  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }

  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}

.treme {
  animation: tremer 0.5s;
  /* Duração da animação */
  animation-iteration-count: 1;
  /* Repetições */
}

.treme-button {
  animation: tremer 0.5s;
  animation-iteration-count: 1;
}


.whatsapp-section {
  background-color: #2189ff;
  /* Fundo azul */
}

.whatsapp-content {
  background-color: #2189ff;
  /* Fundo azul */
  padding: 40px;
  display: flex;
  justify-content: space-between;
  /* Espaça os itens para os extremos */
  align-items: center;
  /* Alinha os itens verticalmente no centro */
  color: #fff;
  /* Texto branco */
  gap: 20px;
  width: 75%;
  margin: auto;
}

.whatsapp-text {
  flex: 1;
  text-align: left;
}

.whatsapp-title {
  font-size: 35px;
  font-weight: bold;
}

.whatsapp-subtitle {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.whatsapp-button-container {
  flex: 0 0 auto;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  background-color: #000;
  color: #fff;
  /* Texto branco */
  padding: 26px;
  /* Espaçamento interno */
  border-radius: 8px;
  /* Bordas arredondadas */
  text-decoration: none;
  /* Remove sublinhado */
  font-size: 18px;
  /* Tamanho do texto */
  font-weight: bold;
  /* Negrito */
  transition: background-color 0.3s ease;
  /* Suave ao passar o mouse */
}

.whatsapp-button i {
  font-size: 20px;
  /* Tamanho do ícone */
  margin-right: 10px;
  /* Espaço entre o ícone e o texto */
}



/* Class Perguntas */
.faq-section {
  margin: 40px auto;
  justify-content: space-between;
  padding: 20px;
  width: 75%;
}

.faq-title {
  color: #000000;
  margin-bottom: 50px;
}

.faq-sub-titile {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  text-align: left;
  margin-top: 0px;
}

h1.faq-title {
  font-size: 45px;
  font-weight: 700 !important;
  letter-spacing: -3px;
  text-align: left;
  margin-bottom: 0px;
}

h2.faq-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #000;
}

h2.faq-resposta {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #000;
}

.faq-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.faq-button-wrapper {
  display: flex;
  align-items: center;
  margin-right: 10px;
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 10px;
}

.faq-toggle {
  background: #f8f8f8;
  border: none;
  cursor: pointer;
  padding: 5px;
  border-radius: 8px;
}

.faq-toggle img {
  width: 33px;
  height: auto;
}

.faq-content-wrapper {
  flex: 1;
}

.faq-question-wrapper {
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  /* Adiciona o ícone à direita */
  align-items: center;
}

.faq-icon {
  font-size: 30x;
  font-weight: bold;
  color: #000;
  transition: transform 0.3s ease;
  /* Suaviza a transição */
}

.faq-item.active .faq-icon {
  content: "-";
  color: #2189ff;
  /* Cor alternativa quando aberto */
}


.faq-answer {
  font-size: 16px;
  margin-top: 10px;
  padding-left: 20px;
  border-left: 2px solid #f8f8f8;
  color: #000;
  background-color: #f8f8f8;
  border-radius: 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  display: block;

}

.faq-item.active .faq-answer {
  max-height: 500px;
  /* Altura máxima */
  padding: 10px 20px;
}

/* Class Duvidas*/

.duvida-content {
  background-color: #262626;
  /* Fundo azul */
  padding: 40px;
  display: flex;
  justify-content: space-between;
  /* Espaça os itens para os extremos */
  align-items: center;
  /* Alinha os itens verticalmente no centro */
  color: #fff;
  /* Texto branco */
  gap: 20px;
  width: 75%;
  margin: auto;
  border-radius: 20px;
}

.duvida-text {
  flex: 1;
  text-align: left;
}

.duvida-title {
  font-size: 35px;
  font-weight: bold;
  margin: 0px;
}

.duvida-subtitle {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.duvida-button-container {
  flex: 0 0 auto;
}

.duvida-button {
  display: flex;
  align-items: center;
  background-color: #2189ff;
  /* Fundo preto */
  color: #fff;
  /* Texto branco */
  padding: 26px;
  /* Espaçamento interno */
  border-radius: 40px;
  /* Bordas arredondadas */
  text-decoration: none;
  /* Remove sublinhado */
  font-size: 18px;
  /* Tamanho do texto */
  font-weight: bold;
  /* Negrito */
  transition: background-color 0.3s ease;
  /* Suave ao passar o mouse */
}



/* Class Rodapé*/
/* Geral do Footer */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 20px;
  text-align: left;
  gap: 20px;
  margin: auto;
  width: 75%;
  margin-top: -30px;
}

.footer-back {
  background-color: #f8f8f8;
}

.footer-block {
  flex: 1;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 10px;
}

.footer-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}

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

.footer-list li {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

/* Botões do terceiro bloco */
.footer-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.footer-button {
  display: inline-block;
  padding: 20px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  transition: background-color 0.3s ease;
}

.phone-button {
  background-color: #000;
  /* Fundo preto */
}

.phone-button:hover {
  background-color: #333;
  /* Fundo preto mais claro no hover */
}

.whatsapp-button-footer {
  background-color: #2189ff;
  /* Fundo azul */
}


/* Linha Divisória */
.footer-divider {
  width: 75%;
  height: 1px;
  background-color: #ddd;
  margin: 20px auto;

}

/* Texto de Direitos Reservados */
.footer-copyright {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin: 10px 0 0;
  padding-top: 10px;
  padding-bottom: 50px;
  background-color: #f8f8f8;
}


/* Class Sistema*/

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

.login-box {
  background-color: #f1f1f1;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 400px;
  width: 100%;
}



.login-box label {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: bold;

}


.login-box input[type="text"],
.login-box input[type="password"] {
  width: 95%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}


.login-box button {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}


.login-box button:hover {
  background-color: #0056b3;
}

/* Class Obrigado */
.banner-obrigado {
  position: relative;
  height: 82vh;
  color: white;
  text-align: left;
  justify-content: center;
  display: flex;
}

.banner-cotainer-obrigado {
  width: 75%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-text-obrigado {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  z-index: 2;
  margin-bottom: 20px;
  color: black;
  display: inline-block;
  vertical-align: top;
}

h2.banner-text-obrigado {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.banner-image-obrigado {
  width: 75%;
}

/*Class Action */
.appear-effect {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 2.5s ease, transform 2.5s ease;
}

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


/* Tela HD (1366px a 1919px) */
@media screen and (min-width: 1366px) and (max-width: 1919px) {

  /* Estilos para telas HD */
  body,
  html {
    overflow-x: hidden;
  }

  /* Modal styles */
  .modal {
    right: 130px;
  }

  /* Class Banner */
  .cep-input {
    width: 50%;
  }

  .banner-text {
    font-size: 40px;
  }

  .banner-text-sub {
    font-size: 23px;
    margin-left: 5px;
  }

  .banner-text-image {
    margin-left: 125px;
  }

  .seguranca-image-banner {
    max-width: 360px;
  }

  /* Class Assistência Tecnica */
  h1.special-assistance-title {
    font-size: 35px;
  }

  h2.special-assistance-title {
    font-size: 15px;
  }

  .contato-image {
    max-width: 180px;
  }

  .seguranca-image {
    max-width: 300px;
  }

  h1.assistance-text {
    font-size: 25px;
  }

  p.assistance-text {
    font-size: 13px;
  }

  .assistance-image-text {
    font-size: 13px;
    margin-top: 29px;
  }

  /* Class form*/
  .form-control,
  .form-button {
    font-size: 15px;
  }

  .sticky-form.fixed {
    right: 35px;
  }

  /* Class  CLIENTES DIZEM*/

  h1.clientes-title {
    font-size: 35px;
  }

  h2.clientes-title {
    font-size: 15px;
  }

  .comment-text {
    font-size: 17px;
  }

  p.comment-text {
    font-size: 12px;
  }

  .carousel-btn {
    font-size: 70px;
  }

  /* Class Banner Defeito*/
  .banner-text-defeito {
    font-size: 40px;
  }

  /* Class Defeitos*/
  h1.assistance-defeito-title {
    font-size: 35px;
  }

  h2.assistance-defeito-title {
    font-size: 15px;
  }

  .assistance-defeito-text {
    font-size: 15px;
  }

  p.image-column {
    font-size: 25px;
  }

  h1.faq-title {
    font-size: 35px;
  }

  h2.faq-title {
    font-size: 15px;
  }

  .faq-toggle img {
    width: 36px;
  }

  .grid-container {
    gap: 10px
  }

  /* Class Obrigado */

  .banner-cotainer-obrigado {
    gap: 10px;
  }

  .banner-text-obrigado {
    text-align: center;
    font-size: 45px;
  }

  h2.banner-text-obrigado {
    font-size: 20px;
  }

}



/* Tablet (768px a 1365px) */
@media screen and (min-width: 768px) and (max-width: 1365px) {
  /* Estilos para tablets */



  .special-assistance-container {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }

  .content-wrapper {
    display: inline;
  }

  /* Class Header */
  .header-content {
    width: 100%;
  }

  /* Modal styles */
  .modal {
    right: 0px;
  }

  /* Class Banner */
  .cep-input {
    width: 75%;
  }

  .banner-text {
    font-size: 37px;
  }

  .banner-text-sub {
    font-size: 19px;
    margin-left: 15px;
    text-align: center;
    letter-spacing: -2px;
  }

  .banner-text-image {
    margin-left: 85px;
  }

  .seguranca-image-banner {
    max-width: 375px;
  }

  /* Class Assistência Tecnica */
  .content-wrapper {
    width: 100%;
  }

  h1.special-assistance-title {
    font-size: 30px;
  }

  h2.special-assistance-title {
    font-size: 12px;
  }

  .contato-image {
    max-width: 180px;
  }

  .seguranca-image {
    max-width: 300px;
  }

  .assistance-text {
    margin-left: 10px;
    margin-right: 10px;
  }

  h1.assistance-text {
    font-size: 25px;
  }

  p.assistance-text {
    font-size: 11px;
  }

  .assistance-image-text {
    font-size: 13px;
    margin-top: 13px;
  }

  /* Class form*/
  .sticky-form.fixed {
    display: none;
  }

  .sticky-form {
    display: none;
  }

  .form-control,
  .form-button {
    font-size: 15px;
  }

  #btn_forms {
    position: fixed;
    bottom: 190px;
    right: 18px;
    background-color: #2189ff;
    color: #FFF;
    border-radius: 40px;
    text-align: center;
    box-shadow: 1px 1px 1px #888;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    text-decoration: none;
    transition: width 0.35s ease-in-out;
    /* Transição suave */
    overflow: hidden;
  }

  .button-content {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tooltip {
    display: none;
    font-size: 16px;
    font-family: sans-serif;
    font-weight: bold;
    color: #FFF;
    white-space: nowrap;
    margin-right: 10px;
  }

  #btn_forms:hover {
    width: 180px;
  }

  #btn_forms:hover .tooltip {
    display: inline;
  }

  #btn_forms:hover img {
    margin-left: auto;
  }

  .step-label {
    padding: 12px;
  }


  /* Class  CLIENTES DIZEM*/

  h1.clientes-title {
    font-size: 30px;
  }

  h2.clientes-title {
    font-size: 12px;
  }

  .comment-text {
    font-size: 17px;
  }

  p.comment-text {
    font-size: 12px;
  }

  .carousel-btn {
    font-size: 70px;
  }

  /* Class Banner Defeito*/
  .banner-text-defeito {
    font-size: 30px;
  }

  .defeito-input {
    width: 75%;
  }

  .banner-defeito {
    margin-top: 50px;
  }

  /* Class Defeitos*/
  h1.assistance-defeito-title {
    font-size: 30px;
  }

  h2.assistance-defeito-title {
    font-size: 12px;
  }

  .assistance-defeito-text {
    font-size: 12px;
  }

  p.image-column {
    font-size: 25px;
  }

  h1.faq-title {
    font-size: 30px;
  }

  h2.faq-title {
    font-size: 15px;
  }

  .faq-toggle img {
    width: 36px;
  }

  .footer {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }

  /* Class Obrigado */

  .banner-cotainer-obrigado {
    gap: 10px;
  }

  .banner-text-obrigado {
    text-align: center;
    font-size: 45px;
  }

  h2.banner-text-obrigado {
    font-size: 20px;
  }


}

/* Celular (até 767px) */
@media screen and (max-width: 767px) {
  /* Estilos para celulares */

  body {
    overflow-x: hidden;
  }

  /* Modal styles */
  .modal {
    right: 0px;
  }

  .special-assistance-container {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }

  .content-wrapper {
    display: inline;
  }

  /* Class Header */
  .header-content {
    width: 100%;
    box-sizing: border-box;
  }

  .support-button,
  .contact-text {
    display: none;
  }

  /* Class Banner */
  .cep-input {
    width: 75%;
    font-size: 20px;
  }

  .banner {
    padding: 0px;
    margin-bottom: 0px;
    height: 83vh;
  }

  .banner-text {
    font-size: 30px;
    letter-spacing: -1px;
  }

  .banner-text-sub {
    font-size: 21px;
    margin-left: 5px;
    text-align: center;
    letter-spacing: -2px;
  }

  .banner-text-image {
    margin-left: 20px;
  }

  .seguranca-image-banner {
    max-width: 277px;
  }

  .cep-button {
    width: 50px;
    height: 49px;
  }

  /* Class Assistência Tecnica */
  .content-wrapper {
    width: 100%;
  }

  .assistance-media {
    display: inline
  }

  h1.special-assistance-title {
    font-size: 26px;
    letter-spacing: -1px;
  }

  h2.special-assistance-title {
    font-size: 12px;
  }

  .contato-image {
    max-width: 180px;
  }

  .seguranca-image {
    max-width: 300px;
    margin-bottom: 20px;
  }

  .assistance-text {
    margin-left: 10px;
    margin-right: 10px;
  }

  h1.assistance-text {
    font-size: 25px;
  }

  h2.assistance-text {
    font-size: 17px;
  }

  p.assistance-text {
    font-size: 16px;
  }

  .assistance-image-text {
    font-size: 13px;
    margin-top: 13px;
  }

  .star-rating {
    justify-content: center;
  }


  .assistance-contato {
    display: inline;
    align-items: center;
    margin-top: 20px;

  }

  /* Class form*/
  .sticky-form.fixed {
    position: static;
    top: 0px;
    right: 0px;
  }

  .sticky-form {
    display: none;
  }

  .form-control,
  .form-button {
    font-size: 15px;
  }

  #btn_forms {
    position: fixed;
    bottom: 190px;
    right: 18px;
    background-color: #2189ff;
    color: #FFF;
    border-radius: 40px;
    text-align: center;
    box-shadow: 1px 1px 1px #888;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    text-decoration: none;
    transition: width 0.35s ease-in-out;
    overflow: hidden;
  }

  .button-content {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tooltip {
    display: none;
    font-size: 16px;
    font-family: sans-serif;
    font-weight: bold;
    color: #FFF;
    white-space: nowrap;
    margin-right: 10px;
  }

  #btn_forms:hover {
    width: 180px;
  }

  #btn_forms:hover .tooltip {
    display: inline;
  }

  #btn_forms:hover img {
    margin-left: auto;
  }

  .step-label {
    padding: 9px;
  }


  /* Class  CLIENTES DIZEM*/
  .carousel-slide {
    flex: 0 0 100%;
    /* Exibe um comentário por vez */
  }

  .carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
  }

  .carousel-container {
    overflow: hidden;
  }

  .comment {
    flex: 1 0 80%;
    box-sizing: border-box;
    padding: 10px;
  }

  .comment.mobile {
    display: none;
  }

  .carousel-slide {
    gap: 18px;
  }

  h1.clientes-title {
    font-size: 26px;
    letter-spacing: -2px;
  }

  h2.clientes-title {
    font-size: 12px;
  }

  .comment-text {
    font-size: 17px;
  }

  p.comment-text {
    font-size: 12px;
  }

  .carousel-btn {
    font-size: 70px;
  }

  /* Class Banner Defeito*/

  .banner-text-defeito {
    font-size: 30px;
  }

  .defeito-input {
    width: 75%;
    font-size: 20px;
  }

  .banner-defeito {
    margin-top: 50px;
    padding: 0px;
  }

  /* Class Defeitos*/
  .additional-assistance-defeito {
    gap: 0px;
  }

  h1.assistance-defeito-title {
    font-size: 26px;
  }

  h2.assistance-defeito-title {
    font-size: 12px;
  }

  .assistance-defeito-text {
    font-size: 12px;
  }

  p.image-column {
    font-size: 25px;
  }

  h1.faq-title {
    font-size: 26px;
  }

  h2.faq-title {
    font-size: 13px;
  }

  .faq-button-wrapper {
    display: none;
  }

  .faq-section {
    margin: 0px;
  }

  .faq-question-wrapper {
    border-radius: 12px;
  }

  .additional-assistance-outros-defeito {
    display: none;
  }

  .footer {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }

  /* Class Obrigado */

  .banner-obrigado {

    text-align: center;
    justify-content: center;
    display: flex;
  }

  .banner-image-obrigado {
    width: 20%;
    margin-top: 50px;
  }

  .banner-cotainer-obrigado {
    gap: 10px;
    display: block;
  }

  .banner-text-obrigado {
    text-align: center;
    font-size: 26px;
  }

  h2.banner-text-obrigado {
    font-size: 16px;
  }
}