* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  background: #FFFDE9;
  font-family: "Instrument Sans", sans-serif;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

#info-lanc h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h2 {
  font-weight: 400;
  font-size: clamp(1.2rem, 4vw, 2.5rem);
}

.border {
  border: solid 1px red;
}

.d-flex {
  display: flex;
}

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

.countdown h2{
  font-weight: bold;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
  /* espaço entre os blocos */
  margin-top: 20px;
}

.title {
  color: var(--bg);
  font-weight: bold;
}

.time {
  background: #b6eca727;
  color: #b6eca7;
  padding: 15px;
  border-radius: 8px;
  min-width: 70px;
  font-weight: bold;
}

.time span {
  display: block;
  font-size: 2rem;
  font-weight: bold !important;
}

.time small {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
}

.s-center {
  display: flex;
  justify-content: center;
}

.txt-c {
  text-align: center;
}

.txt-l {
  text-align: left;
}

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

.container__section {
  padding-top: 50px;
  margin: 0 auto;
  max-width: min(1200px, 85vw);
}

/* menu */

#hero-lanc .box__info,
#hero-lanc .box__img,
#hero .box__info,
#hero .box__img {
  width: 100%;
}

#info-lanc button {
  margin-top: 20px;
}

#info-lanc h1 {
  font-weight: 400;
}

#hero-lanc,
#hero {
  height: 100vh;
}

:root {
  --bg: #FFFDE9;
  --fg: #000;
  --accent: #ea7730;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial
}

.nav {
  background: var(--bg);
  color: var(--fg);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: box-shadow .25s ease, background-color .25s ease;
}

.nav.nav--scrolled {
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, .35);
  backdrop-filter: saturate(120%) blur(6px);
}

.nav__inner img {
  width: 85%;
}

.nav__inner {
  max-width: min(1200px, 85vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 1rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  /* leve movimento para baixo */
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

#hero-lanc .container__section,
#hero .container__section {
  height: 100%;
}

#hero-box span {
  font-weight: 300;
}

#hero-lanc .container__section,
#hero .container__section {
  padding-top: 0;
}

#hero-box h1 {
  color: #FFFDE9;
}

#box-vsl {
  gap: 20px;
  height: 100%;
  width: 85%;
}

#bonus-1 .container__section,
#bonus-2 .container__section,
#bonus .container__section {
  height: 100%;
}

#bonus-1 button,
#bonus-2 button,
#bonus button {
  width: auto;
  margin-top: 20px;
}

#bonus-1 h1,
#bonus-2 h1,
#bonus h1 {
  font-weight: 400;
  color: #fff;
}

#bonus,
#bonus-1,
#bonus-2 {
  gap: 20px;
  background-position: center;
  height: auto;
  padding: 50px 0;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

#bonus-2 h3 {
  color: white;
  font-weight: 300;
}

#bonus-2 .box__info {
  justify-content: left;
  align-items: end;
  text-align: right;
}

#bonus-1 li {
  list-style: none;
  color: #fff;
}

#bonus-1 .button,
#bonus-2 .button {
  width: 280px;
}

#bonus-1 .container__section,
#bonus-2 .container__section {
  padding-top: 0;
}

#bonus-1 .container__section {
  gap: 15px;
}

#bonus-1 {
  margin-top: 50px;
  background-image: url(/assets/img/bonus3.webp);
}

#bonus-2 {
  background-image: url(/assets/img/bonus-bk2.webp);
}

#bonus {
  margin-top: 50px;
  background-image: url(/assets/img/bonus-bk.webp);
}

#hero-box {
  gap: 20px;
  background-image: url(/assets/img/heroimg.webp);
  background-position: center;
  height: 100%;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}

/* Logo (pode ser img ou texto) */

.nav__brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--fg);
  font-weight: 700;
  letter-spacing: .2px;
}

.nav__brand img {
  width: 36px;
  height: 36px;
  object-fit: contain
}

.nav__toggle {
  background: none;
  border: 0;
  color: var(--fg);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  padding: .2rem .4rem;
}


.nav__menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--bg);
  display: block;
  overflow: hidden;
  max-height: 0;
  transition: max-height .28s ease;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav__menu a {
  display: block;
  padding: .9rem 1rem;
  text-decoration: none;
  color: var(--fg);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.nav__menu a:hover {
  color: #81b672;
  background: rgba(255, 255, 255, .04);
}

/* Aberto */
.nav__menu.open {
  max-height: 200px;
}

.button {
  cursor: pointer;
  width: 310px;
  background: #D2FFC5;
  font-size: large;
  padding: 20px;
  border: none;
  border-radius: 50px;
  transition: all .2s;
  border: #D2FFC5 solid 1px;
  font-weight: bold;
}

.button:hover {
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, .4);
}

#openModal3:hover,
#openModal:hover {
  color: #b6eca7;
  border: #D2FFC5 solid 1px;
  background: #b6eca727;
}

#treinador .button {
  margin-top: 20px;
  width: 80%;
}

@media(min-width:1500px) {
  #treinador .button {
    width: 410px;
  }
}

