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

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

:root {
  --color-black: #0b0b0b;
  --color-dark: #101010;
  --color-white: #ffffff;
  --color-text: #111111;
  --color-muted: #555555;
  --color-yellow: #fefb00;
  --color-gold: #ffc100;
  --color-green: #00c11a;

  --container-width: 1120px;
  --container-padding: 4vw;
  --section-padding: 76px;
  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-soft: 0 10px 30px rgb(0 0 0 / 12%);
  --shadow-card: 0 12px 30px rgb(0 0 0 / 16%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: MarkPro, Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-white);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.container {
  width: min(var(--container-width), calc(100% - var(--container-padding) * 2));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-padding);
}

.section h2 {
  margin: 0 0 24px;
  font-size: clamp(28px, 3.4vw, 45px);
  font-weight: 700;
  line-height: 1.08;
}

.section h3 {
  margin: 22px 0 8px;
  font-size: 22px;
}

.section p {
  font-size: 19px;
  line-height: 1.55;
}

.center {
  text-align: center;
}

.dark {
  color: var(--color-white);
  background: var(--color-black);
}

.white {
  color: var(--color-text);
  background: var(--color-white);
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

/* Header / Hero */

.hero {
  position: relative;
  min-height: 900px;
  color: var(--color-white);
  background:
    linear-gradient(90deg, rgb(0 0 0 / 18%), rgb(0 0 0 / 10%)),
    url('../images/Desktop-Imagem-Polidor-de-Elite.webp') top center / cover no-repeat,
    var(--color-black);
  overflow: hidden;
}

.hero::before {
  display: none;
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 12px;
}

.logo {
  width: 155px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: block;
  padding-top: 34px;
}

.hero-copy {
  width: min(700px, 100%);
  padding-left: 10px;
}

.course-logo {
  width: 165px;
  margin-bottom: 18px;
}

.hero h1 {
  max-width: 700px;
  margin: 0 0 22px;
  color: var(--color-white);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.02;
}

.hero h1 span {
  color: var(--color-yellow);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 39px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  text-align: center;
  text-transform: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-primary,
.btn-small {
  color: var(--color-text);
  background: var(--color-yellow);
}

.btn-primary {
  min-width: 360px;
  font-size: 19px;
}

.btn-small {
  min-height: auto;
  padding: 13px 32px;
  font-size: 18px;
}

.btn-green {
  color: var(--color-white);
  background: var(--color-green);
}

.btn-xl {
  padding: 20px 42px;
  border-radius: 8px;
  font-size: 25px;
}

/* Lists */

.checks {
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.checks li {
  position: relative;
  margin: 14px 0;
  padding-left: 37px;
  color: var(--color-white);
  font-size: 15px;
  line-height: 1.48;
}

.checks li::before {
  content: '✓';
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-text);
  background: var(--color-yellow);
  font-size: 13px;
  font-weight: 700;
}

.checks.yellow {
  margin: 28px 0 38px;
}

.checks.yellow li {
  color: var(--color-yellow);
  font-size: 29px;
  font-weight: 700;
}

.checks.yellow li::before {
  content: '';
  top: 14px;
  width: 9px;
  height: 9px;
  background: var(--color-yellow);
}

.hero-ideal {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 560px) minmax(260px, 1fr);
  gap: 72px;
  align-items: center;
  margin-top: 0;
  padding-block: 49px 48px;
}

.hero-ideal h2 {
  margin: 0 0 26px;
  color: var(--color-yellow);
  font-size: 38px;
  line-height: 1.05;
}

.hero-ideal .checks li {
  font-size: 16px;
}

.hero-ideal .floating-img {
  width: 530px;
  margin: 0 20px 0 auto;
  transform: none;
}

/* Sections */

.ideal {
  padding-top: 80px;
}

.floating-img {
  width: 270px;
  margin: auto;
  filter: drop-shadow(0 30px 40px rgb(0 0 0 / 35%));
}

.certificate img {
  border-radius: 14px;
}

.testimonials {
  overflow: visible;
  color: var(--color-white);
  background: #050505;
  padding-block: 34px 64px;
}

.testimonials .btn {
  color: var(--color-text);
}

.testimonials h2 {
  width: min(520px, 100%);
  margin-inline: auto;
  color: var(--color-yellow);
  font-size: 38px;
  line-height: 1.08;
}

.arrow {
  display: block;
  width: 68px;
  margin: 0 auto 26px;
}

.arrow-down {
  animation: arrow-bob 1.45s ease-in-out infinite;
  will-change: transform;
}

@keyframes arrow-bob {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

.modules {
  color: var(--color-text);
  background: var(--color-white);
  padding-block: 58px 72px;
}

.wide-title {
  max-width: 900px;
  margin: 0 auto 28px;
}

.prepare-title {
  max-width: 820px;
}

.modules-img {
  width: min(1120px, 100%);
  margin: 20px auto 34px;
}

.benefits-img {
  max-width: 910px;
  margin: 22px auto 28px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 28px;
}

.bonus-grid img,
.bonus-wide {
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.modules-accordion {
  margin: 48px auto 0;
  text-align: left;
  border: 1px solid #d8d8d8;
}

.modules-accordion details {
  border-bottom: 1px solid #d8d8d8;
}

.modules-accordion details:last-child {
  border-bottom: 0;
}

.modules-accordion summary {
  padding: 15px 20px;
  color: var(--color-text);
  font-size: 17px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.modules-accordion summary::before {
  content: '⌄';
  display: inline-block;
  margin-right: 10px;
  color: #e3c400;
  font-size: 20px;
}

.modules-accordion details[open] summary::before {
  transform: rotate(180deg);
}

.modules-accordion p {
  margin: 0;
  padding: 0 22px 16px;
  color: #666666;
}

.bonus-heading {
  margin-top: 50px !important;
}

.bonus-wide {
  margin: 18px auto 0;
}

.offer {
  color: var(--color-white);
  background: #050505;
  padding-block: 92px 80px;
}

.offer h2 {
  display: none;
}

.price {
  width: min(560px, 100%);
  max-width: 560px;
  margin: 20px auto 30px;
}

.results {
  color: var(--color-black);
  background: var(--color-yellow);
}

.results h2 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(30px, 4vw, 52px);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.video-grid iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
  border-radius: var(--radius-lg);
  background: #000000;
  box-shadow: 0 14px 35px rgb(0 0 0 / 25%);
}

.lazy-iframe {
  background: #000000;
}

.guarantee {
  color: var(--color-black);
  background: var(--color-yellow);
}

.guarantee-img {
  max-height: 260px;
  margin: 0 auto 70px;
}

.guarantee p {
  max-width: 860px;
  margin: 0 auto 34px;
  font-weight: 700;
}

.teacher img {
  max-height: 620px;
  margin: auto;
}

.faq {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-dark);
}

.faq::before {
  content: 'FAQ';
  position: absolute;
  top: 80px;
  left: 50%;
  color: rgb(255 255 255 / 2.5%);
  font-size: 300px;
  font-weight: 700;
  line-height: 1;
  transform: translateX(-50%);
}

.faq-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 50px;
  align-items: start;
}

.faq h2 {
  text-align: center;
  font-size: clamp(56px, 7vw, 86px);
}

/* Carousel */

.carousel {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 1008px;
  margin: 70px auto 72px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  margin: 0;
  transition: transform 0.35s ease;
  will-change: transform;
}

.carousel-track img {
  flex: 0 0 320px;
  width: 320px;
  min-width: 0;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: none;
  background: transparent;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgb(0 0 0 / 48%);
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-btn::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15 18L9 12L15 6' fill='none' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 24px 24px no-repeat;
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.prev::before {
  transform: translateY(4px);
}

.carousel-btn.next {
  right: 0;
}

.carousel-btn.next::before {
  transform: translateY(4px) scaleX(-1);
}

.carousel-btn[hidden] {
  display: none;
}

/* FAQ */

.accordion details {
  margin: 12px 0;
  overflow: hidden;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.accordion summary {
  padding: 14px 0;
  color: var(--color-white);
  font-size: 17px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::before {
  content: '›';
  display: inline-block;
  margin-right: 10px;
  color: var(--color-white);
}

.accordion details[open] summary::before {
  transform: rotate(90deg);
}

.accordion p {
  margin: 0;
  padding: 0 0 20px 28px;
  color: rgb(255 255 255 / 78%);
}

/* Footer */

.footer {
  padding: 46px 20px;
  color: var(--color-white);
  text-align: center;
  background: var(--color-dark);
}

.footer .logo {
  margin: 0 auto 18px;
}

.footer a {
  color: var(--color-white);
}

/* Animations */

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(12px);
  }
}

/* Responsive */

@media (max-width: 900px) {
  :root {
    --section-padding: 54px;
  }

  .hero {
    min-height: auto;
    background-image: url('../images/Image-MOPE-640.webp');
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: var(--color-black);
  }

  .hero::before {
    display: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    top: clamp(250px, 76vw, 430px);
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(180deg, transparent, var(--color-black) 62%);
    pointer-events: none;
  }

  .hero-grid {
    position: relative;
    z-index: 2;
    display: block;
    padding-top: 208px;
    text-align: center;
  }

  .hero-copy .checks {
    text-align: center;
  }

  .hero-copy .checks li {
    display: inline-block;
    padding-left: 37px;
  }

  .hero-ideal {
    display: block;
  }

  .hero-ideal .floating-img {
    display: none;
  }

  .prepare-title,
  .benefits-img,
  .price {
    width: 100%;
    max-width: 100%;
  }

  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .course-logo {
    margin-inline: auto;
  }

  .two-cols,
  .module-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .reverse-mobile img {
    order: 2;
  }

  .carousel {
    width: calc(100% - 80px);
  }

  .carousel-track img {
    flex-basis: calc(100vw - 80px);
    width: calc(100vw - 80px);
    max-height: 460px;
  }

  .topbar {
    padding-top: 18px;
  }

  .btn-xl {
    font-size: 18px;
  }
}

@media (max-width: 560px) {
  .logo {
    width: 126px;
  }

  .topbar {
    align-items: flex-start;
  }

  .topbar .btn-small {
    width: auto;
    max-width: 190px;
    padding: 10px 14px;
    font-size: 14px;
  }

  .course-logo {
    width: 148px;
  }

  .hero h1 {
    font-size: 25px;
    line-height: 1.08;
  }

  .hero-copy .checks li {
    font-size: 23px;
  }

  .hero-copy .checks li::before {
    position: absolute;
    display: grid;
    margin-right: 0;
  }

  .hero-ideal {
    text-align: center;
  }

  .hero-ideal .checks {
    max-width: 330px;
    margin-inline: auto;
    text-align: left;
  }

  .checks li,
  .section p {
    font-size: 16px;
  }

  .carousel-track img {
    flex-basis: calc(100vw - 80px);
    height: auto;
    max-height: 460px;
  }

  .section h2 {
    font-size: 27px;
  }

  .topbar .btn {
    padding: 10px 12px;
    font-size: 12px;
  }

  .module-list {
    padding: 20px;
  }

  .video-grid iframe {
    aspect-ratio: 16 / 9;
  }

  .btn-primary,
  .btn-xl {
    width: 100%;
    padding: 15px 18px;
  }

  .footer .logo {
    width: 140px;
  }
}
