@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat-Medium.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat-SemiBold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html,
body {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

main .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 30%;
  /* ajuste o tamanho conforme necessário */
  height: auto;
  text-align: center;
  padding: 30px;
}

main h1 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #FFFFFF;
  font-weight: 700;
}

main p {
  font-size: 18px;
  color: #FFFFFF;
  font-weight: 400;
}

main .video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  /* ou a altura desejada */
  overflow: hidden;
}

main .video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  z-index: 1;
}

main .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 71, 161, 0.9);
  z-index: 2;
}

main img {
  width: 70%;
  margin-bottom: 30px;
}

main .telefone {
  padding: 15px 0;
}

main .telefone p {
  margin-bottom: 8px;
  /* color: #0D47A1; */
  color: #FFFFFF;
}

main .telefone a {
  display: flex;
  align-items: center;
  font-size: 24px;
  color: #FFFFFF;
  font-weight: 600;
  gap: 15px;
  justify-content: center;
}

main .telefone a svg {
  width: 36px;
  height: 36px;
}

main .telefone a,
main .telefone a:visited {
  color: #FFFFFF;
  text-decoration: none;
}

main .telefone a:hover {
  text-decoration: underline;
}

main .whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 11;
}

@media (max-width: 1024px) {
  main .content {
    width: 60%;
  }
}

@media (max-width: 768px) {
  main .content {
    width: 90%;
  }

  main h1 {
    font-size: 24px;
  }

  main p {
    font-size: 16px;
  }

  main .telefone {
    font-size: 20px;
  }
}