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


:root {
  --primary-color: #7C5DA7;         
  --secondary-color: #A58FCE;        
  --third-color: #5D4186;            
  --fourth-color: #D1C5E9;          
  --primary-color-light: #B7A4DC;    
  --primary-color-dark: #4C2C6E;     
  --secondary-color-light: #DAD0F0;  
  --secondary-color-dark: #7B5F9F;   
  --contrast-color: #E0457B;         
  --text-color: #2B1E3F;             
  --light-color: #F3F0F8;
  --light-1: #F7F5FA;
  --light-2: #FCFBFD;
  --light-3: #FFFFFF;
  --white: #FFFFFF;
  --new-color: #fccd15;
  --new-color-light: #fff490;
}

* {
  font-family: "Inter";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto";
}

img {
  max-width: 100%;
}

header {
  background-color: var(--light);
  padding-top: 19px;
  padding-bottom: 49px;
}
header img {
  max-width: 230px;
  margin: 0 auto;
  display: flex;
}
@media (max-width: 991px) {
  header img {
    max-width: 152px;
  }
}

.steps {
  background-color: var(--primary-color);
}

.steps .wizard {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: bth-wizard-steps;
  display: flex;
  flex-wrap: no-wrap;
  overflow: hidden;
  margin-bottom: 0px;
}

.steps .wizard .wizard__item-arrows:after,
.steps .wizard .wizard__item-arrows:before {
  content: " ";
  display: block;
  position: absolute;
}

.steps .wizard .wizard__item-arrows:before {
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 20px solid white;
  top: -4px;
  left: -1px;
  z-index: 1;
}

@media (max-width: 991px) {
  .steps .wizard .wizard__item-arrows:before {
    border-top: 43px solid transparent;
    border-bottom: 44px solid transparent;
    border-left: 23px solid white;
    top: 5px;
    left: -1px;
  }
}

.steps .wizard .wizard__item-arrows:after {
  border-top: 26px solid transparent;
  border-bottom: 26px solid transparent;
  border-left: 18px solid var(--fourth-color);
  top: 0;
  right: -17px;
  left: auto;
  z-index: 2;
}

@media (max-width: 991px) {
  .steps .wizard .wizard__item-arrows:after {
    border-top: 38px solid transparent;
    border-bottom: 38px solid transparent;
    border-left: 16px solid var(--fourth-color);
    top: 10px;
  }
}

.steps .wizard .wizard__item {
  background-color: var(--fourth-color);
  color: var(--black);
  counter-increment: bth-wizard-steps;
  flex-grow: 1;
  font-size: 16px;
  font-weight: 500;
  line-height: 50px;
  min-width: 30px;
  max-width: 100%;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  flex-wrap: no-wrap;
  padding-left: 34px;
  padding-right: 8px;
  position: relative;
}

@media (max-width: 991px) {
  .steps .wizard .wizard__item {
    display: block;
    text-align: center;
  }
}

