@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
}

header {
  width: 100%;
}

.header-content {
  display: flex;
  align-items: center;
  width: 100%;
  overflow-x: hidden;
}

i {
  color: #FFF;
}

.header-icons {
  flex: 1; /* Ocupa o espaço necessário à esquerda */
  display: flex;
  gap: 1rem;
}

.header-icons a:hover i {
  animation: translateY 0.8s infinite alternate;
  color: #d34040;
}

@keyframes translateY {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-8px) scale(1.1);
  }
}
.header-button {
  border: 1px solid #FFF;
  padding: 8px 24px;
  border-radius: 4px;
  color: #FFF;
  justify-content: flex-end;
  background-color: transparent;
  transition: background-color 0.8s;
}

.header-button:hover {
  border: 1px solid #d34040;
  background-color: #d34040;
}

.header-logo {
  flex: 1;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
}

@media screen and (max-width: 768px) {
  .header-content {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .header-content i {
    margin-top: 16px;
    font-size: 34px;
  }
  .header-logo {
    display: flex;
  }
  .header-logo img {
    width: 160px;
    margin-top: 46px;
  }
  .header-button {
    display: none;
  }
}
.container {
  max-width: 1440px;
  overflow-x: hidden;
  margin: 0 auto;
  padding: 0 8px;
}

.bg-home {
  position: relative;
}

.bg-home::before {
  content: "";
  display: block;
  position: absolute;
  background-image: linear-gradient(to bottom, rgba(6, 18, 30, 0.1), #06121e), url("../assets/home-bg.jpg");
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
  opacity: 0.9;
}

.hero {
  color: #FFF;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.hero h1 {
  text-align: center;
  line-height: 150%;
  max-width: 940px;
  font-size: 48px;
}
.hero p {
  text-align: center;
  margin: 14px 0;
}

.button-contact {
  padding: 14px 28px;
  color: #FFF;
  background-color: #d94140;
  border: 0;
  font-size: 18px;
  font-weight: 600;
  margin: 14px 0;
}

.button-contact:hover {
  animation: scaleButton 0.8s alternate infinite;
}

@keyframes scaleButton {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}
@media screen and (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }
  .hero h1 {
    font-size: 34px;
    padding: 0 14px;
    width: 100%;
  }
  .hero p {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }
}
.about {
  background-color: #06121e;
  overflow: hidden;
  color: #FFF;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.about-content img {
  max-width: 600px;
}

.about-content div {
  flex: 1;
}

.about-description h2 {
  font-size: 38px;
  margin-bottom: 24px;
}
.about-description p {
  margin-bottom: 14px;
  line-height: 150%;
}

.bold {
  font-weight: 800;
}

.orange-text {
  color: #FF8528;
}

.gradient-text {
  color: transparent; /* Torna o texto transparente */
  background-image: linear-gradient(90deg, #d94140, #FF8528); /* Gradiente */
  -webkit-background-clip: text; /* Aplica o gradiente ao texto */
  background-clip: text;
}

@media screen and (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
}
.services {
  background-color: #FFF;
  color: #232224;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 14px;
}

.services-content h2 {
  text-transform: uppercase;
  text-align: center;
  font-size: 38px;
  margin-bottom: 14px;
}

.services-content p {
  line-height: 150%;
  margin-bottom: 14px;
  text-align: center;
  max-width: 780px;
}

.equipments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 44px 34px 44px;
}

.equipment {
  perspective: 1000px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #FFF;
  border-radius: 8px;
  box-shadow: 0px -1px 17px -4px rgba(255, 0, 0, 0.45);
  overflow: hidden;
}
.equipment img {
  width: 100%;
  max-width: 354px;
  height: 400px;
  transition: transform 0.2s;
}
.equipment .text-equipment {
  max-width: 354px;
  height: 400px;
  padding: 20px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
.equipment .equipment-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.equipment .equipment-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #333;
}
.equipment .equipment-details li i {
  font-size: 18px;
  color: transparent; /* Torna a cor do texto transparente */
  background-image: linear-gradient(90deg, #d94140, #FF8528); /* Gradiente desejado */
  -webkit-background-clip: text; /* Faz o gradiente ser aplicado ao texto */
  background-clip: text;
}

.equipment img:hover {
  transform: scale(1.2);
  z-index: 1;
}

.equipment-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 14px;
  background: linear-gradient(90deg, #d94140, #FF8528);
  z-index: 99;
}

.equipment-info button {
  color: #d34040;
  background-color: #FFF;
  padding: 4px 8px;
  border-radius: 4px;
  border: 0;
}

.equipment-info button:hover {
  animation: scaleButton 0.8s alternate infinite;
}

@media screen and (max-width: 768px) {
  .equipments {
    flex-direction: column;
  }
  .equipment img {
    height: 300px;
  }
  .text-equipment {
    height: 300px;
  }
}
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 0;
  gap: 24px;
  color: #FFF;
}
.footer p {
  text-align: center;
}

.footer-icons {
  display: flex;
  gap: 8px;
  color: #FFF;
}

.btn-whatsapp {
  position: fixed;
  bottom: 14px;
  right: 24px;
  z-index: 99;
}
.btn-whatsapp img {
  max-width: 74px;
  transition: transform 0.4s;
}
.btn-whatsapp img:hover {
  transform: scale(1.1);
}

.btn-whatsapp .tooltip-text {
  visibility: hidden;
  position: absolute;
  width: 120px;
  top: 8px;
  left: -144px;
  padding: 4px;
  border-radius: 8px;
  text-align: center;
  background-color: #232224;
  color: #FFF;
  opacity: 0;
  transition: opacity 0.4;
}

.btn-whatsapp:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .btn-whatsapp img {
    max-width: 64px;
  }
}
.advantages {
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 50px 0;
}

