/* Reset básico */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h3,
h4,
p,
button {
  margin: 0;
  padding: 0;
  font-family: inter-var, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;
  color: #fff;
}

/* Layout do body */
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  overflow-x: hidden; /* Remove overflow horizontal */
  background-color: #121214;
}

/* Navbar */
.nav-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  background-color: #171719;
  color: #fff;
  text-align: center;
  padding: 2rem;
}

header {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 3rem 2rem;
  margin-top: 4rem;
  gap: 20px;
  overflow-x: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 1rem;
}

.intro-image {
  width: 90%;
  position: relative;
  bottom: 80px;
}

.title-header-2 {
  font-size: 66.5px;
  color: #fff;
  font-style: normal;
  font-weight: 605;
  line-height: 1.1;
  font-size: 100px;
  letter-spacing: -0.04em;
  margin: 0;
  padding: 0;
  text-align: center;
  margin: 2rem 0;
}

.subtitle-header-2 {
  font-size: 1.5em;
  margin: 0.5em 0;
  color: #888;
  text-align: center;
  width: 100%;

  position: relative;
  bottom: 50px;
}

.content-button {
  position: relative;
  bottom: 50px;
}

@media (min-width: 1024px) {
  .intro-image {
    width: 70%;
    position: relative;
    bottom: 220px;
  }

  header .container .subtitle-header-2 {
    position: relative;
    bottom: 220px;
  }

  .content-button {
    position: relative;
    bottom: 220px;
  }
}

.title-header {
  font-size: 66.5px;
  color: #fff;
  font-style: normal;
  font-weight: 605;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0;
  padding: 0;
  text-align: left;
}

.subtitle-header {
  font-size: 1.5em;
  margin: 0.5em 0;
  color: #888;
  text-align: left;
  width: 100%;
}

.buy-now-button {
  border-radius: 8px;
  padding: 10px 40px;
  border: none;
  width: 100%;
  max-width: 500px;
  background-color: #8859ed;
  color: #fff;
  letter-spacing: 1px;
  font-weight: bold;
  height: 80px;
  cursor: pointer;

  font-size: 18px;
  margin-top: 1rem;
}

button:hover {
  background-color: #4b247b;
}

.container-image {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 50%;
}

.product-banner {
  max-width: 80% !important;
  height: auto;
  border-radius: none !important;
}