.steps .wizard .wizard__item:before {
  content: counter(bth-wizard-steps);
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  min-width: 30px;
  display: flex;
  width: 40px;
  height: 40px;
  background-color: white;
  margin-right: 8px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

@media (max-width: 991px) {
  .steps .wizard .wizard__item:before {
    margin: 8px auto;
  }
}

.steps .wizard .wizard__item:first-child {
  padding-left: 8px;
}

.steps .wizard .wizard__item:first-child .wizard__item-arrows:before {
  display: none;
}

.steps .wizard .wizard__item:last-child .wizard__item-arrows:after {
  display: none;
}

.steps .wizard .wizard__item-desc {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.steps .wizard .wizard__item--active {
  background-color: var(--secondary-color);
  color: var(--white);
  min-width: auto;
}

.steps .wizard .wizard__item--active .wizard__item-arrows:after {
  border-left-color: var(--secondary-color);
}

.steps .wizard .wizard__item--active:before {
  color: var(--primary-color);
}

.steps .wizard .wizard__item--visited {
  background-color: #CFDFF2;
  color: #595959;
}

.steps .wizard .wizard__item--visited .wizard__item-arrows:after {
  border-left-color: #CFDFF2;
}

.steps .wizard .wizard__item--visited:before {
  color: var(--primary-color);
  content: "check";
  font-size: 18px;
  text-transform: none;
}

.steps .wizard .wizard__item--disabled,
.steps .wizard .wizard__item [disabled] {
  background-color: #F5F7FA;
  color: #c0c0c0;
  cursor: default;
}

.steps .wizard .wizard__item--disabled .wizard__item-arrows:after,
.steps .wizard .wizard__item [disabled] .wizard__item-arrows:after {
  border-left-color: #F5F7FA;
}

.steps .wizard .wizard__item--disabled:before,
.steps .wizard .wizard__item [disabled]:before {
  color: #c0c0c0;
  content: counter(bth-wizard-steps);
}

.steps-container {
  max-width: 461px;
  height: 70px;
  position: relative;
  margin: 1rem auto;
  margin-top: 1rem;
}

.steps-line {
  position: absolute;
  top: 20px;
  left: -7px;
  z-index: 1;
}

@media (max-width: 991px) {
  .steps-line {
    left: 0;
    top: 5px;
  }
}

.steps-line svg {
  max-width: 100%;
}

.step-numbers {
  display: flex;
  gap: 50px;
  justify-content: space-around;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.step-numbers .step {
  width: 84px;
  height: 90px;
}

@media (max-width: 991px) {
  .step-numbers .step {
    width: 54px;
  }
}

.step-numbers .step .circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 7px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-family: Inter, sans-serif;
  font-style: italic;
  font-weight: 900;
  color: var(--gray) !important;
}

@media (max-width: 991px) {
  .step-numbers .step .circle {
    font-size: 16px;
    width: 40px;
    height: 40px;
    border: 4px solid;
  }

  .step-numbers .step .circle svg {
    max-width: 20px;
  }
}

.step-numbers .step .step-label {
  position: absolute;
  bottom: 0;
  width: 100%;
  font-size: 20px;
  font-family: Inter, sans-serif;
  font-style: italic;
  font-weight: 700;
  color: #231F20;
}

@media (max-width: 991px) {
  .step-numbers .step .step-label {
    position: relative;
    font-size: 12px;
    text-align: left;
  }
}

.step-numbers .step-1 {
  left: 14px;
}

.step-numbers .step-1 .checkmark {
  position: absolute;
  top: 0px;
  left: 20px;
}

.step-numbers .step-2 {
  left: 194px;
}

.step-numbers .step-2 .circle {
  border-color: #D03438;
}

.step-numbers .step-3 {
  left: 363px;
}

.step-numbers .step-3 .circle {
  border-color: #D03438;
}
.upheader {
  background: var(--new-color-light);
  padding: 0.2rem;
  text-align: center;
}
.upheader h6 {
  color: rgba(220, 53, 69);
}

@media (max-width: 767px) {
  .upheader {
    padding: 0.5rem 0.8rem;
  }

  .upheader h6 {
    font-size: 0.6rem;
  }
}

.product-section {
  padding: 2rem;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.product-section::after {
  content: '';
  position: absolute;
  left: 0;
  top: -118px;
  width: 342px;
  height: 639px;
  background: url(../../img/ups2/vetor2.png) center center no-repeat;
  background-size: contain;
}

.product-section::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 377px;
  height: 243px;
  background: url(../../img/ups2/vetor1.png) center center no-repeat;
  background-size: contain;
}

@media(max-width: 991px) {

  .product-section::after,
  .product-section::before {
    display: none;
  }

}

.order-details-img {
  max-width: 500px;
}

.order-details-text {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.order-details-guarantee {
  position: absolute;
  max-width: 100px;
  right: 35%;
  bottom: 5%;
}

@media screen and (max-width: 767px) {
  .order-details-text {
    font-size: 0.8rem;
  }

  .order-details-guarantee {
    right: 0;
  }
}

.image-container {
  position: relative; /* Establish a positioning context for the absolutely positioned image */
  overflow: hidden; /* Ensures the image doesn't overflow its container if it's too large */
}

.bottom-aligned-image {

  bottom: 0; /* Aligns the bottom of the image with the bottom of its container */
  max-width: 300px;
  height: auto; /* Maintain aspect ratio */
}

.up-bg {
  background: linear-gradient(to right,
    var(--secondary-color) 0%, /* A slightly lighter shade of purple/grey */
    var(--secondary-color-light) 25%, /* A mid-range shade */
    var(--secondary-color) 50%,
    var(--secondary-color-light) 75%,
    var(--secondary-color) 100%
  );
  margin: 0;
  padding: 0;
}
h1.small-title {
  font-size: 40px;
}
h4, .small-title {
  font-size: 25px;
}

.vip-badge {
  max-width: 250px;
  position: absolute;
  top: 20px;
  left: 0px;
  z-index: 1;
}
.guarantee-badge {
  max-width: 150px;
  position: absolute;
  left: 0px;
  top: 0;
}

@media screen and (max-width: 767px) {
  #vip h2 {
    margin-top: 5rem;
  }

  .vip-badge {
    position: unset;
    left: 10%;
    top: 0%;
  }

  .guarantee-badge {
    max-width: 100px;
    right: 10%;
    top: 68%;
    left: auto;
  }
}

img {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  height: auto;
}
figure {
  margin-bottom: 0;
}

.vip-list li::marker {
  color: var(--contrast-color);
  margin-right: 15px;
}

.vip-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vip-list li {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-color);
  padding-left: 5px;
}
.about-products-container .flower-adornment-1 {
  position: absolute;
  max-width: 400px;
  z-index: -1;
  right: -10%;
  transform: scale(-1);
  rotate: 25deg;
  opacity: 0.3;
}
.about-products img {
  margin-bottom: 1rem;
  max-width: 100%;
  border-radius: 1rem;
  height: 200px;
  width: 400px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 767px) {
  .about-products img {
    object-fit: cover;
    object-position: top;
  }
  .about-products {
    padding: 0.5rem 0;
  }
}

@media screen and (max-width: 1024px) {
  .about-products img {
    max-width: 100%;
    width: 100%;
  }
}

.results-cta {
  background: linear-gradient(to right, var(--primary-color-dark), var(--primary-color));
  padding: 2.0rem;
  color:white !important;
  margin-block: 0;
  padding-inline: 1rem;
}

.results-cta p {
  margin: 0;
}

.one-time-offer {
  background: #f8f8f8;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

@media(max-width: 991px) {
  .one-time-offer {
    padding: 1rem;
    margin-bottom: 0;
  }
}
.btn-buy {
  position: relative;
  display: inline-block;
  text-decoration: none;
  width: 100%;
  background: linear-gradient(to top, #fccd15 50%, #ffd814 51%);
  border-radius: 40px;
  border: 3px var(--primary-color-dark) solid;
  border-radius: 40px;
  border: 3px var(--primary-color-dark) solid;
  text-align: center;
  color: var(--primary-color-dark);
  line-height: 24px;
  font-size: 21px;
  font-family: Inter;
  font-style: italic;
  font-weight: 900;
  word-wrap: break-word;
  text-shadow: -1px -1px 0px rgb(255, 255, 255);
  padding: 0.5rem 20px;
  margin: 15px 0;
}



@keyframes gift {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(20%);
  }
}
.pulling img {
  width: 100px;
  height: 100px;
  animation: gift 0.8s normal;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}