#treinador .container__section {
  gap: 30px;
}

#treinador .swiper {
  width: 100%;
}

#treinador .box__info {
  width: 50%;
}

#liberdade h3 {
  font-weight: 400;
}

#box-1 {
  background: #EEB07D;
}

#box-2 {
  background: #CADBFD;
}

#liberdade .container__section {
  gap: 30px;
}

#liberdade h3 {
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  text-align: center;
}

#liberdade .box__info {
  width: 100%;
  height: 200px;
  padding: 50px;
  border-radius: 40px;
}

.swiper {
  width: 100%;
  max-width: 700px;
}

.swiper-slide {
  display: flex;
  gap: 30px;
  align-items: center;
  border-radius: 25px;
  padding: 20px;
  box-sizing: border-box;
}

/* Imagem com bordas arredondadas */
.slide-img {
  flex-shrink: 0;
  width: 300px;
  height: 400px;
  border-radius: 25px;
  object-fit: cover;
}

#slide-img-4 {
  background: #CADBFD;
  object-fit: contain;
}

/* Texto ao lado */
.slide-text {
  max-width: 400px;
}

.slide-text h3 {
  margin: 0 0 10px;
  font-weight: 700;
}

.slide-text p {
  margin: 0;
  line-height: 1.4;
  /* font-size: 0.9rem; */
}

/* Botões de navegação */
.swiper-button-prev,
.swiper-button-next {
  color: #04060c;
  top: 50%;
  width: 36px;
  height: 36px;
  margin-top: -18px;
  background: rgba(99, 121, 182, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 5px rgb(0 0 0 / 0.15);
}

/* Pagination bolinhas */
.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #6379b6 !important;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: flex !important;
}

.swiper-button-next,
.swiper-button-prev {
  width: 35px !important;
  height: 35px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 100% !important;
  color: #ffffff !important;
  font-weight: bold;
}


footer p {
  font-size: clamp(13px, 4vw, 16px);
}

.footer__top {
  gap: 50px;
}

footer a img {
  transition: all;
}

footer a img:hover {
  transition: .2s;
  transform: scale(1.07);
}

.footer__info p img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.footer__info a img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  margin-top: 20px;
}

.footer__bottom {
  margin-top: 16px;
  border-top: solid 1px #00000025;
}

footer h5 {
  color: #00000080;
  font-weight: 400;
  text-align: center;
  padding: 16px;
}

#pre-footer {
  background-color: #CADBFD;
}

#lanc-footer {
  background-color: #D2FFC5;
}

section.faq {
  width: 80%;
  margin: auto;
  padding: 50px 1rem;
}

section.faq h2 {
  font-size: clamp(1.7rem, 5vw, 2.5rem);
  text-align: center;
  margin-bottom: 2rem;
}

.faq-item {
  border-bottom: 1px solid #c4c0c0;
  overflow: hidden;
}

.faq-question {
  cursor: pointer;
  padding: 1.5rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  width: 90%;
  padding: 1rem;
}

/* Ícone + que vira X */

.faq-icon {
  margin-bottom: 60px;
  color: #474747;
  font-size: 1.5rem;
  font-weight: 100;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

#oferta .container__section {
  gap: 50px;
}

#oferta h2 {
  margin-bottom: 30px;
}

#oferta img {
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.12));
  width: 70%;
}

.container {
  max-width: 530px;
  width: 100%;
  text-align: center;
}

.item {
  padding: 30px;
  color: #000;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  margin-top: -15px;
  position: relative;
}

#end-item {
  border-radius: 20px;
}

.item {
  /* position: sticky; */
  border-bottom-left-radius: none;
}

/* cores personalizadas */
.brown {
  background: #9a6b56;
  color: #000;
}

.blue {
  background: #c9d9ff;
  color: #000;
}

.orange {
  background: #EEB07D;
  color: #000;
}

.gray {
  background: #c9c9c9;
  color: #000;
}

.green {
  background: #4a6d45;
  color: #fff;
}

#ofer-1,
#ofer-2 {
  width: 100%;
}

#plano .container__section {
  gap: 30px;
}

.top-card {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  color: #fff;
  width: 100%;
  padding: 10px;
  background: #4D6040;
}

#card-1 {
  background: #D2FFC5;
}

.card__info {
  display: flex;
  padding: 15px;
}

.card img {
  width: 100%;
}

.card h4 {
  font-size: 25px;
  font-weight: 400;
}

.card {
  border: solid 1px #000;
  border-radius: 20px;
  width: 350px;
}

/* Fundo do modal */
.modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;

  /* Estado inicial invisível */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Conteúdo do modal */
.modal-content h3 {
  text-align: center;
}

.modal-content p {
  text-align: center;
  font-size: 13px;
}

.form__note {
  margin-top: 10px;
  text-align: center;
}

.modal-content {
  background: #D3FFC5;
  border-radius: 12px;
  padding: 20px;
  max-width: 500px;
  width: 90%;
  transform: translateY(-50px);
  transition: transform 0.3s ease;
}

.modal-content h2 {
  margin-bottom: 20px;
}

