@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');


* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body,
html {
  overflow-x: hidden;
}

body {
  background: var(--default-color);
  font-size: 14px;
  font-family: 'Montserrat', 'Courier New', Courier, monospace;
}

:root {
  --font-size: clamp(14px, 3vw, 18px);
  --border-default: 1px solid #000;
  --default-color: #F7FFE0;
  --title-color: #303521;

  --flex-dir: column;
}

.container__section {
  max-width: 80%;
  margin: 0 auto;
}

/* Aux */

.border {
  border: var(--border-default);
}

.border-bottom {
  border-bottom: 1px solid #000;
}

.d-flex {
  display: flex;
}

.f-column {
  display: flex;
  flex-direction: column;
}

.all-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.d-title {
  color: var(--title-color);
  font-size: clamp(1.7rem, 2vw, 2rem);
}

.d-title-md {
  color: #000;
  font-size: clamp(1rem, 3vw, 1.6rem);
  font-weight: 500;
}

.d-title-sl {
  color: var(--title-color);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 650;
}

.button {
  border: none;
  cursor: pointer;
  margin-top: 20px;
  background: #303521;
  color: #fff;
  padding: 18px;
  font-size: clamp(16px, 3vw, 18px);
  border-radius: 50px;
  width: 400px;
  transition: .2s;
}

.button:hover {
  transform: scale(1.02);
  background: #434931;
  box-shadow: #000;
  box-shadow: 0 8px 16px rgba(10, 10, 10, 0.08);
}

p {
  font-size: var(--font-size);
}

/* sections */

#hero-upsell .alert h3 {
  font-weight: 400;
  text-align: center;
}

#hero-upsell .alert {
  background: #303521;
  padding: 15px;
  color: #fff;
}

#hero-upsell .box__info {
  text-align: center;
}

#hero-upsell .box__img {
  width: 100%;
}

#hero-upsell {
  box-sizing: border-box;
  height: auto;
}

#hero {
  height: 100vh;
}


#hero-container .box__img {
  width: 100%;
  /* height: 100%; */
}

#hero-container .box__img img {
  width: 70%;
}

.box__img,
.box__info {
  padding: 30px;
}

#hero-container {
  height: 100%;
}

#hero-container h3 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: clamp(20px, 3vw, 24px);
}

#hero-container p {
  font-weight: 500;
  font-size: clamp(14px, 3vw, 18px);
}

#learn .box__info {
  margin-top: 20px;
}

#immersion .container__section {
  margin-top: 50px;
}

#immersion .box__card {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, 420px);
  gap: 1.2rem;
}

#learn .box__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem;
}

.learn__img {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}

.etq {
  left: 0;
  bottom: 5%;
  position: absolute;
  color: #fff;
}

.fake-bullet::before {
  content: '•';
  display: inline-block;
  width: 1em;
  margin-right: 0.5em;
  color: currentColor;
}

.text-slider {
  overflow: hidden;
  border: solid 1px #949D7A;
  background: rgba(0, 0, 0, 0.10);
  padding: 1rem 0;
}

.text-slider__inner {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.text-slider__inner span {
  flex: none;
  display: inline-block;
  padding: 0 2rem;
  font-size: 1.25rem;
  white-space: nowrap;
  color: #333;
}

.learn__info li,
.learn__info p {
  font-size: 18px;
}

.learn__info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#learn-list ul li::marker {
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.5em;
}



#learn-list {
  border-left: 2px solid #434931;
  padding-left: 20px;
}

.learn__info li {
  margin-left: 20px;
  margin-top: 15px;
}

.learn__img img {
  width: 80%;
}

#learn__info-1 img,
#learn__info-2 img {
  margin-bottom: 20px;
}

#learn__info-1,
#learn__info-2 {
  text-align: center;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

#price p {
  font-size: var(--font-size);
}

#price .box__info h1 {
  text-align: center;
}

.price__info span {
  text-decoration: line-through;
}

.price__info {
  justify-content: space-between;
  margin-top: 20px;
  padding: 20px;
}

#price .box__info {
  width: 50%;
}

.card img {
  margin-top: 20px;
  margin-bottom: 5px;
}

.box__card {
  margin-top: 50px;
}

#immersion .box__info p {
  text-align: center;
  margin-top: 10px;
  font-size: var(--font-size);
}

.card h5 {
  font-weight: 400;
}

.card {
  padding: 25px;
  border-radius: 10px;
  border: solid 1px #303521;
}

#splide .box__info {
  margin-top: 50px;
}

.swiper-button-prev i,
.swiper-button-next i {
  font-size: 32px;
  color: #434931;
}

.swiper-button-prev,
.swiper-button-next {
  background: transparent;
}

.swiper {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  cursor: pointer;
  object-fit: cover;
}


#lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}


#lightbox-overlay img {
  width: 90%;
  max-height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

#lightbox-overlay:hover {
  cursor: default;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

