:root {
  --primary: #0A0376;
  --secondary: #760a03;
  --accent: #f1c40f;
  --dark: #000;
  --light: #fff;
  --sucess: #03760A;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
	scroll-behavior: smooth;
}

li {
  list-style: none;
  font-size: 1rem;
  margin-bottom: 1rem;

  display: flex;
  align-items: center;
}

a {
  color: var(--light);
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--light);
}


h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
}

p {
  line-height: 1.4;
}

/* Utility */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.py-3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.accent {
  background-color: var(--accent);
  color: var(--dark);
  padding-left: 5px;
  padding-right: 5px;
}

.m-auto {
  margin: auto;
}

/* General */
.cut-price {
  text-decoration: line-through;
  font-weight: 600;
  color: red;
}

.featured-price {
  font-weight: 600;
}

.cta-btn {
  background-color: var(--sucess);
  border: none;
  color: var(--light);
  padding: 20px;
  border-radius: 10px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.4;
  cursor: pointer;
  width: 100%;
}

.payment-methods {
  max-width: 100%;
  width: 30rem;
  margin-top: 1rem;
}

.check-icon {
  width: 20px;
  margin-right: 0.6rem;
}

.gradient-bg {
  background: linear-gradient(135deg, var(--secondary) -50%, var(--primary) 100%);
  border-top: dashed 1px var(--light);
  border-bottom: dashed 1px var(--light);
}

