/* RESET */
:root {
  --cor-principal: #0d6efd;
  --border: 0.1rem solid #0d6efd;
  font-size: 10px;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  text-decoration: none;
  transition: 0.2s linear;
  font-family: "Roboto", sans-serif;
}

/* Remove as setas do input type="number" e type="tel" */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

html,
body {
  overflow-x: hidden;
}

/* CABEÇALHO */
.logo img {
  width: 14rem;
}

.cabecalho {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}

.cabecalho.ativo {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cabecalho.sobre-video {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cabecalho section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  margin: 0 40px;
}
.icones a img {
  width: 3rem;
  margin-left: 1rem;
  color: #0d6efd;
}
.cabecalho nav {
  display: flex;
  align-items: center;
}
.navbar a {
  margin: 1rem;
  font-size: 2rem;
  font-weight: 500 !important;
  color: #1f3363;
}

.navbar a:hover {
  color: cadetblue;
  border-bottom: 0.1rem solid cadetblue;
  padding-bottom: 0.5rem;
  font-size: 2rem;
}

.cabecalho.sobre-video .navbar a {
  color: white;
}

.cabecalho.sobre-video .navbar a:hover {
  color: #f0f0f0;
  border-bottom-color: white;
}

.cabecalho.sobre-video .logo img {
  filter: brightness(0) invert(1);
}

.botao_mobile {
  display: none;
}

.mobile_navbar {
  display: none;
}

/* RESPONSIVO NAVBAR */
@media screen and (max-width: 1170px) {
  section .navbar,
  .icones {
    display: none;
  }

  .botao_mobile {
    display: block;
    font-size: 3.2rem;
    color: #1e3361;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    background: transparent;
    transform: translateY(-50%);
  }

  .mobile_navbar.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 20px;
    width: 220px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
    padding: 15px 0;
    z-index: 100;
  }

  .mobile_navbar a {
    font-size: 1.6rem;
    padding: 12px 20px;
    color: #1e3361;
    border-bottom: 1px solid #eee;
  }

  .mobile_navbar a:last-child {
    border-bottom: none;
  }

  .mobile_navbar a:hover {
    background: #f2f5ff;
    color: #0d6efd;
  }
}
@media screen and (max-width: 768px) {
  .cabecalho section {
    margin: 0 10px;
  }
}
/* INICIO */

.inicio_conteudo {
  position: relative;
  min-height: 100svh; /* altura correta para mobile moderno */
  display: flex;
  align-items: center;
  padding: 0 40px;
  overflow: hidden;
}

/* imagem de fundo */
.img_inicio {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* conteúdo */
.texto {
  max-width: 60rem;
}

.texto h3 {
  color: #1e3361;
  font-size: 6rem;
}

.texto p {
  color: #1e3361;
  font-size: 2rem;
  line-height: 1.5;
  padding: 1rem 0;
}

/* botão */

.btn_inicio {
  background: #1e3361;
  color: #fff;
  padding: 1rem 3rem;
  font-size: 1.7rem;
  border-radius: 30px;
  display: inline-block;
  margin-top: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.btn_inicio:hover {
  transform: translateY(-5px);
}

/* ===== RESPONSIVIDADE INICIO ===== */

/* PC */
@media (min-width: 1025px) {
  .inicio_conteudo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0)
    );
    z-index: 1;
  }

  .texto {
    position: relative;
    z-index: 2;
  }
}
/* Tablets */
@media (min-width: 768px) and (max-width: 1024px) {
  .texto h3 {
    font-size: 4.5rem;
  }

  .texto p {
    font-size: 1.8rem;
  }
  .img_inicio {
    object-position: 65% center;
  }
}
/* tablets pequenos */

@media (max-width: 768px) {
  .inicio_conteudo {
    padding: 0 25px;
  }

  .texto {
    max-width: 100%;
  }

  .texto h3 {
    font-size: 3.8rem;
  }

  .texto p {
    font-size: 1.6rem;
  }
  .img_inicio {
    content: url("../img/iniciomobile.jpg");
    object-position: center;
  }
}

/* celulares */

