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

body,
html {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  background: transparent;
  scroll-behavior: smooth;
}

/* Tela de carregamento */
#preloader {
  position: fixed;
  z-index: 2000;
  width: 100%;
  height: 100%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease;
}

/* Círculo animado */
.loader {
  border: 6px solid #ffffff30;
  border-top: 6px solid rgb(0, 140, 255);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

/* Animação de rotação */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Quando finalizado */
#preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}


/* Menu Superior */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  z-index: 1000;
  box-shadow: -5px 0px 5px rgba(0, 0, 0, 0.5);
}

.logo img {
  height: 50px;
}

/* Botão Hamburguer com Animação para X */
.menu-toggle {
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle .bar {
  height: 4px;
  width: 100%;
  background-color: rgb(0, 140, 255);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Modal */
.menu-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 999;
}

.menu-modal.active {
  opacity: 1;
  pointer-events: auto;
}

/* Navegação no Modal */
.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.menu-nav a {
  font-size: 2rem;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s, color 0.3s;
}

.menu-nav a:hover {
  transform: scale(1.08);
  color: rgb(5, 129, 212);
}



#background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}


.hero-principal {
  min-height: 85vh;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: white;
  text-align: center;
  backdrop-filter: blur(2px);
  background: linear-gradient(rgba(2, 74, 102, 0.8) 0%, rgba(2, 74, 102, 0.9) 40%, rgba(2, 74, 102, 0.8) 80%);
  transition: all 1.5s ease;
}


.hero-empresarial {
  min-height: 85vh;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: white;
  text-align: center;
  backdrop-filter: blur(2px);
  background: linear-gradient(rgba(2, 74, 102, 0.8) 0%, rgba(2, 74, 102, 0.9) 40%, rgba(2, 74, 102, 0.8) 80%);
  transition: all 1.5s ease;
}

.hero-empresarial p {
  font-size: 1.5rem;
  max-width: 50vw;
}

.hero-empresarial svg {
  margin-bottom: 2rem;
  margin-top: 6rem;
}


.hero-contato {
  min-height: 85vh;
  max-height: 120vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  padding-bottom: 1rem;
  color: white;
  text-align: center;
  backdrop-filter: blur(2px);
  background: linear-gradient(rgba(2, 74, 102, 0.8) 0%, rgba(2, 74, 102, 0.9) 40%, rgba(2, 74, 102, 0.8) 80%);
  transition: all 1.5s ease;
}

.hero-contato p {
  font-size: 1.5rem;
  margin-bottom:2rem;
}

.hero-contato svg {
  margin-bottom: 4rem;
  margin-top: 6rem;
}

.section-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;

}



.secao-galeria {
  position: relative;
  /* necessário para posicionar vídeo dentro */
  overflow: hidden;
  /* evita que o vídeo vaze para fora */
  max-height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 2vh;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: rgb(27, 27, 27);
  text-align: center;
  backdrop-filter: blur(0px);
  background: rgba(255, 255, 255, 1);
}

.galeria {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 2rem;
  width: 40vw;
  max-width: 95vw;
}

.galeria img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  transition: transform 0.3s ease;
  object-fit: cover;
}

.galeria img:hover {
  transform: scale(1.05);
}

.secao-ajuda-seguros {
  position: relative;
  /* necessário para posicionar vídeo dentro */
  overflow: hidden;
  /* evita que o vídeo vaze para fora */
  max-height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 2vh;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: rgb(255, 255, 255);
  text-align: center;
  /*backdrop-filter: blur(5px);*/
  background: #175780;
  /*border-top: 5px solid rgb(80, 0, 0);
  border-bottom: 5px solid rgb(80, 0, 0);*/
  box-shadow: 0px 2px 22px 5px rgba(0, 0, 0, 0.2);
}

.botao-fale-com-consultor1 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.botao-email {
  margin-top: 45px;
  margin-bottom: 25px;
}

.botao-whatsapp {
  margin-top: 35px;
  margin-bottom: 25px;
}

.botao {
  background-color: #5994b9;
  margin-top: 50px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 20px;
  padding-left: 20px;
  border-radius: 40px;
  text-decoration: none;
  color: rgb(255, 255, 255);
  box-shadow: 0px 2px 10px 2px rgba(61, 61, 61, 0.5);
  transition: all 1s ease;
}

.botao:hover {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 22px 5px rgb(255, 255, 255, 0.5);
  color: #0e5a8a;
}

.botao-seguradoras {
  background-color: #5994b9;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 20px;
  padding-left: 20px;
  border-radius: 40px;
  text-decoration: none;
  color: rgb(255, 255, 255);
  box-shadow: 0px 2px 5px 2px rgba(61, 61, 61, 0.2);
  transition: all 1s ease;
}

