* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
@font-face {
  font-family: "Gotham-Bold";
  src: url(fonts/GOTHAM-BOLD.TTF);
}
@font-face {
  font-family: "Gotham-Regular";
  src: url(fonts/GOTHAM-XLIGHT.TTF);
}
@font-face {
  font-family: "Gotham-Medium";
  src: url(fonts/GOTHAM-MEDIUM.TTF);
}
header {
  display: flex;
  justify-content: space-between;
  background-color: #3b4364;
  color: #fff;
  padding: 15px 150px;
  font-family: "Gotham-Bold";
  transition: 0.5s;
  width: 100%;
}
.header-socials,
.null {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-socials i,
.null i {
  color: #fff;
  padding: 0px 6px;
  display: flex;
  align-items: center;
  font-size: 25px;
  opacity: 0.9;
}
.header-socials i:hover {
  opacity: 1;
}
.header-title h2 {
  font-size: 20px;
}
.header-title i {
  font-size: 18px;
}

.null {
  opacity: 0;
  cursor: default;
  pointer-events: none;
}

nav {
  display: flex;
  background-color: #1c1b2d;
  justify-content: space-around;
  align-items: center;
  padding: 20px 0px;
  font-family: "Gotham-Bold";
  position: relative;
  transition: 0.5s;
}
.nav-extra {
  display: flex;
  background-color: #1c1b2d;
  justify-content: space-around;
  align-items: center;
  padding: 20px 0px;
  font-family: "Gotham-Bold";
  position: relative;
  transition: 0.5s;
}
nav.roll {
  display: none;
}
.nav-scroll {
  display: flex;
  background-color: #1c1b2d;
  justify-content: space-around;
  align-items: center;
  padding: 20px 0px;
  font-family: "Gotham-Bold";
  position: relative;
  transition: 0.5s;
}
.main-nav-scroll {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9999;
}
.main-nav-scroll.roll {
  display: grid;
  border-bottom: 1px solid #fff;
}
.nav-logo img {
  width: 250px;
}
.nav-buttons {
  display: flex;
  color: #fff;
  align-items: center;
}
.nav-buttons a {
  color: #fff;
}
.nav-buttons p:not(:last-child) {
  margin-right: 100px;
}
.nav-buttons p {
  opacity: 0.9;
  cursor: pointer;
}
.nav-buttons p:hover {
  opacity: 1;
}
.nav-message {
  border: 2px solid #fff;
  padding: 20px;
  border-radius: 10px;
}
.nav-message p {
  color: #fff;
  font-size: 20px;
  opacity: 0.9;
}
.nav-message p:hover {
  opacity: 1;
}

.first-container {
  background-image: url(img/main-image.png);
  height: 77vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.first-pag {
  display: grid;
  place-items: center;
}
.first-title {
  width: 900px;
  text-align: center;
  font-family: "Gotham-Bold";
  font-size: 30px;
  margin-bottom: 30px;
}
.first-subtitle {
  width: 1200px;
  text-align: center;
  font-family: "Gotham-Regular";
  font-size: 25px;
}
.strong-items {
  font-weight: 100;
  text-transform: uppercase;
  font-family: "Gotham-Bold";
}

.second-container {
  background-color: #000;
  height: 100vh; /* Ocupa toda a tela */
  position: relative; /* Permite posicionar os filhos de forma absoluta */
  display: flex;
  justify-content: center;
  align-items: center;
}

.second-background {
  position: absolute; /* Garante que o fundo fique atrás do conteúdo */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(img/background.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.1; /* Reduz opacidade apenas do fundo */
  z-index: 1; /* Define que o fundo fique atrás */
}
.second-pag {
  position: relative; /* Garante que o conteúdo fique acima do fundo */
  z-index: 2; /* Define que o texto fique acima do fundo */
  color: #fff; /* Define cor branca para o texto */
  font-family: "Gotham-Bold";
  width: 1300px;
}
.second-title h1 {
  font-size: 40px;
  margin-bottom: 20px;
  text-align: center;
}
.about-text p {
  font-size: 25px;
  line-height: 2;
  margin-bottom: 10px;
  text-align: left;
  text-align: justify;
  text-indent: 5rem;
  font-family: "Gotham-Regular";
  font-weight: 600;
}
.about-text p::first-letter {
  font-size: 3rem;
  line-height: 0;
  font-family: "Gotham-Bold";
}

.third-container {
  background-color: #1c1b2d;
  height: 100vh;
  font-family: "Gotham-Bold";
  color: #fff;
}
.workspace-title h1 {
  text-align: center;
  padding: 15px;
}
.space-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}
.box-image-text {
  display: grid;
  height: 600px;
  text-align: justify;
}
.first-image img {
  width: 600px;
  height: 600px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #fff;
}
.space-text {
  width: 500px;
  line-height: 1.3;
  margin-top: 10px;
  font-family: "Gotham-Regular";
  font-weight: 600;
}
.second-image img {
  width: 500px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #fff;
}

.fourth-container {
  background-color: #000;
  font-family: "Gotham-Bold";
  color: #fff;
}
.services-title h1 {
  text-align: center;
  padding: 25px;
}
.services-box {
  gap: 15px;
}
.top-box {
  display: flex;
  justify-content: center;
  gap: 75px;
}
.top-box img {
  width: 383px;
  border-radius: 10px;
  box-shadow: 0px 2px 8px 5px #fff;
}
.posto,
.restaurante,
.hotel,
.varejo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.top-box a {
  color: #fff;
}
.top-box p,
.bottom-box p {
  text-align: center;
  position: relative;
  top: -120px;
  border: 2px solid #fff;
  padding: 15px;
  background-color: #3b4364;
  border-radius: 10px;
  font-size: 20px;
  font-family: "Gotham-Regular";
  font-weight: 600;
  cursor: pointer;
  opacity: 0.9;
}
.bottom-box a {
  color: #fff;
}
.top-box p:hover,
.bottom-box p:hover {
  opacity: 1;
}
.bottom-box {
  display: grid;
  place-items: center;
}
.bottom-box img {
  border-radius: 10px;
  box-shadow: 0px 2px 8px 5px #fff;
}
#horizontal-image {
  width: 1303px;
}
#vertical-image {
  display: none;
}

