@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  scroll-behavior: smooth;
}

/* Estiliza a barra de rolagem no Chrome e Safari */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: rgb(36, 177, 177);
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(8, 123, 123);
}

/* Evitar scroll horizontal e limitar largura da viewport */
html, body {
  max-width: 100vw;
  /* overflow-x: hidden; */
}

/* Cabeçalho fixo */
.cabeca {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000000;
  padding: 10px 90px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

/* Logo */
.logo img {
  width: 150px;
  height: auto;
  transition: opacity 0.3s ease-in-out;
}

/* Navegação */
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline;
  margin-right: 20px;
}

nav ul li:last-child {
  margin-right: 1rem;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
}


nav ul li a:hover {
  color: rgb(36, 177, 177);
}

/* estilização responsiva */

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 30px;
  height: 3px;
  background-color: rgb(36, 177, 177);
  margin: 3px 0;
}

@media screen and (max-width: 800px) {
  .menu-toggle {
    display: flex;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background-color: #000000;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
  }

  nav ul.active {
    display: flex;
    z-index: 1;
  }

  nav ul li {
    margin: 0;
    padding: 10px 0;
    text-align: center;
  }

  nav ul li:last-child {
    margin: 0;
  }

  .content-section {
    flex-direction: column;
  }

  .section {
    margin: 0 2rem;
  }

  /* Ajuste para evitar largura fixa em .photo */
  .photo {
    max-width: 100%;
    width: auto;
    height: auto;
  }

  .social-buttons {
    display: flex;
    flex-direction: column;
    margin-left: 0; /* Removido margin-left para evitar overflow */
    padding-left: 0;
  }

  .botao-1 {
    margin-bottom: 2rem;
  }
}

/* Inicio da primeira seção */

/* styles.css */
.content-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px;
  max-width: 100%; /* Garantir que não ultrapasse a largura da tela */
  overflow-wrap: break-word; /* Quebrar palavras longas para evitar overflow */
}

.text {
  flex: 1;
  padding: 20px;
}

.text h2,
p {
  margin-bottom: 1rem;
}

.text p {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 1px;
}

.image {
  flex: 1;
  text-align: center;
  cursor: pointer;
}

.image img {
  max-width: 85%;
  height: auto;
}

.image p {
  font-size: 18px;
  font-style: italic;
  font-weight: 200;
}

hr {
  margin: 3rem 20%;
  max-width: 100%;
  overflow-wrap: break-word;
}

/* inicio da segunda seção */
.product-reviews {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 2rem;
  max-width: 100%;
  overflow-wrap: break-word;
}

.review-card {
  width: 300px;
  border: 1px solid #ccc;
  padding: 20px;
  margin: 10px;
  text-align: center;
  box-sizing: border-box;
}

.visto {
  color: rgb(6, 219, 6);
  font-size: 40px;
}

.section-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.section-title h3 {
  letter-spacing: 2px;
  text-transform: uppercase;
}

.reviewer-info img {
  width: 80px;
  border-radius: 50%;
}

.rating {
  font-weight: bold;
  color: #c8cc49;
}

.review-text {
  margin-top: 10px;
}

/* Section do video */

.video-section {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.banner {
  width: 100%;
  height: 350px;
}

/* inicio da estilização da tela do app */

.section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 100%;
  box-sizing: border-box;
}

.left-content {
  flex: 1;
  padding: 20px;
  box-sizing: border-box;
}

.right-content {
  flex: 1;
  padding: 20px;
  box-sizing: border-box;
}

.title {
  font-size: 40px;
  font-weight: bold;
}

.title-2 {
  color: rgb(36, 177, 177);
}

.paragraph {
  font-size: 20px;
  font-weight: 300;
  margin-top: 10px;
  letter-spacing: 1px;
  margin-bottom: 3rem;
}

.social-buttons {
  display: flex;
  justify-content: space-around;
  margin-bottom: 2rem;
}

.social-button {
  width: 60px;
  height: 60px;
  background-color: #0077b5;
  border: none;
  border-radius: 50%;
  color: #fff;
  display: flex;
}

.social-button:last-child {
  margin-right: 0;
}