/* Responsividade para telas menores */
@media (max-width: 1024px) {
  header {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 2rem 1rem;

    margin-top: 4rem;
  }

  .container-image {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .title-header {
    font-size: 48px;
    text-align: center;
  }

  .title-header-2 {
    font-size: 48px;
    text-align: center;
  }

  .subtitle-header {
    font-size: 1.2em;
    max-width: 100%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
  }

  .buy-now-button {
    width: 100%;
  }

  .product-banner {
    max-width: 50% !important;
  }
}

main {
  width: 100%;
  max-width: 1200px;
  margin: auto;

  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Container principal */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Produto */
.container-about-product {
  background-color: #f6f5f4;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Imagem do produto */
.product-banner {
  width: 100%;
  max-width: 600px;
  border-radius: 15px;
}

.dalts {
  font-size: 1.5rem;
  font-weight: 400;
}

/* Estilos para h4 e p */
.container-about-product h4 {
  font-size: 1.5rem;
  color: #333;
  font-weight: 600;
}

.container-about-product p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Accordion */
.container-accordion {
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
}

.accordion {
  border-bottom: 1px solid #b7b7b7;
  cursor: pointer;
  transition: background 0.3s;
}

.question {
  padding: 1rem;
  font-weight: bold;
  color: #fff;
  background-color: #171719;
}

.question:hover {
  background-color: #333;
}

.container-intuitive {
  width: 100%;
  margin: 4rem auto;
}

.container-view {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  width: 100%;

  margin-top: 2rem;
}

.product-view {
  width: 100%;

  border-radius: 20px;
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .container-intuitive {
    margin: 3rem auto;
  }

  .container-view {
    margin-top: 1rem;
  }

  .product-view {
    width: 100%;

    border-radius: 5px;
    margin-top: 1rem;
  }
}

.answers {
  padding: 1rem;
  font-size: 1rem;
  color: #888888;
  background-color: #171719;
}

/* Footer */
footer {
  width: 100%;
  padding: 0.5rem;
  background-color: #171719;
  padding-top: 20px;

  display: flex;
  justify-content: center;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
  .title-header {
    font-size: 2rem;
  }

  header,
  .container-about-product {
    padding: 1rem;
  }

  .section-one,
  .section-two {
    text-align: center;
    max-width: 100%;
  }

  .product-banner {
    max-width: 100%;
  }
}

.text-center {
  text-align: center;
}

.container-price {
  margin: 4rem auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1168px;
  width: 100%;
  height: 484px;
  border-radius: 20px;
  border: 1px solid #b7b7b7;
}

.container-price .first-container {
  padding: 2rem;
}

.container-price .first-container .color {
  text-transform: uppercase;
  color: #8859ed;
  font-weight: bold;
}

.container-price .first-container .title-s {
  max-width: 700px;
}

.container-price .second-container {
  padding: 2rem;
  background-color: #121214;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 0 20px 20px 0;
}

.container-price .second-container .flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.container-price .second-container .flex-row span {
  background-color: #8859ed;
  border-radius: 6px;
  padding: 8px 1rem;
  color: #fff;
  font-weight: bold;
}

.container-price .second-container .full-price {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  margin: 2rem auto;
}

.container-price .second-container .full-price .prince-t {
  font-size: 20px !important;
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 2.4rem;
}

.container-price .second-container .full-price span {
  text-decoration: line-through;
  color: #fff;
}

.container-price .second-container .full-price h4 {
  font-size: 6.2rem;
  font-weight: 600;
  color: #fff;
}

.container-price .second-container .flex-row .price-t {
  color: #fff;
  margin-left: 20px;
}

.info-pay {
  color: #fff;
  text-align: center;
  margin-top: 2rem;
}

/* Estilos para tablets */
@media (max-width: 970px) {
  .container-price {
    grid-template-columns: 1fr;
    height: auto;
    border-radius: 20px;
  }

  .container-price .second-container {
    border-radius: 20px;
    padding: 1.5rem;
  }

  .container-price .first-container,
  .container-price .second-container {
    padding: 2rem;
  }

  .container-price .second-container .full-price h4 {
    font-size: 4rem;
  }
}

/* Estilos para dispositivos móveis */
@media (max-width: 480px) {
  .container-price {
    grid-template-columns: 1fr;
    margin: 2rem auto;
  }

  .container-price .first-container {
    margin: 2rem auto;
  }

  .container-price .first-container .title-s {
    max-width: 100%;
  }

  .container-price.second-container {
    border-radius: 0px 0px 0px 0px !important;
  }

  .container-price .second-container .full-price h4 {
    font-size: 3rem;
  }

  .container-price .second-container .full-price .prince-t {
    font-size: 1.8rem;
  }

  .container-price .second-container .flex-row span,
  .container-price .second-container .flex-row .price-t {
    font-size: 0.9rem;
  }

  .info-pay {
    margin-top: 1rem;
    font-size: 0.9rem;
  }
}

.color-r {
  color: #a391e7;
}

.organize-section {
  margin: 2rem 0;
}

.organize-m {
  margin: 2rem auto;
}
.organize-t {
  padding: 16px 24px;
  display: flex;
  justify-content: flex-start; /* Melhor alinhamento do texto e emoji */
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 6px;
  background-color: #171719;
  font-size: 18px;
  gap: 10px; /* Espaçamento entre o emoji e o texto */
}

.organize-t:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.h-button {
  height: 80px;
}

#particles-js {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
}
