/* SEÇÃO CABEÇALHO */

/* * {
  outline: 1px solid red;
} */

/* CABEÇALHO */

.header {
  position: fixed;
  background: var(--cor-texto);
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
}

.container-header {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  height: 8rem;
  margin: 0 3rem;
}

.logo img {
  display: flex;
  max-height: 8rem;
  align-items: center;
}

.nav-menu ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 1.4rem;
}

.nav-menu ul a {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  color: var(--cor-texto-2);
  text-decoration: none;
  transition: color 0.3s;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.container-header .nav-menu ul li a.link-politica {
  display: none;
}

.nav-menu ul li a:hover {
  color: var(--cor-destaque);
  font-weight: 800;
  transform: scale(1.1);
}

.menu-toggle,
.menu-close {
  display: none;
}

/* SEÇÃO HERO */

.hero {
  height: 93vh;
  position: relative;
  overflow: hidden;
  margin-top: 5rem;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.7s ease-in-out;
  will-change: transform;
}

.slide {
  display: flex;
  background-size: cover;
  background-position: center;
  width: 33.333%;
  height: 100%;
  position: relative;
  align-items: center;
  padding: 0 5%;
}

.banner-slide-1 {
  background-image: url("/img/banners/fm-empresa-2.webp");
}

.banner-slide-2 {
  background-image: url("/img/banners/split-chao-teto.webp");
}

.banner-slide-3 {
  background-image: url("/img/banners/trabalho-rapel.webp");
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.slide-content {
  position: relative;
  max-width: 80rem;
  color: #fff;
  padding: 2rem;
  z-index: 2;
}

.slide-content h1 {
  font-size: 4rem;
  text-shadow: 0.2rem 0.1rem #050505;
  margin-bottom: 2.4rem;
}

.slide-content h3 {
  font-size: 2.6rem;
  line-height: 1.5;
  text-shadow: 0.2rem 0.1rem #050505;
  margin-bottom: 3rem;
}

.btn {
  display: inline-block;
  background-color: var(--cor-btn);
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--cor-texto-2);
  border: none;
  border-radius: 0.5rem;
  padding: 1.2rem 2.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: var(--cor-fundo-escuro);
  color: var(--cor-texto);
}

/* SETAS DO SLIDER */

.seta-deslizante {
  display: flex;
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  font-size: 1.4rem;
  color: white;
  width: 3.5rem;
  height: 3.5rem;
  top: 50%;
  backdrop-filter: blur(5px);
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 500;
}

.seta-esquerda {
  left: 2rem;
}

.seta-direita {
  right: 2rem;
}

.seta-deslizante:hover {
  background: rgba(0, 51, 102, 0.9);
  border-color: #003366;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(0, 51, 102, 0.6);
}

/* SEÇÃO QUEM SOMOS */

.sobre-empresa {
  padding: 3rem 0;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin: 0 3rem;
}

.container-sobre {
  display: flex;
  align-items: center;
  max-width: 100%;
  width: 100%;
  justify-content: space-between;
  gap: 2rem;
}

.texto-sobre {
  flex: 1;
  min-width: 3rem;
}

.texto-sobre h2 {
  font-size: var(--var-texto-h2);
  color: var(--cor-texto-2);
  text-shadow: 0.3rem 0.3rem 0.2rem rgba(0, 0, 0, 0.5);
  padding-bottom: 1rem;
}

.texto-sobre p {
  font-size: 1.5rem;
  color: var(--cor-texto-2);
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: 1rem;
}

.imagem-sobre {
  max-width: 60rem;
  overflow: hidden;
}

.imagem-sobre img {
  display: block;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
  border-radius: 1.5rem;
  max-width: 50rem;
  height: 40rem;
}

/* SEÇÃO IDENTIDADE INSTITUCIONAL */

.identidade-institucional {
  margin: 0 3rem;
}

.container-identidade {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  list-style: none;
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
  gap: 4rem;
}

.card {
  background-color: #ffffff;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  padding: 3rem;
  border-radius: 1rem;
}

.card:hover {
  transform: translateY(-1rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.548);
}

.icone-card i {
  font-size: 2.8rem;
  color: #003366;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0.2rem 0.1rem rgba(0, 0, 0, 1));
}

.card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #003366;
  margin-bottom: 1rem;
}

.card p {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 600;
  color: var(--cor-texto-2);
}

.card li a {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 600;
  color: var(--cor-texto-2);
}

/* SEÇÃO PARCEIROS - CARROSSEL */