.new-buttons {
  display: flex;
  justify-content: space-around;
}

.img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.avaliacao {
  display: flex;
  justify-content: space-around;
  background-color: #000000;
}

.avaliacao img {
  margin: 2rem auto;
}

/* Personalização do rodapé */

footer {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
  background-color: #161616;
  color: #ffffff;
  padding: 15px;
  box-sizing: border-box;
}

.footer-logo img {
  max-width: 100px;
  display: block;
  margin-left: auto;  /* Centralizar melhor em telas pequenas */
  margin-right: auto;
}

.footer-logo p {
  margin: 10px 2px;
  text-align: left;
  letter-spacing: 1px;
}

.footer-social-icons {
  display: block;
  text-align: center;
}

.footer-social-icons a {
  color: #fff;
  text-decoration: none;
  font-size: 26px;
  margin: 1rem;
}

.footer-social-icons h2 {
  font-weight: 300;
  margin: 1rem;
}

.footer-social-icons a:hover {
  color: rgb(36, 177, 177);
}

#facebook:hover {
  color: #1877f2;
}

#youtube:hover {
  color: #ff0000;
}

#instagram:hover {
  color: #e4405f;
}

#tiktok:hover {
  color: #df002d;
}

#twitter:hover {
  color: #1da1f2;
}

.footer-social-icons h2 {
  color: rgb(36, 177, 177);
  letter-spacing: 2px;
}

#scroll-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #1ad9f2;
  color: #fff;
  padding: 10px;
  width: 50px;
  height: 50px;
  text-decoration: none;
  border-radius: 100%;
  font-size: 20px;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .menu-toggle {
    display: flex;
  }
}

@media screen and (max-width: 1000px) {
  .cabeca {
    padding: 10px 20px; /* padding menor para telas menores */
  }

  .logo img {
    width: 120px;
  }

  .video-section {
    height: 45vh;
  }
}

@media screen and (min-width: 800px) {
  .banner {
    display: none;
  }

  video {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  /* Ajustes para evitar overflow lateral */
  .cabeca {
    padding: 10px 10px; /* padding lateral reduzido */
  }

  .photo {
    width: 100%;
    max-width: 500px;
    height: auto;
  }

  .section {
    margin: 0 6px; /* margem lateral reduzida */
    display: flex;
    flex-direction: column;
  }

  .footer-logo img {
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 130px;
  }

  .footer-logo p {
    font-size: 14px;
    margin-left: 8px;
  }

  .text {
    padding: 5px;
  }

  .footer-social-icons h2 {
    font-weight: 300;
    margin: 1rem;
    letter-spacing: 0rem;
  }

  .footer-social-icons {
    margin-bottom: 1rem;
  }

  .footer-social-icons a {
    margin: 5px;
  }

  .fa-lg {
    font-size: 1em;
    line-height: 0.05em;
  }

  .avaliacao img {
    margin: 0px;
  }

  .content-section {
    margin: 8px;
  }

  .left


  .left-content {
    padding: 0px;
  }

  .social-buttons {
    margin-left: 4rem;
  }

  .right-content {
    flex: 1;
    padding: 0px;
  }

  footer {
    padding: 5px;
  }
}


.modal {
  display: flex; /* Nunca display: none */
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  margin: 0;
  font-size: 24px;
}

.modal-close {
  cursor: pointer;
  font-size: 24px;
  color: #333;
}

.modal-close:hover {
  color: rgb(36, 177, 177);
}

.modal-body {
  margin-top: 20px;
}

.modal-body p {
  font-size: 16px;
  line-height: 1.5;
}

.modal-footer {
  margin-top: 20px;
  text-align: right;
}

.modal-footer button {
  background-color: rgb(36, 177, 177);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

.modal-footer button:hover {
  background-color: rgb(8, 123, 123);
}
.profile-card {
  width: 300px;
  margin: 1rem;
  padding: 1rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.profile-card h2 {
  font-size: 20px;
  color: rgb(36, 177, 177);
  margin-bottom: 10px;
}

.profile-card p {
  font-size: 16px;
  color: #333;
}

.profile-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.profile-card:hover {
  transform: scale(1.05);
 visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

