*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  color: #0d2b2b;
  background-color: #fff;
}

/* VARIÁVEIS DE COR */
:root {
  --green-dark: #005947;
  --green-light: #cfdac2;
  --blue-main: #005aab;
}

/* CONTAINER CENTRAL */
.container {
  width: min(1120px, 100% - 40px);
  margin: 0 auto;
}

/* BOTÕES GERAIS */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  background: linear-gradient(90deg, #005947, #017a62, #005947);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

/* SEÇÕES GERAIS */
.section {
  padding: 70px 0;
}

.section-light-green {
  background-color: var(--green-light);
}

.section-dark-green {
  background-color: var(--green-dark);
  color: white;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 24px;
}

/* SEÇÃO - HERO */
.hero-exact {
  background-color: var(--green-light);
}

.hero-wrapper {
  width: min(1180px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hero-left {
  margin-top: -10px;
}

.hero-logo {
  width: 280px;
  margin: -5px 0 5px 0;
}

.hero-title {
  font-size: 2.2rem;
  line-height: 1.18;
  font-weight: 800;
  color: var(--green-dark);
  max-width: 450px;
  margin-bottom: 15px;
}

.hero-highlight {
  background-color: var(--green-dark);
  color: var(--green-light);
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.12;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 50px;
}

.hero-sub {
  color: var(--green-dark);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 32px;
}

.hero-btn {
    background: linear-gradient(90deg, #005947, #017a62, #005947);
    color: #fff;
    padding: 15px 28px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    display: inline-block;
    margin-bottom: 30px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  overflow: visible;
}

.hero-right img {
  width: 158%;
  transform: translateX(5%) translateY(1px);
}

.hero-faixa-azul {
  background-color: var(--blue-main);
  color: #fff;
  font-size: 0.78rem;
  text-align: center;
  padding: 12px 10px;
  letter-spacing: 0.02em;
}

/* SEÇÃO - PARA QUEM É O YOGAHEALING */
.pq-section {
  background-color: var(--green-dark);
  padding: 70px 0;
  color: #fff;
}

.pq-container {
  width: min(1180px, 92%);
  margin: auto;
  text-align: center;
}

.pq-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 45px;
}

.pq-cards-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.pq-card {
  width: 19%;
  border: 1px solid var(--green-light);
  border-radius: 16px;
  padding: 22px 16px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 250px;
}

.pq-icon {
  width: 55px;
  margin-left: -120px;
  margin-bottom: 20px;
}

.pq-text {
  line-height: 1.45;
  text-align: left;
  margin-bottom: 12px;
}

.pq-sub {
  display: inline-block;
  background-color: var(--green-light);
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 6px;
  border: 1px solid rgba(15, 78, 60, 0.20);
  margin-top: auto;
}

.pq-bottom-text {
  font-size: 1rem;
  font-weight: 800;
  margin-top: 10px;
}

.pq-button {
    display: inline-block;
    background-color: var(--green-light);
    color: var(--green-dark);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 32px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid rgba(15, 78, 60, 0.25);
    margin-top: 10px;
}

.pq-button:hover {
    filter: none;
    background-color: var(--green-light);
    cursor: default;
}

/* SEÇÃO - A DOR QUE TE TROUXE ATÉ AQUI */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10px;
}

.text-block {
  max-width: 520px;
  color: var(--blue-main);
}

.text-block p {
  color: var(--green-dark);
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.2;
}

.image-block {
  display: flex;
  justify-content: center;
}

.image-block img {
  width: 100%;
  max-width: 400px;
}

/* SEÇÃO – O QUE VOCÊ VAI ENCONTRAR NAS AULAS */
.section-blue {
    background-color: var(--green-dark);
    padding: 80px 0;
    color: #ffffff;
    overflow: hidden;
}

.section-blue .section-title-center {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 50px;
    text-align: center;
}

.section-dark-green .container,
.section-blue .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 40px;
}

.slider-track {
    display: flex;
    gap: 28px;
    padding: 0 10px;
    transition: transform 0.45s ease;
}

.slide {
    flex: 0 0 calc((100% - 56px) / 3);
    background-color: transparent;
    border: 1px solid var(--green-light);
    border-radius: 18px;
    padding: 22px 16px;
    text-align: center;
    color: var(--green-light);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;

    background-color: var(--green-light);
    
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;

    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.slider-dots {
    text-align: center;
    margin-top: 20px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    margin: 0 6px;
    border-radius: 50%;
    display: inline-block;
    background-color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: 0.3s;
}

.slider-dots .dot.active {
    background-color: #fff;
}

/* SEÇÃO – BÔNUS EXCLUSIVOS */
.section-light-green {
  background-color: var(--green-light);
  padding: 90px 0;
}

.section-light-green .section-title-center {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  font-weight: 800;
  color: var(--green-dark);
}

.cards-bonus {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card-bonus {
  background: linear-gradient(90deg, #005947, #017a62, #005947);
  border-radius: 22px;
  padding: 30px 24px;
  text-align: center;
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.card-bonus img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
}

.card-bonus h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.card-bonus p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.section-center-btn {
    margin-top: 40px;
    text-align: center;
}

/* SEÇÃO - DEPOIMENTOS */

.section-blue {
    background-color: var(--blue-main);
    padding: 70px 0;
    color: #ffffff;
}

/* ============================
   DEPOIMENTOS SEM FOTO
   ============================ */

.testimonial-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 40px;
    transition: transform .45s ease;
    padding: 0 5px;
}

.testimonial-card {
    flex-shrink: 0;
    width: 100%;
    border: 2px solid #ffffff;
    border-radius: 22px;
    padding: 40px 50px; /* padding mais uniforme */
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    text-align: left;

    /* Remover espaço que antes era para a foto */
    padding-right: 50px !important;
}

.testimonial-card h3 {
    font-size: 1.8rem;
    margin-bottom: 18px;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.55;
}

.testimonial-photo {
    display: none !important; /* remove imagem definitivamente */
}

.testimonial-dots {
    text-align: center;
    margin-top: 25px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    margin: 0 6px;
    border-radius: 50%;
    display: inline-block;
    background-color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: 0.3s;
}

.testimonial-dots .dot.active {
    background-color: #ffffff;
}

/* SEÇÃO - OFERTA */
.oferta-section {
    background:  linear-gradient(90deg, #005947, #017a62, #005947);
    padding: 90px 0;
    color: #ffffff;
}

.oferta-wrapper {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding-inline: 20px;
}

.oferta-texto {
    flex: 1;
    max-width: 480px;
}

.oferta-texto h2 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 30px;
}

.oferta-texto p {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 18px;
    max-width: 420px;
}

.oferta-card {
    background: var(--green-light);
    color: var(--green-dark);
    padding: 50px 40px;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
    max-width: 500px;
    margin: auto;
}

.oferta-logo {
    width: 320px;
    margin: 0 auto 25px;
}

.oferta-subtitle {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.oferta-parcelas {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 10px 0 5px;
}

.oferta-preco {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
    margin: 10px 0 15px;
}

.oferta-preco .cifrao {
    font-size: 2.5rem;
    font-weight: 800;
}

.oferta-preco .valor {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
}

.oferta-avista {
    font-size: 1.2rem;
    margin-bottom: 35px;
    font-weight: 600;
}

/* SEÇÃO - QUEM IRÁ TE GUIAR */
.guia-wrapper {
  max-width: 1300px;
  margin: auto;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  gap: 70px;
}

.guia-img img {
  width: 980px;
  max-width: 100%;
  border-radius: 40px;
}

.guia-pretitulo {
  font-size: 1.1rem;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.guia-titulo {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
}

.guia-texto p {
  font-size: 1.15rem;
  line-height: 1.2;
}

.guia-lista {
  padding-left: 22px;
  margin: 20px 0;
}

.guia-lista li {
  font-size: 1.15rem;
  margin-bottom: 10px;
  position: relative;
}

.guia-lista li::before {
  content: "•";
  position: absolute;
  left: -18px;
  color: #80c7ff;
}

/* SEÇÃO - AO FINAL DO CURSO */
.cta-final-wrapper {
  max-width: 1300px;
  margin: auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: space-between;
}

.cta-final-text {
  flex: 1;
}

.cta-final-text .section-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--blue-main);
  margin-bottom: 30px;
  white-space: nowrap;
}

.list-final {
  list-style: none;
  margin-bottom: 35px;
}

.list-final li {
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--green-dark);
  margin-bottom: 14px;
  padding-left: 22px;
  position: relative;
}

.list-final li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 1.8rem;
  color: #017a62;
}

.cta-final-image {
  flex: 1;
  text-align: right;
}

.cta-final-image img {
  width: 100%;
  max-width: 460px;
  border-radius: 50px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* FOOTER */
.site-footer {
  background-color: var(--green-dark);
  color: #ffffff;
  padding: 28px 0;
  text-align: center;
  font-size: 0.85rem;
  margin-top: 60px;
}

.footer-container {
  width: min(1100px, 90%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

footer,
.site-footer {
    margin-top: 60px !important;
    padding-top: 28px;
}

.section:last-of-type {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body {
    background-color: var(--green-light);
}

/* RESPONSE - SEÇÃO 1 */
@media (max-width: 1270px) {

  .hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-right {
    display: none;
  }

  .hero-left {
    margin-top: 0;
  }

  .hero-btn {
    margin: 25px auto 0 auto;
    display: block;
  }
}

@media (max-width: 900px) {

  .hero-logo {
    width: 300px;
    margin: 0 auto 15px;
  }

  .hero-title {
    margin: 0 auto 15px auto;
    font-size: 1.9rem;
  }

  .hero-highlight {
    font-size: 1.65rem;
  }
}

@media (max-width: 600px) {

  .hero-wrapper {
    width: 100%;
    padding: 0 20px;
  }

  .hero-logo {
    width: 240px;
  }

  .hero-title {
    font-size: 1.6rem;
    line-height: 1.22;
  }

  .hero-highlight {
    font-size: 1.3rem;
    padding: 6px 10px;
  }

  .hero-btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 16px 20px;
  }
}

@media (max-width: 900px) {
  .hero-btn {
    margin-bottom: 40px;
  }
}

@media (max-width: 380px) {
  .hero-logo {
    width: 200px;
  }

  .hero-title {
    font-size: 1.42rem;
  }

  .hero-highlight {
    font-size: 1.2rem;
  }
}

/* RESPONSE - SEÇÃO 2 */
@media (max-width: 1024px) {
  .pq-cards-row {
    gap: 16px;
  }

  .pq-card {
    width: 23%;
    padding: 20px 14px;
  }

  .pq-icon {
    margin-left: 0;
  }
}

@media (max-width: 900px) {
  .pq-cards-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .pq-card {
    width: 100%;
    min-height: auto;
  }

  .pq-icon {
    margin-left: 0;
    width: 60px;
  }
}

@media (max-width: 600px) {
  .pq-title {
    font-size: 1.7rem;
  }

  .pq-cards-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pq-card {
    padding: 22px 18px;
  }

  .pq-icon {
    width: 58px;
    margin-left: 0;
  }

  .pq-text {
    text-align: center;
    font-size: 0.95rem;
  }

  .pq-sub {
    font-size: 0.75rem;
  }
}

@media (max-width: 380px) {
  .pq-title {
    font-size: 1.5rem;
  }

  .pq-card {
    padding: 18px 14px;
  }

  .pq-text {
    font-size: 0.9rem;
  }
}

/* RESPONSE - SEÇÃO 3 */
@media (max-width: 1024px) {
  .grid-2 {
    gap: 24px;
  }

  .image-block img {
    max-width: 350px;
  }

  .text-block p {
    font-size: 0.95rem;
  }
}

@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .text-block {
    max-width: 100%;
    margin: 0 auto;
  }

  .text-block p {
    text-align: center;
  }

  .image-block img {
    max-width: 320px;
  }
}

@media (max-width: 600px) {

  .grid-2 {
    gap: 20px;
  }

  .text-block p {
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .image-block img {
    max-width: 280px;
  }
}

@media (max-width: 380px) {

  .text-block p {
    font-size: 0.86rem;
  }

  .image-block img {
    max-width: 240px;
  }
}

/* RESPONSE - SEÇÃO 4 */
@media (max-width: 1200px) {
    .slide {
        flex: 0 0 calc((100% - 40px) / 3);
    }
}

@media (max-width: 900px) {
    .slider-wrapper {
        overflow: visible; 
    }

    .slider-track {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0;
        transform: none !important;
    }

    .slide {
        flex: none;
        width: 100%;
    }

    .slider-dots {
        display: none;
    }
}

@media (max-width: 600px) {
    .slider-track {
        grid-template-columns: 1fr;
    }

    .slide {
        padding: 20px 14px;
    }

    .card-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 12px;
    }

    .section-blue .section-title-center {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }
}

@media (max-width: 380px) {
    .section-blue .section-title-center {
        font-size: 1.6rem;
    }

    .slide {
        padding: 18px 12px;
    }
}

/* RESPONSE - SEÇÃO 5 */
@media (max-width: 1100px) {
  .card-bonus img {
    height: 230px;
  }
}

@media (max-width: 900px) {
  .cards-bonus {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .section-light-green .section-title-center {
    font-size: 1.9rem;
  }

  .card-bonus img {
    height: 220px;
  }
}

@media (max-width: 600px) {
  .cards-bonus {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-bonus {
    padding: 24px 18px;
  }

  .card-bonus img {
    height: 210px;
  }

  .card-bonus h3 {
    font-size: 1.3rem;
  }

  .card-bonus p {
    font-size: 0.9rem;
  }

  .section-light-green .section-title-center {
    font-size: 1.7rem;
    margin-bottom: 35px;
  }
}

@media (max-width: 380px) {
  .card-bonus img {
    height: 180px;
  }

  .card-bonus {
    padding: 20px 14px;
  }
}

/* RESPONSE - SEÇÃO 6 */
@media (max-width: 850px) {

    .section-blue {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .testimonial-wrapper {
        max-width: 500px;
        width: 100%;
        margin: center;
        padding: center;
        display: flex;
        justify-content: center;
    }

    .testimonial-track {
        display: flex;
        flex-direction: column;
        gap: 30px;
        transform: none !important;
        padding: 0 !important;
        margin: 0 auto;
        width: 100%;
        align-items: center;
    }

    .testimonial-card {
        width: 100% !important;
        max-width: 420px;
        margin: center;
        padding: 40px 24px;
    }

    .testimonial-dots {
        display: none;
    }
}

@media (max-width: 450px) {

    .testimonial-card {
        padding: 30px 18px 30px;
    }

    .testimonial-card h3 {
        font-size: 1.4rem;
    }

    .testimonial-card p {
        font-size: 0.95rem;
        line-height: 1.45;
    }
}

/* RESPONSE - SEÇÃO 7 */
@media (max-width: 1100px) {
    .oferta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .oferta-texto {
        max-width: 650px;
    }

    .oferta-texto p {
        margin: 0 auto 18px auto;
    }

    .oferta-card {
        max-width: 520px;
        width: 100%;
    }
}

@media (max-width: 768px) {

    .oferta-section {
        padding: 70px 0;
    }

    .oferta-texto h2 {
        font-size: 28px;
        line-height: 1.22;
    }

    .oferta-texto p {
        font-size: 18px;
        line-height: 1.35;
        max-width: 90%;
    }

    .oferta-logo {
        width: 260px;
    }

    .oferta-parcelas {
        font-size: 1.6rem;
    }

    .oferta-preco .cifrao {
        font-size: 2rem;
    }

    .oferta-preco .valor {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {

    .oferta-wrapper {
        padding-inline: 16px;
    }

    .oferta-texto h2 {
        font-size: 24px;
    }

    .oferta-texto p {
        font-size: 16px;
        line-height: 1.4;
    }

    .oferta-card {
        padding: 40px 24px;
        border-radius: 22px;
    }

    .oferta-logo {
        width: 210px;
        margin-bottom: 20px;
    }

    .oferta-subtitle {
        font-size: 1.3rem;
    }

    .oferta-parcelas {
        font-size: 1.45rem;
    }

    .oferta-preco .cifrao {
        font-size: 1.8rem;
    }

    .oferta-preco .valor {
        font-size: 3.2rem;
    }

    .oferta-avista {
        font-size: 1rem;
        margin-bottom: 28px;
    }
}

@media (max-width: 360px) {

    .oferta-logo {
        width: 170px;
    }

    .oferta-texto h2 {
        font-size: 21px;
    }

    .oferta-texto p {
        font-size: 15px;
    }

    .oferta-preco .valor {
        font-size: 2.7rem;
    }
}

/* RESPONSE - SEÇÃO 8 */
@media (max-width: 1100px) {

  .guia-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .guia-img img {
    width: 80%;
    max-width: 520px;
  }

  .guia-lista {
    padding-left: 0;
    text-align: left;
    margin: 20px auto;
    max-width: 500px;
  }
}

@media (max-width: 768px) {

  .guia-titulo {
    font-size: 2.2rem;
  }

  .guia-pretitulo {
    font-size: 1rem;
  }

  .guia-texto p {
    font-size: 1.05rem;
    line-height: 1.35;
  }

  .guia-img img {
    width: 90%;
    max-width: 460px;
    border-radius: 30px;
  }

  .guia-lista li {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {

  .guia-wrapper {
    padding-inline: 10px;
  }

  .guia-titulo {
    font-size: 1.9rem;
  }

  .guia-texto p {
    font-size: 1rem;
  }

  .guia-lista li {
    font-size: 1rem;
  }

  .guia-img img {
    width: 100%;
    max-width: 360px;
    border-radius: 24px;
  }
}

@media (max-width: 360px) {

  .guia-titulo {
    font-size: 1.7rem;
  }

  .guia-texto p {
    font-size: 0.95rem;
  }

  .guia-img img {
    max-width: 300px;
  }
}

/* RESPONSE - SEÇÃO 9 */
@media (max-width: 992px) {
  .cta-final-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 0 20px;
  }

  .cta-final-image {
    text-align: center;
  }

  .cta-final-text .section-title {
    font-size: 2.2rem;
    white-space: normal;
  }

  .list-final li {
    font-size: 1.1rem;
  }

  .cta-final-image img {
    max-width: 380px;
  }
}

@media (max-width: 600px) {
  .cta-final-text .section-title {
    font-size: 1.8rem;
  }

  .list-final li {
    font-size: 1rem;
    line-height: 1.3;
    padding-left: 18px;
  }

  .list-final li::before {
    font-size: 1.4rem;
    top: -2px;
  }

  .cta-final-image img {
    max-width: 320px;
    border-radius: 30px;
  }
}

@media (max-width: 400px) {
  .cta-final-text .section-title {
    font-size: 1.6rem;
  }

  .cta-final-image img {
    max-width: 280px;
  }
}