@media (max-width: 480px) {
  .inicio_conteudo {
    padding: 0 20px;
    align-items: flex-start;
  }
  .inicio_conteudo::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 45%;

    background: linear-gradient(
      to top,
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.3),
      rgba(255, 255, 255, 0)
    );
  }

  .texto {
    position: relative;
    z-index: 2;
  }

  .texto {
    margin-top: 75vh;
  }
  .texto h3 {
    font-size: 2.8rem;
    line-height: 1.2;
  }

  .texto p {
    font-size: 1.3rem;
  }

  .btn_inicio {
    font-size: 1.2rem;
    padding: 0.8rem 2rem;
  }
}
/* PAINEL CONTAGEM */
.painel_contagem {
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(to right, #1e3361, #143c77);
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  color: white;
  flex-wrap: wrap;
}

.painel_contagem .contagem {
  font-size: 1.7rem;
  width: 300px;
  margin: 20px;
  opacity: 0;
  transform: translateY(40px);
}

.painel_contagem .numero {
  font-size: 5rem;
  font-weight: 700;
}

/* RESPONSIVO CONTAGEM */
@media (max-width: 1024px) {
  .painel_contagem {
    flex-wrap: nowrap;
    justify-content: center;
    padding: 60px 20px;
  }

  .painel_contagem .contagem {
    width: 280px;
    margin: 0;
  }

  .painel_contagem .numero {
    font-size: 4rem;
  }
}

@media (max-width: 767px) {
  .painel_contagem {
    flex-wrap: nowrap;
    justify-content: center;
    padding: 50px 15px;
  }

  .painel_contagem .contagem {
    width: 220px;
    margin: 0;
  }

  .painel_contagem .numero {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .painel_contagem {
    flex-wrap: nowrap;
    justify-content: center;
    padding: 40px 10px;
  }

  .painel_contagem .contagem {
    width: 30%;
    margin: 0;
  }

  .painel_contagem .numero {
    font-size: 2.3rem;
  }

  .painel_contagem p {
    font-size: 1rem;
  }
}

/* ANIMAÇÕES */
@keyframes subirPulo {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  70% {
    opacity: 1;
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.painel_contagem.mostrar .contagem {
  animation: subirPulo 0.8s ease-out forwards;
}

.painel_contagem.mostrar .contagem:nth-child(1) {
  animation-delay: 0.2s;
}
.painel_contagem.mostrar .contagem:nth-child(2) {
  animation-delay: 0.4s;
}
.painel_contagem.mostrar .contagem:nth-child(3) {
  animation-delay: 0.6s;
}
/*  SOBRE  */
section.sobre {
  max-width: 100% !important;
  background-color: #fff;
}

/* TÍTULO SOBRE */
section .titulo_sobre {
  margin-top: 4rem;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 3rem;
  color: #183970;
}

section .titulo_sobre p {
  margin-top: 1rem;
  font-size: 1.8rem;
  color: #9ba0a6;
}
/* HISTÓRIA */
.container_historia {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  margin-top: 60px;
}

.container_historia img {
  width: 100px;
  border-radius: 80%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.icone_historia {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 500px;

  opacity: 0;
  transform: translateX(80px);
}

.icone_historia p {
  margin: 0;
  text-align: left;
  font-size: 1.4rem;
  font-weight: 500 !important;
  font-family: Arial, Helvetica, sans-serif !important;
}
/* RESPONSIVIDADE SOBRE */

/* TABLETS */
@media (max-width: 1024px) {
  section .titulo_sobre {
    font-size: 2.6rem;
  }

  section .titulo_sobre p {
    font-size: 1.6rem;
    padding: 0 20px;
  }

  .container_historia {
    gap: 40px;
    padding: 0 30px;
  }

  .icone_historia {
    max-width: 420px;
  }

  .icone_historia img {
    width: 90px;
  }
}
/* CELULAR GRANDE */
@media (max-width: 768px) {
  section .titulo_sobre {
    font-size: 2.3rem;
  }

  section .titulo_sobre p {
    font-size: 1.5rem;
  }

  .container_historia {
    flex-direction: column;
    align-items: center;
    gap: 35px;
  }

  .icone_historia {
    max-width: 90%;
    gap: 18px;
  }

  .icone_historia img {
    width: 85px;
  }
}
/* CELULAR PEQUENO */
@media (max-width: 480px) {
  section .titulo_sobre {
    font-size: 2rem;
  }

  section .titulo_sobre p {
    font-size: 1.3rem;
    padding: 0 15px;
  }

  .icone_historia {
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }

  .icone_historia img {
    width: 65px;
  }

  .icone_historia p {
    font-size: 1.2rem;
  }
}
/* TÍTULO CAIXAS */
.titulo_caixas {
  width: 100%;
  margin-top: 80px;
  text-align: center;
}

.titulo_caixas h3 {
  font-size: 3rem;
  font-weight: 700;
  color: #1e3361;
}

/* ANIMAÇÃO */
@keyframes rightToLeft {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* CAIXAS */
.container_caixas {
  display: grid;
  grid-template-columns: repeat(3, 300px);
  justify-content: center;
  gap: 80px;
  margin-top: 60px;
}

/* CAIXA */
.caixa {
  width: 300px;
  height: 180px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #1e3361, #143c77);
  border-radius: 15px;
  border-left: 4px solid #000000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: 0.4s ease;
}

/* TÍTULO CAIXA */
.caixa h3 {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* DESCRIÇÃO */
.caixa p {
  opacity: 0;
  max-height: 0;
  text-align: center;
  font-size: 1.2rem;
  color: #ffffff;

  transform: scale(0.8);
  transition:
    opacity 0.4s ease,
    max-height 0.4s ease,
    transform 0.4s ease;
}

/* HOVER */
.caixa:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.caixa:hover h3 {
  opacity: 0;
  transform: scale(0.9);
}

.caixa:hover p {
  opacity: 1;
  max-height: 300px;
  transform: scale(1);
}

/* ACTIVE STATE (para mobile/tablet) */
.caixa.active {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.caixa.active h3 {
  opacity: 0;
  transform: scale(0.9);
}

.caixa.active p {
  opacity: 1;
  max-height: 300px;
  transform: scale(1);
}

/*   Responsivo Caixas */

@media (max-width: 1024px) {
  .container_caixas {
    grid-template-columns: repeat(2, 300px);
    gap: 50px;
  }
}

@media (max-width: 768px) {
  section.sobre {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .container_caixas {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .caixa {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .container_caixas {
    grid-template-columns: 90%;
  }

  .caixa {
    width: 100%;
    height: 160px;
  }

  .caixa h3 {
    font-size: 1.8rem;
  }
}
/* SERVIÇOS */
.video-bg-servicos {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.video-bg-servicos video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.servicos-sec {
  position: relative;
  min-height: 100vh;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 70px 0 0 0 !important;
  background: none !important;
  color: #fff;
  overflow: hidden;
}

.servicos-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px;
  text-align: center;
}

.titulo-servicos {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease-out;
}

.titulo-servicos.mostrar {
  opacity: 1;
  transform: translateY(0);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-items: center;
}

.servico-item {
  min-width: 250px;
  max-width: 300px;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease-out;
}

.servico-item.mostrar {
  opacity: 1;
  transform: translateY(0);
}

.servico-item:nth-child(1).mostrar {
  transition-delay: 0.1s;
}
.servico-item:nth-child(2).mostrar {
  transition-delay: 0.2s;
}
.servico-item:nth-child(3).mostrar {
  transition-delay: 0.3s;
}
.servico-item:nth-child(4).mostrar {
  transition-delay: 0.4s;
}
.servico-item:nth-child(5).mostrar {
  transition-delay: 0.5s;
}
.servico-item:nth-child(6).mostrar {
  transition-delay: 0.6s;
}

.servico-icon {
  width: 90px;
  height: 90px;
  object-fit: contain;
  padding: 10px;
  margin-bottom: 20px;
}

.servico-item h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.btn-servico {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 1.4rem;
  color: #00304d;
  background: #00eaff;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn-servico:hover {
  transform: translateY(-3px);
  background: #07c9d1;
}

/* RESPONSIVO SERVIÇOS */
/* SERVIÇOS - NOTEBOOK */
@media (max-width: 1025px) {
  .servicos-container {
    padding: 100px 20px;
  }

  .titulo-servicos {
    font-size: 3rem;
    margin-bottom: 40px;
  }

  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .servico-item {
    max-width: 260px;
  }

  .servico-icon {
    width: 80px;
    height: 80px;
  }

  .servico-item h3 {
    font-size: 1.8rem;
  }
}
/* SERVIÇOS - TABLET */
@media (max-width: 1024px) {
  .servicos-container {
    padding: 100px 20px;
  }

  .titulo-servicos {
    font-size: 3rem;
    margin-bottom: 40px;
  }
  .video-bg-servicos {
    background-image: url("../img/fotomobile.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  /* ESCONDE o vídeo */
  .video-bg-servicos video {
    display: none;
  }
  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .servico-item {
    max-width: 260px;
  }

  .servico-icon {
    width: 80px;
    height: 80px;
  }

  .servico-item h3 {
    font-size: 1.8rem;
  }
}

/*  SERVIÇOS - TABLET */
@media (max-width: 768px) {
  .servicos-sec {
    min-height: auto;
  }

  .servicos-container {
    padding: 80px 20px;
  }
  .video-bg-servicos {
    background-image: url("../img/fotomobile.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  /* ESCONDE o vídeo */
  .video-bg-servicos video {
    display: none;
  }
  .titulo-servicos {
    font-size: 2.6rem;
    margin-bottom: 35px;
  }

  .servicos-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .servico-item {
    max-width: 320px;
  }

  .servico-icon {
    width: 70px;
    height: 70px;
  }

  .servico-item h3 {
    font-size: 1.7rem;
  }

  .btn-servico {
    font-size: 1.3rem;
    padding: 9px 18px;
  }
}

/*  SERVIÇOS - MOBILE */
@media (max-width: 480px) {
  .servicos-container {
    padding: 60px 15px;
  }

  .titulo-servicos {
    font-size: 2.2rem;
    margin-bottom: 30px;
    padding: 0 10px;
  }
  .video-bg-servicos {
    background-image: url("../img/fotomobile.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  /* ESCONDE o vídeo */
  .video-bg-servicos video {
    display: none;
  }

  .servico-item {
    max-width: 100%;
  }

  .servico-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .servico-item h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .btn-servico {
    font-size: 1.2rem;
    padding: 8px 16px;
  }
}
/* CLIENTES */
.titulo_clientes {
  margin: 8rem 0 40px;
  text-align: center;
}

.titulo_clientes h3 {
  font-size: 3.5rem;
  color: #1f3363;
}

.titulo_clientes p {
  margin-top: 1rem;
  font-size: 1.6rem;
  color: #9ba0a6;
}

.carousel {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  overflow: hidden;
  background: #fff;
  padding: 20px 0;
}

.track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.group {
  display: flex;
}

.item {
  width: 240px;
  height: 140px;
  margin: 0 20px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  transition: 0.3s ease;
}

.item img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.item:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* VERSIONAMENTO CARROSSEL */

/* CLIENTES - NOTEBOOK */
@media (max-width: 1024px) {
  .titulo_clientes h3 {
    font-size: 3rem;
  }

  .titulo_clientes p {
    font-size: 1.4rem;
  }

  .item {
    width: 200px;
    height: 120px;
    margin: 0 15px;
  }

  .item img {
    max-width: 75%;
    max-height: 75%;
  }

  .track {
    animation: scroll 45s linear infinite;
  }
}

/* CLIENTES - TABLET */
@media (max-width: 768px) {
  .carousel {
    padding: 15px 0;
  }
  #clientes {
    background: #ffffff;
  }

  .carousel {
    background: #ffffff;
  }

  .item {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    background: #ffffff;
  }
  .item {
    width: 170px;
    height: 100px;
    margin: 0 12px;
  }

  .item img {
    max-width: 70%;
    max-height: 70%;
  }

  .track {
    animation: scroll 30s linear infinite;
  }
}

/* CLIENTES - MOBILE */
@media (max-width: 480px) {
  .titulo_clientes {
    margin: 5rem 0 25px;
  }

  .titulo_clientes h3 {
    font-size: 2.2rem;
  }

  .titulo_clientes p {
    font-size: 1.2rem;
    padding: 0 15px;
  }

  .carousel {
    padding: 10px 0;
  }

  .item {
    width: 140px;
    height: 85px;
    margin: 0 10px;
    border-radius: 10px;
  }

  .item img {
    max-width: 65%;
    max-height: 65%;
  }

  .track {
    animation: scroll 30s linear infinite;
  }
}
/* DEPOIMENTOS */
.depoimentos_clientes {
  margin: 3rem 0 40px;
  text-align: center;
}

.depoimentos_clientes h3 {
  font-size: 3.5rem;
  color: #1f3363;
}

.depoimentos_clientes p {
  margin-top: 1rem;
  font-size: 1.6rem;
  color: #9ba0a6;
}
@media (max-width: 768px) {
  .depoimentos_clientes h3 {
    font-size: 2.5rem;
  }
  .depoimentos_clientes p {
    font-size: 1.4rem;
    padding: 0 20px;
  }
}
/* AVALIAÇÕES */
.avaliacoes {
  display: flex;
  justify-content: center;
  margin-top: 6rem;
  gap: 40px;
  flex-wrap: wrap;
}

.avaliacao_img {
  max-width: 420px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.avaliacao img {
  width: 100%;
  max-width: 350px;
  height: auto;
}

.avaliacao_img:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* VERSIONAMENTO AVALIAÇÃO */

@media (max-width: 1200px) {
  .avaliacao {
    max-width: 360px;
  }
}
@media (max-width: 992px) {
  .avaliacoes {
    justify-content: center;
  }
  .avaliacao {
    flex: 0 0 45%;
  }
  .avaliacao:nth-child(3) {
    flex: 0 0 60%;
  }
}
@media (max-width: 768px) {
  .avaliacoes {
    gap: 30px;
  }
  .avaliacao {
    flex: 0 0 80%;
  }
}
/* CONTATO */
.contato {
  padding: 100px 0;
  background: #fff;
}

.titulo_contato {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
  text-align: center;
}

.titulo_contato h2 {
  font-size: 3.6rem;
  color: #1e3361;
  margin-bottom: 10px;
}

.titulo_contato p {
  font-size: 1.6rem;
  color: #9ba0a6;
  line-height: 1.6;
}

.contato-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
}

.formulario_contato,
.informacoes_contato {
  flex: 1;
  padding: 40px;
  border-radius: 18px;
}

.formulario_contato {
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.formulario_contato label {
  display: block;
  margin-top: 18px;
  font-size: 1.4rem;
  color: #1e3361;
}

.formulario_contato input,
.formulario_contato select,
.formulario_contato textarea {
  width: 100%;
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1.4rem;
  box-sizing: border-box;
  max-width: 100%;
}

.formulario_contato textarea {
  min-height: 120px;
  resize: vertical;
}

.formulario_contato input:focus,
.formulario_contato textarea:focus {
  border-color: #1e3361;
}

.formulario_contato button {
  margin-top: 25px;
  width: 100%;
  padding: 15px;
  border-radius: 30px;
  background: #1e3361;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  transition: 0.3s;
}

.formulario_contato button:hover {
  background: #143c77;
  transform: translateY(-2px);
}

/* ===== ANIMAÇÃO LOADING SPINNER ===== */

/* Animação de rotação */
@keyframes spinnerRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Texto do botão */
.btn-text {
  display: inline-block;
}

/* Spinner dentro do botão */
.btn-loader {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spinnerRotate 0.8s linear infinite;
}

/* Estado desabilitado do botão */
.formulario_contato button:disabled {
  opacity: 0.9;
  cursor: not-allowed;
}

.informacoes_contato {
  background: linear-gradient(180deg, #1e3361, #143c77);
  color: #fff;
  display: flex;
  flex-direction: column;
}

.info-item {
  margin-bottom: 30px;
}

.info-item h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.info-item p {
  font-size: 1.4rem;
  line-height: 1.6;
  opacity: 0.95;
}
/*  RESPONSIVIDADE CONTATO */

/* TABLETS */
@media (max-width: 1024px) {
  .contato {
    padding: 80px 0;
  }

  .titulo_contato h2 {
    font-size: 3rem;
  }

  .titulo_contato p {
    font-size: 1.5rem;
  }

  .contato-container {
    gap: 30px;
  }

  .formulario_contato,
  .informacoes_contato {
    padding: 30px;
  }
}
/* CELULAR */

@media (max-width: 768px) {
  .contato-container {
    flex-direction: column;
    gap: 20px;
  }

  .formulario_contato,
  .informacoes_contato {
    padding: 25px;
  }
  .informacoes_contato {
    margin-top: 40px;
  }
  .info-item {
    margin-bottom: 18px;
  }
  select {
    font-size: 16px;
  }
}
/* CELULAR PEQUENO */

@media (max-width: 480px) {
  .contato-container {
    gap: 15px;
  }

  .formulario_contato,
  .informacoes_contato {
    padding: 20px;
  }
  .informacoes_contato {
    margin-top: 40px;
  }
}
/* REDES SOCIAIS MOBILE */

.redes-mobile {
  display: none;
  text-align: center;
  padding: 5px 5px;
  margin: 20px 0;
  background: #ffffff;
}

.titulo-redes {
  font-size: 2.4rem;
  color: #1f3363;
  margin-bottom: 10px;
}

.redes-mobile p {
  font-size: 1.6rem;
  color: #9ba0a6;
  margin-top: 0.5rem;
  margin-bottom: 30px;
}

.redes-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.rede-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #1f3363;
  transition: 0.3s;
}

.rede-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.rede-item span {
  font-size: 1.3rem;
  font-weight: 600;
}

.rede-item:hover {
  transform: translateY(-5px);
}
/* NOTEBOOK (NÃO MOSTRA) */
@media (max-width: 1024px) {
  .redes-mobile {
    display: block;
  }
}

/* TABLET */
@media (max-width: 768px) {
  .redes-mobile {
    margin: 10px 0;
    padding: 25px 15px;
  }

  .titulo-redes {
    font-size: 2.2rem;
  }

  .redes-mobile p {
    font-size: 1.4rem;
    margin-bottom: 40px;
  }

  .rede-item img {
    width: 45px;
    height: 45px;
  }
}

/*  MOBILE */
@media (max-width: 480px) {
  .redes-mobile {
    margin: 5px 0;
    padding: 20px 15px;
  }
  .titulo-redes {
    font-size: 2rem;
  }

  .redes-mobile p {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }

  .redes-container {
    gap: 20px;
  }

  .rede-item img {
    width: 40px;
    height: 40px;
  }

  .rede-item span {
    font-size: 1.2rem;
  }
}
/* RODAPÉ */
.rodape {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  margin-top: 80px;
}

.rodape .wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.logo_footer {
  position: absolute;
  bottom: 20px;
  left: 40px;
  z-index: 2;
}

.logo_footer img {
  width: 160px;
}

.footer_itens {
  position: absolute;
  bottom: 30px;
  right: 100px;
  z-index: 2;
  display: flex;
  gap: 30px;
  color: #fff;
  font-size: 1.2rem;
}
/* RESPONSIVIDADE RODAPÉ - TABLET */
/* Full HD */
@media (min-width: 1440px) {
  .rodape {
    height: 230px;
  }
}
@media (max-width: 1024px) {
  .rodape {
    height: 140px;
  }

  .logo_footer img {
    width: 140px;
  }

  .footer_itens {
    right: 100px;
    font-size: 1.1rem;
  }
}
/* RESPONSIVIDADE RODAPÉ - CELULAR */
@media (max-width: 768px) {
  .rodape {
    height: 200px;
  }

  .logo_footer {
    left: 50%;
    transform: translateX(-50%);
    bottom: 70px;
  }

  .logo_footer img {
    width: 130px;
  }

  .footer_itens {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 25px;
    text-align: center;
    font-size: 1rem;
  }
}
/* RESPONSIVIDADE RODAPÉ - CELULAR PEQUENO */
@media (max-width: 480px) {
  .rodape {
    height: 180px;
  }

  .logo_footer img {
    width: 110px;
  }

  .footer_itens {
    font-size: 0.9rem;
    padding: 0 20px;
  }
}
/* BOTÃO WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #44ad3a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}