.advantages-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center; /* Centraliza o texto no eixo horizontal */
}

.advantages-content h2 {
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  font-size: 38px;
  margin-bottom: 14px;
}

.advantages-content p {
  color: #FFF;
  line-height: 150%;
  margin-bottom: 14px;
  text-align: center;
  max-width: 780px;
}

.carousel {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.carousel-item {
  min-width: 100%;
  position: relative;
}

.carousel-item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.carousel-caption {
  position: absolute;
  bottom: 10%;
  left: 10%;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px;
  border-radius: 5px;
}

.carousel-caption h3 {
  margin: 0;
  font-size: 1.5rem;
}

.carousel-caption p {
  font-size: 1rem;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 24px;
  transform: translateY(-50%);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.cameras {
  padding-top: 50px;
  perspective: 1000px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #FFF;
  box-shadow: 0px -1px 17px -4px rgba(6, 18, 30, 0.45);
  overflow: hidden;
}
.cameras .cameras-content h2 {
  text-transform: uppercase;
  text-align: center;
  font-size: 38px;
  margin-bottom: 14px;
}
.cameras .cameras-content p {
  line-height: 150%;
  margin-bottom: 14px;
  text-align: center;
  max-width: 780px;
}
.cameras .camera-video {
  display: flex;
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center; /* Centraliza verticalmente */
  margin: 20px auto; /* Adiciona margem automática */
  max-width: 100%; /* Garante que não ultrapasse o contêiner */
  overflow: hidden; /* Impede que elementos ultrapassem os limites do contêiner */
}
.cameras .camera-video video {
  width: 100%;
  max-width: 1200px; /* Define o tamanho máximo */
  height: 500px; /* Altura fixa */
  -o-object-fit: cover;
     object-fit: cover; /* Ajusta o poster e o vídeo para preencher */
  -o-object-position: center center;
     object-position: center center;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
  .camera-video video {
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center center;
       object-position: center center;
    max-height: 300px; /* Ajusta a altura máxima para telas menores */
    width: 100%; /* O vídeo ocupa 100% da largura da tela */
    height: auto; /* Mantém a proporção */
  }
}
body {
  font-family: "Sora", sans-serif;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow-x: hidden;
  background-color: #06121e;
}

button {
  font-family: "Sora", sans-serif;
  cursor: pointer;
}

svg {
  width: 100%;
}

img {
  width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
}

.header-icons {
  color: #FFF;
  display: flex;
  gap: 14px;
}

.header-icons a {
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #FFF;
  font-size: 16px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.header-icons a:hover i {
  animation: translateY 0.8s infinite alternate;
  color: #d34040;
}

.header-icons a:hover {
  animation: translateY 0.8s infinite alternate;
  color: #d34040;
}

@media (max-width: 768px) {
  /* O menu é ocultado em dispositivos móveis */
  .header-icons {
    display: none; /* Esconde os links no modo mobile */
    flex-direction: column;
    gap: 10px;
    width: 100%; /* Opcional, para garantir que ocupe toda a largura */
  }
  .header-button {
    display: block; /* Torna o botão visível */
    margin-top: 20px; /* Ajuste a distância conforme necessário */
  }
}/*# sourceMappingURL=style.css.map */