.swiper-button-prev,
.swiper-button-next {
  color: transparent;
  font-size: 20px;
}

.swiper-pagination-bullet {
  background-color: #949D7A;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #303521;
}

#dra {
  background: #303521;
}

#dra .box__info {
  border-left: #fff solid 1px;
}

#dra .box__img {
  height: auto;
}

#dra .box__img img {
  width: 100%;
  border-radius: 10px;
}

#dra .box__info {
  height: auto;
  margin-top: 50px;
}

#dra .box__info p {
  text-align: left;
  font-size: var(--font-size);
  font-weight: 300;
}

#dra .container__section {
  margin-top: 50px;
  padding: 30px;
}

#dra .box__info h2 {
  width: 100%;
  text-align: left;
}

#dra .box__info p,
#dra .box__info h2 {
  color: #fff;
}

#invest .box__info {
  align-items: center;
  margin-top: 50px;
}

#invest .box__info h1 {
  text-align: center;
}

.invest-card {
  position: relative;
  font-size: var(--font-size);
  padding: 25px;
  padding-top: 50px;
  padding-bottom: 50px;
  border: solid 1px #303521;
  border-radius: 15px;
  margin-top: 50px;
  width: 55%;
}

.stamp img {
  width: 100%;
}

.stamp {
  right: -5%;
  bottom: -5%;
  width: 110px;
  height: 110px;
  position: absolute;
}

.subinfo {
  margin-top: 30px;
}

.subinfo p {
  margin-top: 15px;
  text-align: center;
}

.subinfo h4 {
  font-size: clamp(1.4rem, 3vw, 1.4rem);
  text-align: center;
}

.subinfo h4,
.subinfo span {
  color: #949D7A;
}

.invest__price {
  font-size: clamp(3.7rem, 6vw, 96px);
  color: #303521;
}

#invest-result span {
  text-decoration: none;
}

#invest-result {
  color: #F7FFE0;
  background: #303521;
}

.faq__info h1 {
  margin-bottom: 20px;
}

.faq__info p {
  margin-top: 15px;
}

.faq__info h3 {
  font-weight: 550;
}

.faq__info h4 {
  font-size: clamp(18px, 3vw, 24px);
}

.faq__info {
  font-size: var(--font-size);
  width: 40%;
  padding: 30px 0;
}

footer .box__info p {
  margin-top: 15px;
}

footer .box__img img {
  width: 100%;
}

footer .box__img {
  gap: 30px;
}


#testimony .box__info {
  width: 50%;
}

#testimony .box__info p {
  text-align: center;
  font-size: var(--font-size);
  margin-top: 25px;
}

.tks__info {
  padding: 20px;
}

.triade__button {
  padding: 30px;
  gap: 20px;
}

#choice-btn:hover,
#triade-btn:hover {
  background: #434931;
  color: #fff;
}

#choice-btn {
  border: 1px solid #303521;
  color: #303521;
  background: none;
}

#triade-btn {
  border: 1px solid #303521;
  color: #303521;
  background: none;
  width: 40%;
}

#triade .box__img,
#tanks .box__img img,
#tanks .box__img {
  /* background: #000; */
  width: 100%;
}

#triade .box__info {
  text-align: center;
}

#tanks .icon {
  width: 50px;
  height: 100%;
}

#tanks .box__info {
  width: 70%;
}

#support .box__info p {
  text-align: center;
}

#tks-video {
  width: 100%;
  border-radius: 15px;
}

#upsell-video {
  width: 60%;
  border-radius: 15px;
}

#box-upsell button {
  margin-bottom: 50px;
}

#box-upsell {
  text-align: center;
}

#btn-video {
  display: none;
}

#hero-container #box-tks {
  width: 100%;
  height: auto;
}

#box-tks video {
  width: 100%;
}

#container-spp {
  margin-top: 3rem;
  margin-bottom: 5rem;
}

.choice__bottom button {
  width: 50%;
}

.choice__bottom {
  gap: 30px;
}

.choice {
  gap: 90px;
  text-align: center;
  width: 100%;
}

#start .container__section .box__img img {
  width: 100%;
}


.start__info {
  height: 200px;
}

#start .container__section {
  margin-top: 50px;
}

#testimony .button {
  width: 50%;
}

#start .container__section .box__img {
  flex: 1;
  text-align: center;
}

#cisne .box__info h1 {
  color: #F7FFE0;
}

#cisne .box__info p {
  margin-top: 20px;
}

#cisne .box__info {
  padding: 50px 10px;
  color: #F7FFE0;
  text-align: center;
}

#cisne {
  background: #303521;
}

#cisne .container__section {
  margin-top: 50px;
}

.last-card .card {
  width: 45%;
  margin-top: 1.2rem;
}

.last-card {
  width: 100%;
}

#acess .container__section {
  margin-top: 50px;
}

#acess .container__section .box__info h1 {
  text-align: center;
}