.parceiros {
  background-color: rgba(21, 21, 85, 0.808);
  padding: 0 1rem;
  text-align: center;
}

.container-parceiros h2 {
  font-size: var(--var-texto-h2);
  color: var(--cor-texto);
  text-shadow: 0.2rem 0.2rem #050505;
  padding-top: 1rem;
}

.carousel-parceiros {
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
}

.carousel-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll 20s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.carousel-track img {
  height: 6rem;
  width: auto;
  filter: brightness(0) invert(1);
  object-fit: contain;
  margin: 0;
  pointer-events: none;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* SEÇÃO NOSSOS (SERVIÇOS) */

.servicos {
  padding-bottom: 3rem;
  margin: 0 3rem;
}

.servicos h2 {
  font-size: var(--var-texto-h2);
  color: var(--cor-texto-2);
  text-align: center;
  font-weight: bold;
  text-shadow: 0.3rem 0.3rem 0.2rem rgba(0, 0, 0, 0.5);
  padding: 2rem;
}

.grid-servicos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* SEÇÃO PORTFÓLIO */

.galeria-section {
  position: relative;
  width: auto;
  max-width: 100%;
  overflow: hidden;
  margin: 0 3rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: var(--var-texto-h2);
  color: var(--cor-texto-2);
  text-align: center;
  padding-top: 1.2rem;
  font-weight: bold;
  text-shadow: 0.3rem 0.3rem 0.2rem rgba(0, 0, 0, 0.4);
}

.section-title p {
  font-size: 3rem;
  line-height: 1.5;
  margin-top: 1rem;
  text-shadow: 0.2rem 0.1rem #050505;
}

.portfolio-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
  width: 100%;
  overflow: hidden;
}

.subtitulo-split {
  display: flex;
  justify-content: center;
  border-bottom: 0.3rem solid #ffc107;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.subtitulo-split h3 {
  font-size: 1.8rem;
  color: #003366;
  margin: 0;
}

.subtitulo-split i {
  font-size: 2rem;
  color: #ffc107;
  margin-right: 0.8rem;
}

.grid-interna {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.galeria-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
  height: 25rem;
  cursor: pointer;
  background: #000;
}

.galeria-item img,
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.galeria-item img:hover {
  transform: scale(1.1);
}

.galeria-item video:hover {
  transform: scale(1.1);
}

.overlay-galeria {
  opacity: 1;
}

.overlay-galeria {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 51, 102, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.overlay-galeria i {
  color: #fff;
  font-size: 3rem;
}

.paginacao-controles {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.btn-pag {
  background-color: transparent;
  border: 0.2rem solid #003366;
  color: #003366;
  font-size: 1.6rem;
  font-weight: bold;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-pag:hover {
  background-color: #003366;
  color: #fff;
}

.btn-pag.ativo {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #003366;
  transform: scale(1.1);
}

.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* AJUSTE DA GALERIA (LIGHTBOX) */

.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  padding: 4rem;
  box-sizing: border-box;
}

.lightbox-conteudo {
  display: block;
  position: relative;
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border: 0.2rem solid #922b21;
  border-radius: 0.8rem;
  box-shadow: 0 0 3rem rgba(0, 0, 0, 0.8);
  animation: zoom 0.4s ease-out;
  margin: auto;
}

.fechar-btn {
  display: flex;
  position: absolute;
  background-color: rgba(146, 43, 33, 0.9);
  top: 2rem;
  right: 2rem;
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  width: 4rem;
  height: 4rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
  z-index: 10001;
}

.fechar-btn:hover {
  background-color: #ffc107;
  color: #003366;
  transform: scale(1.1);
}

#video-ampliado {
  width: 100%;
  height: auto;
  max-height: 75vh;
  border-radius: 0.5rem;
  display: block;
}

/* SEÇÃO CONTATO */

.secao-contato {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding-top: 6rem;
  padding-bottom: 4rem;
  margin: 0 3rem;
}

.container-contato {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  align-items: center;
}

.contato-form form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1.8rem;
}

.contato-form input,
.contato-form textarea {
  font-size: 1.6rem;
  border: 0.1rem solid #ccc;
  border-radius: 1rem;
  padding: 1.2rem;
}

.btn-enviar:hover {
  background-color: var(--cor-destaque);
  color: var(--cor-texto);
}

form select {
  background-color: #fff;
  font-size: 1.6rem;
  color: var(--cor-destaque);
  border: 0.1rem solid #ccc;
  border-radius: 1rem;
  padding: 1rem;
}