.fifth-container {
  background-color: #1c1b2d;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fifth-background {
  position: absolute; /* Garante que o fundo fique atrás do conteúdo */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(img/suporte.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: contain;
  opacity: 0.3; /* Reduz opacidade apenas do fundo */
  z-index: 1; /* Define que o fundo fique atrás */
}
.fifth-pag {
  z-index: 2;
  font-family: "Gotham-Bold";
}
.fifth-title h1 {
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
}
.support-opt {
  background-color: #fff;
  width: 800px;
  opacity: 0.8;
  border-radius: 10px;
  text-align: justify;
}
.support-opt div {
  padding: 20px;
}
.support-opt li {
  margin-left: 60px;
  line-height: 1.2;
}
.support-opt i {
  color: #000;
  padding-right: 5px;
}

footer {
  background-color: #000;
  display: flex;
  color: #fff;
  font-family: "Gotham-Bold";
  justify-content: space-around;
  align-items: center;
  padding: 20px 0px;
}
.footer-logo img {
  width: 250px;
}
.footer-contact h3 {
  padding-bottom: 10px;
}
.footer-contact i {
  margin-right: 5px;
  font-size: 13px;
}
.socials-icons {
  text-align: center;
  padding-top: 10px;
}
.socials-icons i {
  color: #fff;
  font-size: 25px;
  padding: 0px 6px;
  align-items: center;
  opacity: 0.9;
}
.socials-icons i:hover {
  opacity: 1;
}

.copyright-section {
  background-color: #3b4364;
  color: #fff;
  font-family: "Gotham-Regular";
  font-weight: 600;
  text-align: center;
  padding: 15px;
}
.zap-button {
  text-align: center; /* Centraliza o conteúdo dentro da div */
  position: fixed;
  top: 85%;
  right: 10px; /* Fixe a div na borda direita */
  z-index: 8000;
  width: 80px; /* Defina uma largura específica */
  height: 80px; /* Defina uma altura específica */
  display: flex;
  justify-content: center;
  align-items: center;
}
.zap-button img {
  width: 100%; /* A imagem ocupará toda a largura da div */
  filter: drop-shadow(1px 6px 8px #fff);
  opacity: 0.9;
}
.zap-button img:hover {
  opacity: 1;
}
.footer-contact a {
  color: #fff;
}

/* Responsivo 480px */
@media (max-width: 480px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
    background-color: #000;
  }

  header {
    display: flex;
    padding: 10px 0;
  }
  .null i,
  .header-socials i {
    font-size: 13px;
  }
  .header-title h2,
  .header-title i {
    font-size: 12px;
  }
  .nav-logo img {
    width: 220px;
    text-align: center;
  }
  .nav-buttons,
  .nav-message {
    display: none;
  }
  .first-title {
    width: 370px;
    font-size: 40px;
  }
  .first-title h1 {
    font-size: 30px;
  }
  .first-subtitle {
    width: 400px;
    font-size: 20px;
  }
  .first-container {
    align-items: center;
    padding-top: 40px;
    height: 50vh;
  }
  .second-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .second-pag {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
  }
  .second-background {
    display: none;
  }
  .about-text p {
    font-size: 15px;
    text-indent: 2rem;
  }
  .about-text p::first-letter {
    font-size: 25px;
  }
  .about-text {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: inline-block;
    justify-content: center;
    align-items: center;
  }
  .second-title h1 {
    font-size: 30px;
  }
  .third-container {
    height: 95vh;
  }
  .workspace-title h1 {
    font-size: 30px;
  }
  .second-image {
    display: none;
  }
  .first-image img {
    width: 360px;
    height: 50%;
  }
  .first-image {
    margin: 0 auto;
  }
  .space-box {
    display: grid;
    gap: 10px;
    height: 95vh;
  }
  .space-text {
    width: 360px;
    font-size: 15px;
  }
  .top-box {
    display: grid;
    gap: 10px;
  }
  .top-box img {
    width: 300px;
  }
  .bottom-box img {
    width: 300px;
  }
  #horizontal-image {
    display: none;
  }
  #vertical-image {
    display: grid;
  }
  .fifth-container {
    height: 75vh;
  }
  .fifth-title h1 {
    margin-bottom: 20px;
    font-size: 30px;
  }
  .support-opt {
    width: 370px;
  }
  .support-opt li {
    font-size: 12px;
    margin-left: 30px;
  }
  .support-opt h2 {
    font-size: 16px;
  }
  .footer-logo img {
    width: 110px;
  }
  .footer-contact {
    width: 160px;
  }
  .footer-contact h3 {
    font-size: 12px;
  }
  .footer-contact p {
    font-size: 10px;
  }
  .socials-title h3 {
    display: none;
  }
  .socials-icons i {
    font-size: 15px;
  }
  #email-contact {
    display: none;
  }
  .copyright-section p {
    font-size: 13px;
  }
  .zap-button {
    top: 90%;
  }
  .zap-button img {
    width: 70%;
    opacity: 1;
  }
}