#acess .container__section .box__info,
#acess .container__section .box__img {
  width: 100%;
}

#acess .container__section .box__img img {
  width: 100%;
}

footer {
  margin-top: 50px;
}

#upsell-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

#upsell-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

#upsell-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  max-width: 90%;
  width: 400px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

#upsell-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 20px;
  cursor: pointer;
}

#video-upsell {
  border-radius: 5px;
}


.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1000;
}

.modal.show {
  display: flex;
}

/* Conteúdo */
.modal-content {
  background: #fff;
  border-radius: .5rem;
  max-width: 400px;
  width: 100%;
  padding: 1.5rem;
  position: relative;
}

.close-btn {
  position: absolute;
  top: .5rem;
  right: .5rem;
  background: transparent;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: #555;
  transition: color .2s;
}

.close-btn:hover {
  color: #000;
}

/* Formulário */
.modal-form .field {
  margin-bottom: 1rem;
}

.modal-form label {
  display: block;
  font-size: .875rem;
  margin-bottom: .25rem;
}

.modal-form input {
  width: 100%;
  padding: .5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: .375rem;
  transition: border-color .2s;
}

.modal-form input:focus {
  border-color: #3b82f6;
}

.modal-form button[type="submit"] {
  width: 100%;
  background: #047857;
  color: #fff;
  padding: .75rem;
  font-size: 1rem;
  border: none;
  border-radius: .375rem;
  cursor: pointer;
  transition: background .2s;
}

.modal-form button[type="submit"]:hover {
  background: #065f46;
}

@media (max-width: 480px) {
  #upsell-modal {
    width: 90%;
    padding: 15px;
  }
}

@media (min-width: 1240px) {
  #video-upsell {
    width: 560px;
    height: 315px;
  }
}

@media (max-width: 480px) {
  #upsell-modal {
    width: 90%;
    padding: 15px;
  }
}

/* midia mobile */

@media (max-width: 1240px) {
  .container__section {
    max-width: 90%;
    margin: 0 auto;
  }

  #hero-upsell .box__img img {
    width: 100%;
  }

  #btn-hero {
    display: none;
  }

  #spin .container__section {
    margin-top: 500px;
  }

  #btn-video {
    display: block;
  }

  .swiper {
    height: 20%;
  }

  #hero-container {
    margin-top: 50px;
  }


  #video-upsell {
    aspect-ratio: 16/9;
    width: 100%;
    overflow: hidden;
  }

  #acess .container__section {
    flex-direction: column;
  }

  .last-card .card {
    margin-top: 3rem;
    width: 100%;
  }

  .last-card {
    width: 100%;
  }


  #start .start__info {
    height: 160px;
  }

  #start .container__section h1 br {
    display: none;
  }

  #start .box__bottom {
    flex-direction: column;
  }


  #hero-container #box-tks {
    margin-bottom: 50px;
  }

  .choice__bottom {
    flex-direction: column;
    gap: 30px;
  }

  .choice__bottom button {
    width: 100%;
  }

  #triade-btn {
    width: 100%;
  }

  #support .box__info {
    padding: 0;
  }

  .triade__button {
    padding: 0;
    gap: 0;
  }

  #triade .box__img img {
    width: 100%;
  }

  #triade .triade__button {
    flex-direction: column;
  }

  #triade .triade__info {
    flex-direction: column;
    /* background: #000; */
  }

  #tanks .box__info {
    margin-top: 50px;
    width: 100%;
  }

  #tanks .box__img {
    display: none;
  }

  #tanks .container__section {
    flex-direction: column;
  }

  #faq .box__info {
    margin-top: 50px;
  }


  .faq__info {
    font-size: var(--font-size);
    width: 90%;
    padding: 30px 0;
  }

  .invest-card .button {
    font-size: small;
  }

  #invest .box__info h1 br {
    display: none;
  }

  .invest-card {
    padding: 50px 15px;
    width: 100%;
  }

  .stamp {
    right: -5%;
    bottom: -5%;
    width: 80px;
    height: 80px;
    position: absolute;
  }


  #testimony .button {
    width: 100%;
  }

  #dra .container__section {
    flex-direction: column;
    padding: 0;
  }

  #dra .box__img img {
    width: 80%;
  }

  #dra .box__info p {
    text-align: justify;
  }

  #dra .box__img {
    display: flex;
    justify-content: center;
    height: auto;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  #learn__info-1 p,
  #learn__info-2 p {
    text-align: justify;
  }

  #immersion .box__card,
  #learn .box__info {
    gap: 3rem;
    grid-template-columns: 1fr;
  }

  #immersion .box__info br {
    display: none;
  }

  #testimony .box__info,
  #price .box__info {
    margin-top: 50px;
    width: 100%;
  }

  .box__img,
  .box__info {
    padding: 10px;
  }

  #hero-container {
    flex-direction: column;
  }

  .text-slider__inner span {
    padding: 0 1rem;
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }
}