.botao-seguradoras:hover {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 22px 5px rgba(15, 130, 197, 0.8);
  color: #0e5a8a;
}

.botao-empresarial {
  margin-top: 1.5rem;
  background-color: #5994b9;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 20px;
  padding-left: 20px;
  border-radius: 40px;
  border: none;
  text-decoration: none;
  color: rgb(255, 255, 255);
  transition: all 1s ease;
  font-size: 1.2rem;
}

.botao-empresarial:hover {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 22px 5px rgba(15, 130, 197, 0.8);
  color: #0e5a8a;
}

.botao2 {
  background-color: rgb(161, 161, 161);
  margin-top: 250px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 20px;
  padding-left: 20px;
  border-radius: 40px;
  text-decoration: none;
  color: rgb(80, 0, 0);
  box-shadow: 0px 2px 10px 2px rgba(61, 61, 61, 0.2);
  transition: all 1s ease;

}

.botao2:hover {
  background-color: rgb(80, 0, 0);
  color: white;
  box-shadow: 0px 0px 22px 5px rgba(133, 1, 1, 0.5);
}

.svg {
  width: 30vw;
  height: auto;
  transition: all 1.5s ease;
}

.texto-segseg {
  fill: #ffffff;
  font-family: "Aileron";
  font-size: 100px;
  transition: all 1.5s ease;
  transform-origin: center;
  transform-box: fill-box;
  /* ou view-box */
}

.moldura-segseg {
  fill: #5CADDE;
  fill-rule: evenodd;
  stroke: none;
  transition: all 1.5s ease;
  transform-origin: center;
  transform-box: fill-box;
  /* ou view-box */
}

.svg:hover .moldura-segseg {
  fill: #ffffff;
  opacity: 0;
  transform: rotate(360deg);
}

.svg:hover .texto-segseg {
  fill: #ffffff;
  transform: scale(1.2);
  text-shadow: 2px 2px 10px rgb(34, 34, 34);
}


.secao-seguros {
  position: relative;
  /* necessário para posicionar vídeo dentro */
  overflow: hidden;
  /* evita que o vídeo vaze para fora */
  max-height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 2vh;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  color: rgb(27, 27, 27);
  text-align: center;
  /*backdrop-filter: blur(5px);*/
  background: rgba(255, 255, 255, 1);
  /*border-top: 5px solid rgb(80, 0, 0);
  border-bottom: 5px solid rgb(80, 0, 0);*/
  box-shadow: 0px -2px 22px 5px rgba(0, 0, 0, 0.2);
}



.secao-sobre {
  position: relative;
  /* necessário para posicionar vídeo dentro */
  overflow: hidden;
  /* evita que o vídeo vaze para fora */
  max-height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 2vh;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  color: rgb(27, 27, 27);
  text-align: center;
  /*backdrop-filter: blur(5px);*/
  background: rgba(255, 255, 255, 1);
  /*border-top: 5px solid rgb(80, 0, 0);
  border-bottom: 5px solid rgb(80, 0, 0);*/
  box-shadow: 0px -2px 22px 5px rgba(0, 0, 0, 0.2);
}



.div-redes-sociais {
  position: relative;
  /* necessário para posicionar vídeo dentro */
  overflow: hidden;
  /* evita que o vídeo vaze para fora */
  display: flex;
  flex-direction: row;
  gap: 2vw;
  align-items: center;
  justify-content: center;
  padding-bottom: 1rem;
  color: rgb(27, 27, 27);
  text-align: center;

}

.secao-rodape {
  position: relative;
  /* necessário para posicionar vídeo dentro */
  overflow: hidden;
  /* evita que o vídeo vaze para fora */
  max-height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: rgb(255, 255, 255);
  text-align: center;
  /*backdrop-filter: blur(5px);*/
  background: #175780;
  /*border-top: 5px solid rgb(80, 0, 0);
  border-bottom: 5px solid rgb(80, 0, 0);*/
}

.secao-rodape a {
  color: rgb(241, 89, 0);
  text-decoration: none;
}

.espacamento1 {
  background: linear-gradient(rgba(0, 183, 255, 0.3) 0%, rgba(255, 255, 255, 0) 80%);
  min-height: 40vh;
}

.espacamento2 {
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(0, 183, 255, 0.3) 80%);
  min-height: 40vh;
}

.secao-seguradoras {
  position: relative;
  /* necessário para posicionar vídeo dentro */
  overflow: hidden;
  /* evita que o vídeo vaze para fora */
  max-height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 2vh;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: rgb(27, 27, 27);
  text-align: center;
  /*backdrop-filter: blur(5px);*/
  background: rgba(255, 255, 255, 1);
  /*border-top: 5px solid rgb(80, 0, 0);
  border-bottom: 5px solid rgb(80, 0, 0);*/
  box-shadow: 0px -2px 22px 5px rgba(0, 0, 0, 0.2);

}