form button[type="submit"] {
  background-color: var(--cor-btn);
  align-self: center;
  border-radius: 1.2rem;
  border: none;
  padding: 1rem 5.5rem;
  max-width: 50rem;
}

#contato-pagina {
  scroll-margin-top: 8rem;
}

.container-hero-mapa {
  margin: 0;
}

.container-hero-mapa iframe {
  border-radius: 1.6rem;
  width: 100%;
  height: 42rem;
}

/* SEÇÃO FOOTER */

.footer {
  background-color: #003366;
  color: #f1f1f1;
  padding: 3rem 4rem 1rem 8rem;
  font-size: 1.35rem;
  line-height: 1.6;
}

.container-footer {
  max-width: 130rem;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  text-align: center;
  justify-items: center;
}

.footer-col h4 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  font-weight: 700;
  border-bottom: 2px solid #4fc3f7;
  display: inline-block;
  padding-bottom: 0.5rem;
}

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

.footer-col ul li {
  margin-bottom: 1.2rem;
  color: #e0e0e0;
  transition: none;
  cursor: default;
}

.footer-col ul li:hover {
  color: #e0e0e0;
  padding-left: 0;
}

a.phone-link {
  text-decoration: none;
  color: #e0e0e0;
  transition: 0.3s;
  cursor: pointer;
  pointer-events: auto;
}

a.phone-link:hover {
  color: #25d366;
}

.contact-list .address-item {
  text-align: start;
}

.contact-list i {
  color: #4fc3f7;
  font-size: 1.5rem;
  margin-top: 0.3rem;
}

.email-item,
.phone-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  gap: 2rem;
}

.address-item {
  display: flex;
  align-items: center;
  cursor: default;
  padding-right: 2rem;
  text-decoration: none;
  gap: 2rem;
}

.redes-sociais {
  display: flex;
  gap: 5rem;
}

.redes-sociais a {
  font-size: 2.5rem;
  color: #ffffff;
  transition:
    transform 0.3s,
    color 0.3s;
  cursor: pointer;
}

.redes-sociais a:hover {
  color: #4fc3f7;
  transform: translateY(-0.3rem);
}

/* CHAMADA PARA AÇÃO (QUEM SOMOS / CONTATO) */

.chamada-contato {
  background: linear-gradient(to right, #2c2c66, #8a8aaa);
  text-align: center;
  color: var(--cor-texto-2);
  padding: 1.5rem 5rem;
}

.chamada-contato strong {
  text-shadow: 0.3rem 0.3rem #000000;
  color: var(--cor-texto);
}

.container-chamada h2 {
  font-size: var(--var-texto-h2);
  text-shadow: 0.3rem 0.3rem #000000;
  color: var(--cor-texto);
  margin-bottom: 1rem;
}

.container-chamada p {
  font-size: 2.3rem;
  line-height: 3rem;
  padding: 0 10rem;
  margin-bottom: 1rem;
}

.btn-hero {
  background-color: var(--cor-btn);
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
  color: #000;
  border-radius: 2.5rem;
  padding: 0.5rem 2rem;
}

.btn-hero:hover {
  background-color: var(--cor-destaque);
  color: var(--cor-texto);
}

/* BOTÃO WHATSAPP FLUTUANTE */

.btn-whatsapp-flutuante {
  display: flex;
  position: fixed;
  background-color: #25d366;
  right: 1.5rem;
  color: #fff;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.3);
  bottom: 2rem;
  z-index: 5000;
  animation: pulsar 1.5s infinite;
  transition: all 0.3s ease;
}

.btn-whatsapp-flutuante i {
  font-size: 3.5rem;
}

.btn-whatsapp-flutuante:hover {
  background-color: #43a0e4;
  transform: scale(1.1);
  animation: none;
}

.tooltip-texto {
  position: absolute;
  background-color: #333;
  font-size: 1.4rem;
  color: #fff;
  right: 7rem;
  border-radius: 0.5rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  padding: 0.5rem 1rem;
}

.btn-whatsapp-flutuante:hover .tooltip-texto {
  opacity: 1;
  visibility: visible;
  right: 7.5rem;
}

@keyframes pulsar {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 2rem rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Politica de Privacidade / Politica de Cookies */

.main-padding {
  padding-top: 12rem;
  margin: 0 4rem;
}

.container-lgpd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  max-width: 100%;
  height: 7rem;
  padding: 4rem;
}

.policy-section h1 {
  font-size: var(--var-texto-h2);
  color: var(--cor-texto-2);
  text-align: center;
  border-bottom: 0.2rem solid #eee;
  padding-bottom: 1.5rem;
}

.policy-content {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--cor-texto-2);
  padding: 3rem 0;
}

