:root {
  --primary-color: #ff3c73;
  --secondary-color: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Peridot PE", sans-serif;
  background: #000;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

h2 {
  font-family: "Fang", serif;
}

/* Shared */

.btn-primary {
  background: #fff;
  padding: 16px 32px;
  border-radius: 14px;
  cursor: pointer;

  color: #e91e63;
  text-decoration: none;
  font-weight: 600;
  font-size: 26px;

  display: inline-block;

  box-shadow:
    0 0 30px rgba(255, 255, 255, 0.8),
    0 0 60px rgba(255, 255, 255, 0.4);

  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 40px rgba(255,255,255,0.9),
    0 0 80px rgba(255,255,255,0.6);
}

.btn-dark {
  display: inline-block;
  background-color: #2d2d2d;
  color: #fff;
  text-decoration: none;
  padding: 14px 35px;
  border-radius: 12px;
  transition: all 0.6s ease;

  font-weight: 500;
  font-size: 24px;
}

.btn-dark:hover {
  transform: translateY(-5px);
  color: #fff;
  background-color: #e91e63;
}

/* Hero Section */

.hero {
  min-height: auto;
  padding: 60px 20px 0;
  /* overflow: hidden; */

  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  /* filter: blur(0.2px);
  opacity: 0.95; */

  background:
    radial-gradient(circle at 0% 0%, #ff3c73 0%, transparent 45%),
    radial-gradient(circle at 0% 50%, #ff3c73 0%, transparent 10%),
    radial-gradient(circle at 0% 90%, #ff3c73 0%, transparent 20%),
    linear-gradient(90deg, #7a0029a2, #3b001360),
    linear-gradient(rgba(255, 60, 115, 0.236), rgba(255, 60, 115, 0.219)),
    linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
    url('../img/background.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 700px;
  height: 700px;

  background: radial-gradient(
    circle,
    rgba(255,255,255,0.35) 0%,
    rgba(255,255,255,0.15) 30%,
    rgba(255,255,255,0.05) 55%,
    transparent 70%
  );

  filter: blur(40px);
  pointer-events: none;

  background: #d71048;
  mix-blend-mode: color-burn;
}

.container {
  margin: 0 auto;
  padding-bottom: 100px;

  position: relative;
  display: flex;
  gap: 20px;

  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
}

.hero-text {
  flex: 1;
  color: #fff;
}

.hero-text h1 {
  font-size: 2.5em;
  line-height: 1.2;
  margin: 20px 0;
  font-weight: 400;
}

.hero-text h1 strong {
  font-weight: 600;
}

.hero-text p {
  font-size: 25px;
  max-width: 520px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.badge {
  font-size: 14px;
  letter-spacing: 2px;
}

.hero-image {
  bottom: -109px;
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-image img {
  width: 700px;
  transform: translateY(60px);
  display: block;
  max-width: 100%;
  position: relative;
  bottom: 0;
  right: 0;
  filter: drop-shadow(0 0 30px rgba(255, 60, 115, 0.282));
  z-index: 2;
  transform: scale(1.3);
}

.light-wrapper {
  /* bottom: -25%; */
  position: absolute;
  opacity: 0.9;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 1;
}

.light-wrapper img {
  width: 100%;
  opacity: 1;
  filter: blur(1px);
  mix-blend-mode: screen;
}

.hero-features {
  display: none;
}

.benefits {
  z-index: 2;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 5px 30px;

  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(3px);

  border-radius: 27px;
  border: 1px solid rgba(255, 255, 255, 0.2);

  box-shadow:
    inset 0 0 10px rgb(255, 255, 255),
    0px 0px 50px rgb(255, 255, 255);

  max-width: 1200px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  white-space: nowrap;
  flex: 1;
}

.benefit-item div {
  white-space: normal;
  font-size: 18px;
}

.benefit-item img {
  width: 40%;
}

.icon-insta {
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: 10;
}

.icon-insta img {
  width: 50px;
  height: 50px;
}

/* Second section */

.challenges {
  background-color: #f1edea;
  padding: 60px 20px;
  position: relative;
  text-align: center;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

.star-challenges {
  position: absolute;
  color: #de3b71;
  font-size: 130px;
}

.star-challenges-left {
  left: 5%;
  bottom: 15px;
}

.star-challenges-right {
  right: 10%;
  bottom: 100px;
}

.challenges .container {
  display: flex;
  flex-direction: column;
  margin: auto;
}

.challenges-title {
  font-family: "Fang", serif;
  color: #3d3d3d;
  line-height: 1.2;
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 53px;
}

.challenges-list {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.challenge-card {
  padding: 18px 25px;
  border-radius: 0px 20px;
  display: flex;
  align-items: center;
  color: #fff;
  box-shadow: 0 4px 15px rgba(145, 27, 65, 0.2);
}

.challenges-list div:nth-child(1),
.challenges-list div:nth-child(4),
.challenges-list div:nth-child(7) {
  background: linear-gradient(to bottom right, #821a3b, #c82556);
}

.challenges-list div:nth-child(3),
.challenges-list div:nth-child(6),
.challenges-list div:nth-child(9) {
  background: linear-gradient(to bottom left, #821a3b, #c82556);
}

.challenges-list div:nth-child(2),
.challenges-list div:nth-child(5),
.challenges-list div:nth-child(8) {
  background: linear-gradient(to bottom, #821a3b, #c82556);
}

.challenge-card p {
  font-size: 22px;
  margin: 0;
  font-weight: 300;
  width: 100%;
  object-fit: contain;
}

.challenge-card img {
  max-width: 30%;
}

.challenges-action {
  margin-top: 40px;
}

/* Third section */

.steps {
  position: relative;
  background-color: #f1edea;
}

.star-steps {
  position: absolute;
  color: #de3b71;
  font-size: 130px;
}

.star-steps-right {
  right: 10%;
  bottom: 230px;
}

.steps .container {
  display: flex;
  flex-direction: column;
}

.steps-header {
  width: 100%;
  text-align: left;
  margin: 0 auto 40px;
}

.steps-header h2 {
  font-family: "Fang", serif;
  color: #3d3d3d;
  line-height: 1.2;
  margin-bottom: 20px;
  font-size: 53px;
  font-weight: 500;
  width: 60%;
}

.steps-header p {
  font-size: 22px;
  color: #3e3e3e;
  line-height: 1.3;
  width: 60%;
}


.steps-timeline {
  position: relative;
  margin: 0 auto;
  text-align: left;
  width: 100%;
}

.steps-timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 10px;
  width: 4px;
  background-color: #c82556;
  z-index: 1;
  bottom: 80px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.step-number {
  background: linear-gradient(to bottom right, #c82556, #4a091e);
  color: #fff;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 20px;
  font-weight: 300;
  padding: 20px;
}

.step-content p {
  font-size: 14px;
  color: #3d3d3d;
  font-size: 20px;
  font-weight: 200;
  width: 70%;
}

/* Fourth section */

.testimonials {
  height: 64vh;
  background-color: #f1edea;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  gap: 80px;
  padding: 0 0 70px 5vw;
}

.testimonials-container {
  display: grid;
  height: 100%;
  grid-template-columns: 40% 60%;
  align-items: center;
  gap: 60px;

  max-width: 1200px;
}

.testimonials-left h2 {
  font-family: "Fang", serif;
  font-weight: normal;
  font-size: 57px;
  margin-bottom: 27px;
  color: #272626;
}

.testimonials-left p {
  width: 80%;
  font-weight: 300;
  font-size: 25px;
  line-height: 1.3;
  color: #272626;
}

.testimonials-right {
  height: 100%;
  overflow: hidden;
  padding: 3% 0;
  min-height: 355px;
}

.carousel {
  height: 100%;
  overflow: hidden;
  background:linear-gradient(135deg, #d1386b, #5b1326);

  border-radius: 30px 0 0 30px;

  mask-image: linear-gradient(
    to right,
    transparent,
    black 3%,
    black 98%,
    transparent
  );
}

.carousel-track {
  height: 100%;
  display: flex;
  will-change: transform;
}

/* Cards */

.testimonial {
  position: relative;
  min-width: 320px;
  padding: 40px 39px 12px 20px;

  color: white;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial:not(:last-child)::after {
  content: "";

  position: absolute;
  right: 0;
  top: 2px;

  width: 18px;
  height: 90%;

  background: rgba(129, 129, 129, 0.771);
  border-radius: 24px 0 24px 0;
}

.testimonial p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 15px 0;
}

.author {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 10px 0;
}

.author span {
  font-size: 20px;
}

.author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.author-transform img {
  transform: rotate(-90deg);
}

.testimonials-action {
  padding: 0 0 20px 0;
}

/* Fifth section */

.about {
  background:
    radial-gradient(circle at 90% -20%, #ff3c73b5 0%, transparent 50%),
    radial-gradient(circle at 60% -80%, #ff3c73c0 0%, transparent 70%),
    linear-gradient(to bottom, #4d0016ce, #4d0016ce);
  
  color: #fff;

  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  display: flex;
  position: relative;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1200px;

  height: auto;
  margin-top: 8px;
}

.about-photo {
  flex-shrink: 0;
  position: absolute;
  width: 45%;
  height: 100%;
}

.about-photo img {
  height: 73vh;
  width: 100%;
  transform: scale(1.2);
  filter: drop-shadow(0 0 30px rgba(255, 60, 115, 0.13));

  z-index: 2;
  bottom: 0;
  position: absolute;
  display: block;
}

.about-info {
  max-width: 55%;
  height: 100%;
  margin-left: auto;
  padding: 5% 5% 3% 0;
  gap: 10%;
}

.about-header {
  font-family: "Fang", serif;
  height: 65%;
}

.about-header h2 {
    font-weight: 200;
}

.about-title {
  font-size: 45px;
  padding-bottom: 20px;
}

.about-description {
  font-size: 22px;
  line-height: 1.2;
}

.qualifications-list {
  display: flex;
  flex-direction: column;
  gap: 7px 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  height: 35%;
  padding: 13px 0;
}

.qual-card {
  background-color: #c82556;
  padding: 5px 5px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.qual-card img {
  width: 50px;
}

.qual-card p {
  font-size: 0.9em;
  line-height: 1.2;
}

/* Sixth section */

.faq-section {
  background-color: #f1edea;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  padding: 120px 5vw;
  min-height: 750px;
  position: relative;
}

.faq-left {
  max-width: 420px;
}

.faq-left h2 {
  font-weight: normal;
  font-size: 48px;
  line-height: 1.2;
  color: #c92c54;
  margin-bottom: 30px;
}

.faq-right {
  width: 520px;
  max-height: 500px;
  overflow-y: hidden;
}

.faq-title {
  font-family: "Fang", serif;
  font-weight: 500;
  text-align: center;
  color: #c92c54;
  font-size: 54px;
  margin-bottom: 20px;
}

.faq-item {
  margin-bottom: 14px;
  border-radius: 14px;
  overflow: hidden;
}

.faq-question {
  font-family: "Fang", serif;
  width: 100%;
  background: #d12b58;
  color: white;
  border: none;
  padding: 18px 22px;
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  position:relative;
  width:20px;
  height:20px;
}

.faq-icon img {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;

  transition: opacity .25s ease;
  transform: rotate(270deg);
}

.icon-open {
  opacity:0;
}

.faq-item.active .faq-icon{
  transform: rotate(90deg);
}

.faq-answer {
  background: #d12b58;
  color: white;
  padding: 0 22px;
  font-size: 16px;

  max-height: 0;
  opacity: 0;
  overflow: hidden;

  transition:
    max-height 0.1s ease,
    opacity 0.3s ease,
    padding 0.3s ease;
}

.faq-item.active .faq-answer {
  display: block;

  max-height: 200px;
  opacity: 1;
  padding: 18px 22px;
}

.faq-item.active .faq-question {
  border-radius: 14px 0 0;
  background: #3d3d3d;
}

/* Footer section */

.footer {
  background-color: #c82556;
  padding: 35px 24px;
  color: #fff;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  align-items: center; 
}

.footer-crp {
  font-size: 20px;
  letter-spacing: 0.5px;
  width: 100%;
  text-align: left;
}

.footer-social {
  font-size: 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.3s;
  width: 100%;
}

.footer-social:hover {
  opacity: 0.8;
}

.footer-social img {
  margin-left: -11px;
  width: 40px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);

  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

.modal.active {
  opacity: 1;
  pointer-events: all;

  z-index: 6;
}

.modal-content {
  display: flex;
  flex-direction: column;

  background: #e9e6e3;
  padding: 40px 50px;
  border-radius: 32px;
  text-align: center;

  max-width: 500px;
  width: 90%;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);

  transform: scale(0.9);
  transition: 0.3s;

  gap: 30px;
}

.modal.active .modal-content {
  transform: scale(1.4);
  z-index: 6;
}

.modal-content h2 {
  font-family: "Peridot PE", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #2f2f2f;
}

.modal-content p {
  font-size: 22px;
  color: #2f2f2f;
  line-height: 1.3;
}

.btn-confirm {
  display: inline-block;
  background: #d6336c;
  color: #fff;
  padding: 15px 25px;

  border-radius: 14px;
  text-decoration: none;

  font-weight: 600;
  font-size: 18px;

  transition: 0.2s;
}

.btn-confirm:hover {
  background: #b82b5c;
}

.benefits-mobile {
  display: none;
}

@media (max-width: 613px) {
  .hero-text h1 br {
    display: none;
  }

  .about-photo img {
    bottom: -32px !important;
  }
}

@media (max-width: 430px) {
  .about-photo img {
    bottom: -21px !important;
  }

  .btn-primary {
    padding: 10px 13px !important;
    font-size: 16px !important;
  }

  .hero {
    min-height: 49vh !important;
    padding: 69px 20px 0 !important;
  }

  .hero-image img {
    width: 100% !important;
    margin-right: -28px !important;
  }

  .hero-text {
    width: 82vw !important;
    margin-top: -80px !important;
  }

  .hero-text h1 {
    font-size: 25px !important;
    margin: 20px 0 0px 0 !important;
  }

  .hero-text p {
    font-size: 16px !important;
    margin-bottom: 25px !important;
    margin-top: 18px !important;
  }

  .faq-right {
    width: 80vw !important;
    max-height: 573px !important;
  }

  .benefits {
    padding: 0;
    gap: 0 !important;
  }

  .benefit-item {
    gap: 0 !important;
  }

  .benefit-item div {
    font-size: 0.6em !important;
  }

  .btn-dark {
    padding: 14px 12px !important;
    font-size: 21px !important;
  }

  .challenge-card p {
    font-size: 15px !important;
  }

  .challenges-title {
    font-size: 35px !important;
  }

  .steps-header h2 {
    font-size: 35px !important;
  }

  .steps-header p {
    font-size: 19px !important;
  }

  .steps .container {
    max-width: 80vw !important;
  }

  .step-content p {
    width: 100%;
  }

  .testimonials-left h2 {
    font-size: 35px !important;
  }

  .testimonials-left p {
    font-size: 19px !important;
  }

  .testimonials-container {
    width: 80vw !important;
  }

  .modal-content h2 {
    font-size: 33px !important;
  }

  .modal-content {
    padding: 20px 15px !important;
  }

  /* BARRA DO HERO MOBILE */

  .hero-image img {
    transform: scale(1.3) !important;
  }

  .feature-item {
    padding: 8px 8px !important;
    gap: 8px !important;

    font-size: 10px !important;
    max-width: 250px !important;

    transform: scale(1.1) !important;
    min-width: fit-content !important;
  }
  
  .feature-item:nth-child(1) {
    top: 32% !important;
    left: -2% !important;
  }

  .feature-item:nth-child(2) {
    top: 71% !important;
    right: -2% !important;
  }

  /* .feature-item:nth-child(3) {
    bottom: 35% !important;
    left: 3% !important;
  }

  .feature-item:nth-child(4) {
    bottom: 19% !important;
    right: 7% !important;
  } */

  .feature-item img {
    width: 13px !important;
    height: 13px !important;
    margin-right: auto !important;
  }
}

@media (min-width: 431px) and (max-width: 615px) {
  .btn-primary {
    padding: 10px 13px !important;
    font-size: 24px !important;
  }

  .hero {
    min-height: 49vh !important;
    padding: 69px 20px 0 !important;
  }

  .hero-text {
    width: 82vw !important;
    margin-top: -120px !important;
  }

  .hero-text h1 {
    font-size: 34px !important;
    margin: 20px 0 0px 0 !important;
  }

  .hero-text p {
    font-size: 21px !important;
    margin-bottom: 25px !important;
    margin-top: 18px !important;
  }

  /* .feature-item {
    padding: 8px 8px !important;

    font-size: 10px !important;
    max-width: 250px !important;
  } */

  .feature-item:nth-child(1) {
    top: 10vh !important;
    left: 7vw !important;
  }

  .feature-item:nth-child(2) {
    top: 25vh !important;
    right: -1vw !important;
  }

  /* .feature-item img {
    width: 13px !important;
    height: 13px !important;
    margin-right: auto !important;
  } */
}

@media (min-width: 431px) and (max-width: 1022px) {
  .faq-right {
    max-width: 80vw !important;
  }
}

@media (max-width: 1023px) {
  .star-challenges {
    font-size: clamp(24px, 10vw, 130px) !important;
  }

  .hero {
      background:
        radial-gradient(circle at -20% 0%, #ff3c73 0%, transparent 45%),
        radial-gradient(circle at 127% -13%, #ff3c73 0%, transparent 30%),
        radial-gradient(circle at 50% 0%, transparent 0%, rgba(59,0,19,0.35) 70%, rgba(255,60,115,0.6) 85%),
        linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
        url('../img/background.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .hero::before {
    background: #f31352;
    mix-blend-mode: color-burn;
    background: none;
  }

  .hero::after {
    z-index: 3;
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(
      circle at 50% 13%,
      transparent 40%,
      rgba(0, 0, 0, 0.6) 51%,
      rgba(0, 0, 0, 0.8) 100%
    );
    mix-blend-mode: multiply;

    pointer-events: none;
    z-index: 3;
  }

  .hero .container {
    flex-direction: column;
    align-items: center;
    padding-bottom: 11px;
  }

  .badge {
    display: none;
  }

  .hero-image {
    order: -1;
    position: relative;
    bottom: auto;
    margin-bottom: 20px;
  }

  .hero-image img {
    margin-right: -50px;
    width: 80%;
    transform: none;
    filter: drop-shadow(0 0 30px rgba(255, 60, 115, 0.516));
  }

  .light-wrapper {
    position: absolute;
    bottom: 60px;
    left: 60%;
    transform: translateX(-50%);
    z-index: 1;
    width: 60%;
  }

  .light-wrapper img {
    width: 100%;
  }

  .hero-text {
    margin-top: -170px;
    width: 80vw;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 5;
  }

  .hero-text h1 {
    font-size: 40px;

    filter: drop-shadow(0 0 30px rgb(0, 0, 0));
  }

  .hero-text p {
    font-size: 25px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-primary {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 60px rgba(255, 255, 255, 0.4);
  }

  .benefits {
    position: relative;
    transform: none;
    margin: 30px 0;
    width: 100%;

    left: auto;
    bottom: auto;

    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(3px);

    border-radius: 15px;
    box-shadow:
      inset 0 0 10px rgb(255, 255, 255),
      0px 0px 50px rgb(255, 255, 255);
      
    gap: 5px;
  }

  .benefit-item {
    width: fit-content;
    gap: 2;
  }

  .benefit-item img {
    width: 25%;
  }

  .benefit-item div {
    display: inline-block;

    font-size: 18px;
    width: fit-content;
    white-space: normal;
  }

  .now-rap {
    white-space: nowrap !important;
  }

  .benefit-mobile {
    display: none;
  }

  .icon-insta {
    top: 0;
    bottom: unset;
  }

  .challenges {
    padding: 60px 20px 0 20px;
  }

  .challenges .container {
    padding-bottom: 60px;
  }

  .challenges-list {
    display: flex;
    flex-direction: column;
    text-align: center;

    max-width: 70vw;
    gap: 8px;
  }

  .star-challenges {
    font-size: 80px;
  }

  .star-challenges-left {
    left: 2%;
    top: 32%;
  }

  .star-challenges-right {
    right: 3%;
    top: 40%;
  }

  .star-challenges-center {
    left: 5%;
    top: 60%;
  }

  .btn-dark {
    font-size: 26px;
  }

  .steps .container {
    max-width: 77vw;
    padding-bottom: 30px;
  }

  .steps-header h2 {
    line-height: 1.2;
    margin-bottom: 20px;
    font-size: 53px;
    font-weight: 500;
    width: 100%;
  }

  .steps-header p {
    font-size: 22px;
    line-height: 1.3;
    width: 100%;
  }

  .star-steps-right {
    display: none;
  }

  .testimonials {
    padding: 0;
    height: auto;

    gap: 40px;
    padding: 0 0 40px 0;
  }

  .testimonials-left h2 {
    font-size: 50px;
  }

  .testimonials-left p {
    font-size: 22px;
    width: 100%;
  }

  .testimonials-container {
    display: flex;
    flex-direction: column;
    text-align: center;

    width: 75vw;
  }

  .testimonial {
    min-height: 50vh;
    flex: 0 0 280px;
    width: 280px;
  }

  .testimonial p {
    font-size: 20px;
  }

  .about {
    background:
      linear-gradient(200deg, #e33768b5, #000000ce);
  }

  .about-container {
    flex-direction: column;
    height: auto;
    align-items: center;
    justify-content: center;

    margin-top: -30px;
  }

  .about-info {
    width: 80%;
    max-width: 100%;
    padding: 0;
    margin: 50px 0 25px 0;
  }

  .about-header {
    display: flex;
    flex-direction: column;

    gap: 30px;
  }

  .about-description {
    color: #d8d8d8;
    margin-bottom: 45px;
    letter-spacing: 0.5px;
  }

  .about-photo {
    position: relative;
    width: 100%;
    height: auto;
    order: 2;
    display: flex;
    justify-content: center;
    margin-top: -60px;
  }

  .about-photo img {
    background:
      linear-gradient(200deg, #e33768b5, #000000ce);
      /* linear-gradient(204deg, transparent 30%, #e33768b5 60%, #000000ce 100%); */
      
    background-size: 100% 85%, cover;
    background-position: center bottom, center;
    background-repeat: no-repeat;

    position: relative;
    height: auto;
    width: 80%;
    transform: none;
    filter: none;
    bottom: -49px;
  }

  .qualifications-list {
    grid-template-columns: 1fr;
  }

  .qual-card {
    padding: 10px 15px;
  }

  .qual-card img {
    width: 60px;
  }

  .faq-container {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;

    padding: 0;
    min-height: 0;

    gap: 30px;
    margin: 30px 0 45px 0;
  }

  .faq-left h2 {
    display: none;
  }

  .faq-right {
    max-height: 525px;
    min-height: 500px;
  }

  .footer-crp {
    text-align: center;
  }

  .footer-social {
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  .faq-item.active .faq-answer {
    display: block;

    max-height: 200px;
    opacity: 1;
    padding: 18px 22px;

    text-align: left;
  }

  .modal.active .modal-content {
    transform: scale(1);
  }

  /* BARRA DO HERO MOBILE */

  .benefits-tela {
    display: none;
  }

  .hero-image img {
    transform: scale(1.3);
  }

  .benefits-mobile {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
  }

  .feature-item {
    position: absolute; 
    display: inline-flex;
    align-items: center;

    padding: 10px 14px;
    gap: 8px;
    border-radius: 15px;

    font-size: 13px;
    font-weight: 500;
    color: #333;

    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(3px);

    box-shadow:
      inset 0 0 10px rgb(255, 255, 255),
      0px 0px 50px rgb(255, 255, 255);

    white-space: nowrap;

    max-width: 250px;

    transform: scale(1.1);
    min-width: fit-content;
  }
  
  .feature-item:nth-child(1) {
    top: 13%;
    left: 13%;
  }

  .feature-item:nth-child(2) {
    top: 26%;
    right: 1%;
  }

  .feature-item:nth-child(3) {
    bottom: 35%;
    left: 3%;
  }

  .feature-item:nth-child(4) {
    bottom: 19%;
    right: 7%;
  }

  .feature-item img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-right: auto;
  }

  .feature-item div {
    white-space: nowrap;
  }
}

@media (min-width: 1024px) and (max-width: 1440px) {
  .container {
    max-width: 86vw;
  }

  .testimonials {
    padding: 0 0 70px 6vw;
    min-height: 540px;
  }

  .about-photo img {
    height: 100%;
  }

  .faq-container {
    max-width: 86vw;
    padding: 0;
  }

  .faq-left {
    max-width: unset;
  }

  .faq-right {
    max-height: 590px;
  }

  .footer-container {
    max-width: 86vw;
  }
}

/* remove star */
@media (min-width: 1024px) {
  .star-challenges-center {
    display: none;
  }

  .about-container {
    margin-top: -30px;
  }
}

/* 4K resolution (TV) */
@media (min-width: 1441px) {
  .faq-container {
    padding-left: 0;
    padding-right: 0;
    max-width: 1200px;
  }

  .faq-left {
    max-width: 1200px;
    width: 100%;
  }

  .faq-right {
    max-width: 1200px;
    width: 100%;
    max-height: 525px;
  }

  .about-photo img {
    height: auto;
  }

  .about-info {
    padding: 5% 0 3% 0;
  }

  .testimonials {
    height: auto;
    padding: 0;
  }

  .testimonials-container {
    gap: unset;
  }

  .benefits {
    margin-left: 5%;
    margin-right: 5%;
  }
}