.secao-seguradoras p {
  max-width: 50vw;
}

.seguradoras {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  margin-bottom: 2rem;
  width: 80vw;
}


.secao-depoimentos {
  position: relative;
  /* necessário para posicionar vídeo dentro */
  overflow: hidden;
  /* evita que o vídeo vaze para fora */
  max-height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 2vh;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: rgb(27, 27, 27);
  text-align: center;
  /*backdrop-filter: blur(5px);*/
  background: rgba(255, 255, 255, 1);
  /*border-top: 5px solid rgb(80, 0, 0);
  border-bottom: 5px solid rgb(80, 0, 0);*/
  box-shadow: 0px -2px 22px 5px rgba(0, 0, 0, 0.2);
}

.secao-depoimentos p {
  max-width: 90vw;
}

.depoimentos {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(600px, 2fr));
  margin-bottom: 2rem;
  max-width: 80vw;
  justify-items: center;
  justify-content: center;
}

.sobre {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  margin-bottom: 2rem;
  width: 90vw;
}

.secao-contatos {
  position: relative;
  /* necessário para posicionar vídeo dentro */
  overflow: hidden;
  /* evita que o vídeo vaze para fora */
  max-height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 2vh;
  align-items: center;
  justify-content: center;
  color: rgb(27, 27, 27);
  text-align: center;
  /*backdrop-filter: blur(5px);*/
  background: rgba(255, 255, 255, 1);
  /*border-top: 5px solid rgb(80, 0, 0);
  border-bottom: 5px solid rgb(80, 0, 0);*/
  box-shadow: 0px -2px 22px 5px rgba(0, 0, 0, 0.2);
}

.contatos {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 2rem;
  width: 70vw;
}

.contatos p {
  font-size: 1rem;
}

.contatos h2 {
  font-size: 1.3rem;
}

.contatos ion-icon {
  font-size: 2rem;
  color: #175780;

}


.contato {
  display: flex;
  flex-direction: row;

}

.depoimentos ion-icon {
  font-size: 60px;
  /* ou 2rem, 1.5em etc. */
  color: #175780;
  transition: all 0.3s ease;
}

.sobre ion-icon {
  font-size: 60px;
  /* ou 2rem, 1.5em etc. */
  color: #175780;
  transition: all 0.3s ease;
}

.contato ion-icon {
  font-size: 60px;
  /* ou 2rem, 1.5em etc. */
  color: #175780;
  transition: all 0.3s ease;
}

.div-redes-sociais ion-icon {
  font-size: 2rem;
  /* ou 2rem, 1.5em etc. */
  color: rgb(255, 255, 255);
  transition: all 0.3s ease;
}

.div-redes-sociais ion-icon:hover {
  color: rgb(0, 195, 255);


}

.cards-sobre {
  background: rgb(245, 245, 245);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  max-width: 400px;
  min-width: 400px;
  margin: 20px auto;
  transition: transform 0.3s;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cards-sobre:hover {
  transform: scale(1.05);
}

.cards-sobre img {
  width: 50%;
  display: block;
}

.cards-sobre-content {
  padding: 1.2rem;
  color: #333;
}

.cards-sobre-content h2 {
  margin-bottom: 0.5rem;
}

.cards-sobre-content p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.cards-sobre .botao {
  display: inline-block;
  background-color: #500000;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
}

.card-contato {
  background: rgb(245, 245, 245);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  max-width: 400px;
  min-width: 400px;
  margin: 20px auto;
  transition: transform 0.3s;
  padding: 2rem;
}

.card-contato:hover {
  transform: scale(1.05);
}

.cards-seguradoras {
  background: rgb(245, 245, 245);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  max-width: 400px;
  min-width: 400px;
  margin: 20px auto;
  transition: transform 0.3s;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
}

.cards-seguradoras:hover {
  transform: scale(1.05);
}

.cards-seguradoras img {
  width: 50%;
  display: block;
  margin-bottom: 50px;
}

.cards-seguradoras-content {
  padding: 1.2rem;
  color: #333;
}

.cards-seguradoras-content h2 {
  margin-bottom: 0.5rem;
}

.cards-seguradoras-content p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}