.policy-content h2 {
  font-size: 2.2rem;
  color: var(--cor-texto-2);
  margin-top: 3rem;
  padding-bottom: 1.5rem;
}

.policy-content h3 {
  font-size: 1.8rem;
  color: var(--cor-texto-2);
  margin-top: 2rem;
  padding-bottom: 1rem;
}

.policy-content p {
  color: var(--cor-texto-2);
  text-align: justify;
  padding-bottom: 1.5rem;
}

.links a:link,
.links a:visited {
  color: var(--cor-destaque);
  text-decoration: none;
}

/* --- BARRA DE POLÍTICAS --- */

.footer-legal {
  text-align: center;
  margin-top: 1rem;
}

.footer-legal a {
  display: inline-block;
  font-size: 1rem;
  text-decoration: none;
  color: #e0e0e0;
  transition: color 0.3s;
  cursor: pointer;
  padding-top: 1rem;
  margin: 0 2rem;
}

.footer-legal a:hover {
  color: #4fc3f7;
  text-decoration: underline;
}

.separator {
  color: #4fc3f7;
  font-size: 1.2rem;
}

.footer-bottom {
  font-size: 1.2rem;
  text-align: center;
  color: #c7bfbd;
}

.footer-privacidade {
  padding: 2rem;
}

.privacidade .footer-content {
  display: grid;
  grid-template-columns: 1fr;
}

.dev-link {
  color: #ff4500;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.2rem;
  margin-left: 5px;
  cursor: pointer;
}

/* PÁGINA AGRADECIMENTO */

.agradecimento-pagina {
  display: flex;
  flex-flow: column;
  background: #0a0a2a;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 0 8rem;
}

.agradecimento-pagina strong {
  font-size: 4rem;
  color: var(--cor-destaque);
  text-shadow: 0.1rem 0.1rem 0.3rem var(--cor-texto);
}

.agradecimento-pagina span {
  color: var(--cor-destaque);
  font-weight: 600;
  text-shadow: 0.1rem 0.1rem 0.3rem var(--cor-texto);
}

.agradecimento-pagina h1 {
  font-size: 3.2rem;
  color: #f5f5f5;
  margin-bottom: 3rem;
  font-weight: bolder;
}

.agradecimento-pagina p {
  font-size: 2.8rem;
  color: #f5f5f5;
  margin-bottom: 2rem;
  font-weight: bold;
}

.agradecimento-pagina .btn {
  padding: 1rem 2rem;
  background: var(--cor-btn);
  text-decoration: none;
  color: #101026;
  font-size: 1.8rem;
  transition: all 0.5s;
}

.agradecimento-pagina .btn:hover {
  border-radius: 1.6rem;
}

/* AJUSTE FINO VLIBRAS  */

[vw] {
  right: 1.5rem !important;
  left: auto !important;
  top: auto !important;
  bottom: 10rem !important;
  transform: none !important;
  z-index: 9000 !important;
}

.vw-access-button {
  margin: 0 !important;
}

/* BANNER LGPD */

.lgpd-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: hsla(240, 100%, 4%, 0.8);
  border-top: 0.1rem solid hsla(48, 100%, 50%, 0.4);
  padding: 2rem 0;
  z-index: 999999;
  box-shadow: 0 -0.5rem 1.5rem rgba(0, 0, 0, 0.3);
}

.lgpd-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 4rem;
  gap: 6rem;
}

.lgpd-content p {
  font-size: 1.4rem;
  font-weight: 200;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.lgpd-content a {
  color: hsla(48, 100%, 50%, 0.9);
  text-decoration: underline;
  font-weight: 400;
}

.lgpd-button {
  background-color: hsla(48, 100%, 50%, 0.75);
  color: #000;
  border: none;
  padding: 0.7rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 0.4rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.lgpd-button:hover {
  background-color: #ffffff;
  transform: scale(1.03);
}

/* SEÇÃO AVALIAÇÕES GOOGLE */

.avaliacoes-google {
  margin: 0 10rem;
}

.google {
  padding-left: 30rem;
}

.nav-menu .google a {
  padding-top: 1.3rem;
  font-size: 1rem;
}

.nav-menu .google a:hover {
  transform: none;
}