/* Header */
.header {
  color: var(--light);

  display: flex;
  align-items: center;
  min-height: 100vh;
  background-image: url(/resources/images/header-bg-mobile.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: auto;

  padding-top: 450px;
}

.header__image {
  max-width: 100%;
}

.header__content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.header__title {
  line-height: 1.4;
  font-size: 1.6rem;
}

.header__description {
  font-weight: 600;
  font-size: 1.2rem;
}

.header__promotional-price-text {
  font-size: 1.4rem;
}

.header__promotional-price-value {
  font-size: 1.6rem;
}

/* Presentation */
.presentation__container {
  display: flex;
}

.presentation__text-decoration {
  display: none;
}

.presentation__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Mistakes */
.mistakes__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.mistake {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.mistake__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.mistake__image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mistake__image {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  width: 200px;
}

/* Solution */
.solution {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 200%);
}

.solution__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.solution__img {
  max-width: 100%;
  width: 200px;
  margin: auto;
}

.solution__content {
  font-size: 1.2rem;

  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Method */
.method__container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.method__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.method__step {
  margin-top: 2rem;

  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.method__step-img {
  filter: invert(100%);
  max-width: 100%;
  width: 120px;
}

.method__step-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.method__step-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.2rem;
}

.method__step-title {
  color: var(--accent);
  font-size: 1.6rem;
}

.method__final-content {
  margin-top: 2rem;

  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.method__obs {
  border: dashed 2px var(--light);
  padding: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.method__path {
  display: none;
}

.method__create-items {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: 60rem;
  margin: 2rem auto;
}

.method__create-item {
  width: 15rem;
  height: 10rem;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px var(--light);
  border: double 6px var(--light);
  border-radius: 10px;
  text-align: center;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* Comparison */
.comparison__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.comparison__main-title {
  text-align: center;
}

.comparison__items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.comparion__img {
  width: 120px;
  margin-bottom: 1rem;
}

.comparison__title {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.comparison__item {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* Offer */
.offer__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.offer__title {
  text-align: center;
  line-height: 1.4;
}

.offer__module {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border: dashed 1px var(--light);
  border-radius: 20px;
  padding: 2rem;
}

.offer__module-title {
  font-size: 1.6rem;
}

.offer__module-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
} 

.offer__module-item {
  display: flex;
  align-items: center;
  gap: 1rem;

  font-size: 1.2rem;
  line-height: 1.4;
}

.offer__module-item::before {
  content: '+';
  min-width: 2rem;
  width: 2rem;
  height: 2rem;
  font-size: 1.6rem;
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--accent);
  border-radius: 50%;
}

/* Bonuses */
.bonuses {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.bonuses__header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 200%);
  padding: 3rem 0;
  border-top: solid 1px var(--light);
  border-bottom: solid 1px var(--light);
}

.bonuses__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.bonuses-title {
  text-align: center;
}

.bonus__container {
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 2px var(--accent) dashed;

  display: flex;
  flex-direction: column;
  gap: 1rem;

  margin-left: 15px;
  margin-right: 15px;
}

.bonus__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bonus__image {
  max-width: 100%;
  width: 500px;
}

.bonus__price {
  font-weight: 900;
}

/* Stack */
.stack__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.stack__table {
  display: flex;
  flex-direction: column;
}

.stack__row {
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
  border-bottom: solid 1px var(--light);
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.stack__item-text {
  width: 80%;
}

.stack__item-price {
  width: 20%;
}

.stack__subtitle {
  font-size: 1.4rem;
}

.stack__original-price {
  font-size: 2rem;
}

.stack__promotional-price {
  text-align: center;
}

.stack__promotional-price-value {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.8;
}

.stack__promotional-conditions {
  font-size: 1.2rem;
}

.stack__combo-image {
  max-height: 20rem;
  max-width: 100%;
}

/* Reasons */
.reasons__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.reasons__cta-btn {
  margin: auto;
}

.reason__items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.reason__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.reason__img {
  max-width: 100%;
  width: 5rem;
  filter: invert(100%);
}

/* FAQ */
.faq__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq__table {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  border-bottom: dashed 1px var(--light);
  padding-bottom: 1rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 0 0 3rem 0;
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 800px) {
  h2 {
    font-size: 2rem;
  }

  /* Utility */
  .cta-btn {
    width: 500px;
    font-size: 1rem;
  }

  .order--1 {
    order: -1;
  }
  
  .order-1 {
    order: 1;
  }

  .text-md-right {
    text-align: right;
  }
  
   
  /* Header */
  .header {
    min-height: 90vh;
    background-image: url(/resources/images/header-bg.png);
  
    padding-top: 6rem;
    background-size: cover;
  }

  .header__container {
    display: flex;
    align-items: center;
  }

  .header__image-container {
    order: 1;
    width: 50%;
  }

  .header__content {
    width: 50%;
  }

  .header__title {
    font-size: 2.2rem;
  }

  /* Presentation */
  .presentation {
    overflow: hidden;
  }

  .presentation__content {
    width: 70%;
  }

  .presentation__image-container {
    position: relative;
    width: 30%;
  }

  .presentation__text-decoration {
    display: block;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px var(--light);
    font-size: 13rem;
    text-align: center;
    line-height: 1;

    transform: rotate(-90deg);
    transform-origin: top left;
    white-space: nowrap;
    position: absolute;
    top: 120%;
    opacity: 0.5;
  }

  /* Mistake */
  .mistakes__container {
    gap: 8rem;
  }

  .mistake {
    display: flex;
    flex-direction: row;
  }

  .mistake__content {
    width: 70%;
  }

  .mistake__image-container {
    width: 30%;
  }

  /* Solution */
  .solution__container {
    max-width: 1000px;
  }  

  .solution__title {
    text-align: center;
    width: 800px;
    margin: auto;
  }

  /* Comparison */
  .comparison__items {
    flex-direction: row;
    justify-content: space-around;
  }

  /* Method */
  .method__steps {
    margin-top: 2rem;
  }

  .method__step {
    flex-direction: row;
    align-items: center;
    gap: 2rem;

    margin-top: 0;
  }

  .method__step-content {
    max-width: 40rem;
  }

  .method__step-img {
    width: 180px;
  }

  .method__path {
    display: block;
    width: 60%;
    margin: auto;
  }

  .method__final-content {
    margin-top: 6rem;
  }

  .method__obs {
    width: 800px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;

    padding: 3rem;
  }

  .method__cta-btn {
    margin: auto;
  }

  /* Bonuses */
  .bonus__container {
    margin: auto;
    flex-direction: row;
    align-items: center;
  }

  .bonus__content {
    width: 90%;
  }

  .bonus__title {
    font-size: 2rem;
  }

  .bonus__price {
    font-size: 1.2rem;
  }

  /* Stack */
  .stack {
    padding-bottom: 6rem;
  }

  .stack__row {
    flex-direction: row;
  }

  .stack__table {
    width: 80%;
  }

  /* Reasons */
  .reasons__title {
    text-align: center;
  }

  .reason__item {
    flex-direction: row;
    font-size: 1.2rem;
  }

  /* Footer */
  .footer__container {
    flex-direction: row;
    justify-content: space-around;
  }
}