.cards-depoimentos {
  background: rgb(245, 245, 245);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  max-width: 600px;
  min-width: 600px;
  transition: transform 0.3s;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cards-depoimentos:hover {
  transform: scale(1.05);
}

.cards-depoimentos img {
  width: 50%;
  display: block;
}

.cards-depoimentos-content {
  padding: 1.2rem;
  color: #333;
}

.cards-depoimentos-content h2 {
  margin-bottom: 0.5rem;
}

.cards-depoimentos-content p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.cards-depoimentos .botao {
  display: inline-block;
  background-color: #500000;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
}

.cards-unidades {
  background: rgb(245, 245, 245);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  max-width: 400px;
  min-width: 400px;
  margin: 20px auto;
  transition: transform 0.3s;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 8rem;
}

.cards-unidades:hover {
  transform: scale(1.05);
}

.cards-unidades img {
  width: 50%;
  display: block;
}

.cards-unidades-content {
  padding: 1.2rem;
  color: #333;
}

.cards-unidades-content h2 {
  margin-bottom: 0.5rem;
}

.cards-unidades-content p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.cards-unidades ion-icon {
  font-size: 2rem;
  color:rgb(0, 140, 255)
}


.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 30px;
  background-color: #25D366;
  color: white;
  font-size: 30px;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-button:hover {
  transform: scale(1.3) rotate(360deg);
  box-shadow: 0 0px 16px 16px rgba(255, 255, 255, 0.5);
}

.iframe {
  margin-top: 10vh;
  min-height: 100vh;
  width: 100%;
}

#iframeContainer {
  width: 100%;
}

#iframeContainer iframe {
  border: none;
  width: 100%;
  min-height: 2000px;
  max-height: 10000px;
}

.faq-section {
  width: 100vw;
    background-color: rgba(255, 255, 255, 1);
}

.div-faq-section {
  width: 60vw;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: rgba(255, 255, 255, 0.9);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #222;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.accordion-header:hover {
  background: #f9f9f9;
}

.icon {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
}

.accordion-body p {
  margin: 15px 0;
  color: #555;
}


.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  max-width: 90vw;
  margin-inline: auto;

}

.secao-blog {
  background-color: #175780;
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 4rem;
  color: #ffff;
}

.blog-card {
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.blog-card:hover {
  transform: scale(1.03);
}

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.2rem;
}

.blog-content h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #175780;
}

.blog-content p {
  font-size: 0.95rem;
  color: #555;
}


.post-individual {
  max-width: 60vw;
  margin: 4rem auto;
  padding: 0 1rem;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.post-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.secao-post h1 {
  color: #175780;
  margin-bottom: 1.5rem;
}

.post-content {
  font-size: 1.1rem;
  line-height: 1.7;
}

.post-content p {
  padding-bottom: 2rem;
}

.post-content ul {
  padding-left: 2.5rem;
}

.container-unidades {
  display: flex;
  flex-direction: row;
  gap:2rem;
}

.unidade {
  display: flex;
  flex-direction: column;
}

.unidade h1 {
  font-size: 1.2rem;
}

.unidade p {
  margin-bottom: 0rem;
  font-size: 1rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1900px) {
  .sobre {

    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    width: 65%;
  }
}

@media (max-width: 768px) {
  .svg {
    width: 60vw;
  }

  .sobre {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    width: 100vw;
  }

  .colunas {
    flex-direction: column;
  }

  .contato {
    margin-top: 20vh;
    flex-direction: column;
    background-color: white;
  }

  .contato h2 {
    font-size: 18px;
  }

  .contato ion-icon {
    font-size: 40px;
    /* ou 2rem, 1.5em etc. */
    color: rgb(155, 119, 0);
    transition: all 0.3s ease;
  }


  .secao-sobre-a-rtz h1 {
    font-size: 18px;
  }

  .secao-sobre-a-rtz p {
    max-width: 100vw;
  }


  .card-contato {
    background: rgb(255, 255, 255);
    border-radius: 0px;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
    overflow: hidden;
    max-width: 400px;
    min-width: 400px;
    margin: 20px auto;
    transition: transform 0.3s;
    padding: 2rem;
  }

  .galeria {
    width: 95vw;
    gap: 0vw;
  }

  .secao-seguradoras {
    width: 100vw;
  }

  .seguradoras {
    width: 100vw;
  }

  .cards-depoimentos {
    max-width: 320px;
    min-width: 320px;
  }

   .cards-sobre {
    max-width: 320px;
    min-width: 320px;
  }
  .secao-sobre p {
    width: 90vw;
  }

  .contatos {
    width: 100vw;
  }
  .contatos p {
  font-size: 0.6rem;
}

.contatos h2 {
  font-size: 0.8rem;
}

.contatos ion-icon {
  font-size: 1.5rem;
  color: #175780;

}

.div-redes-sociais {
  width: 80vw;
  gap: 2rem;
}

.div-faq-section {
  width:95vw;
}
.post-individual {
  max-width: 90vw;
 
}

.hero-contato {

  padding-bottom: 10rem;
}

.hero-empresarial p {
  font-size: 1.2rem;
  max-width: 80vw;
}
.container-unidades {
  flex-direction: column;
}

.cards-unidades {
    margin-bottom: 0.5rem;
}
.cards-unidades-content h2 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.cards-unidades-content p {
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.cards-unidades ion-icon {
  font-size: 2rem;
  color:rgb(0, 140, 255)
}
}