/* Responsivo maior que 480px e menor que 1300px*/
@media (min-width: 481px) and (max-width: 1300px) {
  html,
  body {
    background-color: #000;
  }
  body {
    width: fit-content;
  }
  .index-page main {
    width: fit-content;
  }
}
/* @media (max-width: 1300px) and (max-height: 400px) {
  .second-container {
    height: 180vh;
  }
  .third-container {
    height: 220vh;
  }
  .fifth-container {
    height: 190vh;
  }
}
@media (max-width: 1300px) and (min-height: 401px) and (max-height: 500px) {
  .third-container {
    height: 150vh;
  }
  .fifth-container {
    height: 130vh;
  }
}
@media (max-width: 1300px) and (max-height: 600px) {
  .third-container {
    height: 130vh;
  }
  .fifth-container {
    height: 130vh;
  }
} */
/* Para telas com altura máxima de 400px */
@media (max-width: 1400px) and (max-height: 450px) {
  .second-container {
    height: 180vh;
  }
  .third-container {
    height: 220vh;
  }
  .fifth-container {
    height: 190vh;
  }
}

@media (max-width: 480px) and (max-height: 900px) {
  .third-container {
    height: 87vh;
  }
}

/* Para telas com altura entre 401px e 500px */
@media (max-width: 1400px) and (min-height: 451px) and (max-height: 500px) {
  .third-container {
    height: 150vh;
  }
  .fifth-container {
    height: 130vh;
  }
}

/* Para telas com altura máxima de 600px */
@media (max-width: 1400px) and (min-height: 501px) and (max-height: 600px) {
  .third-container {
    height: 130vh;
  }
  .fifth-container {
    height: 130vh;
  }
}
@media (max-width: 1400px) and (min-height: 601px) and (max-height: 1300px) {
  .third-container {
    height: 100%;
    padding-bottom: 50px;
  }
  .fifth-container {
    height: 100%;
    padding: 50px 0px;
  }
}
@media (min-width: 1250px) and (max-width: 1400px) and (min-height: 601px) and (max-height: 1300px) {
  .third-container {
    height: 115vh;
  }
  .fifth-container {
    height: 130vh;
  }
}
@media (max-width: 480px) and (min-height: 601px) and (max-height: 1300px) {
  .third-container {
    height: 900px;
    padding: 30px 0px 30px 0px;
  }
  .fifth-container {
    height: 90vh;
  }
}

@media (min-width: 481px) and (max-width: 755px) {
  body.other-page {
    width: fit-content;
  }
  body.other-page footer img {
    width: 150px;
  }
  body.other-page .footer-contact p {
    font-size: 10px;
  }
  body.other-page .footer-contact h3 {
    font-size: 14px;
  }
  body.other-page .socials-title {
    font-size: 14px;
  }
  body.other-page .socials-icons i {
    font-size: 18px;
  }
}
@media (min-width: 755px) and (max-width: 821px) {
  body.other-page {
    width: fit-content;
  }
  body.other-page footer img {
    width: 200px;
  }
  body.other-page .footer-contact p {
    font-size: 13px;
  }
  body.other-page .footer-contact h3 {
    font-size: 16px;
  }
  body.other-page .socials-title {
    font-size: 16px;
  }
  body.other-page .socials-icons i {
    font-size: 22px;
  }
  body.other-page .header-title h2 {
    font-size: 15px;
  }
  body.other-page header {
    padding: 15px 75px;
  }
}
@media (min-width: 880px) and (max-width: 1300px) {
  .other-page {
    width: 100%;
  }
}