form label {
  margin-top: 10px;
}

form ::placeholder {
  color: #bebebe;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input,
button {
  background: #fff;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

button[type="submit"]:hover {
  background: #448b31;
}

button[type="submit"] {
  cursor: pointer;
  background: #4faa36;
  color: white;
  border: none;
  font-weight: bold;
  padding: 12px;
  margin-top: 15px;
}

.close {
  float: right;
  cursor: pointer;
  font-size: 20px;
}

/* Estado visível */
.modal.show {
  opacity: 1;
  pointer-events: auto;
}

.modal.show .modal-content {
  transform: translateY(0);
}

input:focus,
textarea:focus {
  outline: none;
  border: 1px solid #75b178;
  box-shadow: 0 0 5px rgba(142, 194, 144, 0.5);
  transition: all 0.3s ease;
}

#vsl .container__section {
  align-items: center;
  gap: 30px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
}

.video-wrapper::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
  /* 16:9 */
}

.video-wrapper>*:not(iframe) {
  position: absolute;
  inset: 0;
}

.video-thumb {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* centraliza/“cobre” a área */
  display: block;
}

.play-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  /* clique passa para o botão */
}

/* iframe ocupa toda a área quando injetado */
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.loading-overlay p {
  color: #fff;
}

.loading-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

#toggleSoundBtn:active {
  box-shadow: none;
}

#toggleSoundBtn {
  background: #D2FFC5;
  padding: 5px;
  border-radius: 50px;
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, .2);
  border: none;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-top-color: #b6eca7;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


/* Responsividade */
@media (max-width: 1200px) {
  .modal-content {
    max-width: 95%;
    padding: 15px;
  }

  h2 {
    font-size: 18px;
  }
}

/* Responsivo */
@media (max-width: 500px) {
  .item {
    font-size: 0.95rem;
    padding: 25px;
  }
}

@media (max-width: 600px) {
  section.faq {
    width: 100%;
  }

  .faq-question {
    padding: 1rem;
    font-weight: bold;
  }

  .faq-question {
    font-size: 1rem;
  }
}

/* Responsividade */
@media (max-width: 600px) {
  .swiper-slide {
    flex-direction: column;
    text-align: center;
    padding: 15px 10px;
  }

  .slide-img {
    width: 200px;
    height: 250px;
    margin: 0 auto 15px;
  }

  .slide-text {
    max-width: 100%;
  }
}

/* 2 itens cabem fácil aqui */

/* Desktop */
@media (min-width: 768px) {

  #toggleSoundBtn {
    display: none;
  }

  .nav__toggle {
    display: none;
  }

  .nav__menu {
    position: static;
    max-height: none;
    display: flex;
    gap: .6rem;
    border: 0;
    background: transparent;
  }

  .nav__menu a {
    border: 0;
    padding: .5rem .8rem;
    border-radius: .5rem;
  }

  .nav__menu a:hover {
    background: rgba(255, 255, 255, .08);
  }

  #treiner-btn-2 {
    display: none;
  }
}


p {
  margin-top: 20px;
  font-size: clamp(13px, 4vw, 20px);
}

@media(max-width: 1200px) {
  .container__section {
    margin: 0 auto;
    max-width: 90%;
    flex-direction: column;
  }

  #box-vsl {
    width: 100%;
  }

  #bonus-1 {
    background-image: url(/assets/img/bonus-1-m.png);
  }

  #bonus-2 button {
    width: 100% in !important;
  }

  #bonus-2 {
    background-image: url(/assets/img/bonus-2-m.png);
  }

  #bonus {
    gap: 20px;
    background-image: url(/assets/img/bonus2.png);
    background-position: center;
    height: auto;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
  }

  #bonus-1 .button,
  #bonus-2 .button {
    width: 70%;
  }

  .nav__inner {
    max-width: 90%;
  }


  .footer__top {
    text-align: center;
    gap: 20px;
    flex-direction: column;
  }

  #treiner-btn-1 {
    display: none;
  }

  #treinador button {
    font-size: medium;
  }

  #treinador .button,
  #treinador .box__info {
    width: 100%;
  }

  #treinador .box__info br {
    display: none;
  }

  #bonus br {
    display: none;
  }

  #treinador .box__info h2 {
    text-align: center;
  }

  #logo-hero {
    width: 40px;
  }

  #hero-lanc .container__section {
    margin-top: 20px;
    flex-direction: column-reverse;
    gap: 20px;
  }

  #hero-lanc .button {
    width: 100%;
  }

  #hero-lanc .box__img img {
    width: 80%;
  }

  #hero-lanc .box__info br {
    display: none;
  }

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

  #hero-lanc {
    height: auto;
  }

  #oferta .box__info h2 {
    text-align: center;
  }

  #oferta .button {
    width: 100%;
  }

  #hero {
    height: auto;
    padding-bottom: 50px;
  }

  #hero-box {
    gap: 20px;
    background-image: none;
  }

  #hero {
    gap: 20px;
    background-image: url(/assets/img/heroimg.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  #vsl {
    height: auto;
  }

  #openModal2 {
    width: 100%;
  }
}