/* ===== RESET BÁSICO ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

/* ===== HEADER FIXO ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 0;
  background: transparent;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  height: 48px;
  width: auto;
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  filter: brightness(1.05);
}

.btn--header {
  background: linear-gradient(135deg, #0d2a3d 0%, #1d4b6e 100%);
  color: #fff;
  padding: 14px 38px;
  border-radius: 999px;
  font-size: 14px;
}

.btn--hero {
  background: linear-gradient(135deg, #32D2B7 0%, #1A6C5E 100%);
  color: #fff;
  padding: 18px 48px;
  border-radius: 999px;
  font-size: 16px;
  margin-top: 28px;
  align-self: flex-start;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding-top: 80px;
  position: relative;

  background-color: #f4f4f2;
  background-image: url('desk.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 32px;
  position: relative;
}

.hero__card {
  background: transparent;
  padding: 80px 80px 90px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}

.hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
  max-width: 60%;
  line-height: 1.15;
}

.hero__subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  max-width: 60%;
  line-height: 1.35;
}

.hero__subtitle strong {
  font-weight: 600;
}

/* ===== BADGES ===== */
.hero__badge {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #32D2B7;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.hero__badge--desktop {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #FFFFFF 0%, #70C526 100%);
  color: #0d2a3d;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hero__badge--mobile {
  display: none;
}

/* ===== SEÇÃO RECONHECIMENTO ===== */
.recognition {
  background-color: #0B2A3D;
  padding: 80px 32px;
  position: relative;
  text-align: center;
}

.recognition__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recognition__medal {
  width: 110px;
  height: auto;
}

.recognition__medal--desktop {
  display: block;
  margin-bottom: 32px;
}

.recognition__medal--mobile {
  display: none;
}

.recognition__title {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #32D2B7;
  margin-bottom: 12px;
  line-height: 1.2;
  max-width: 900px;
}

.recognition__subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 48px;
  line-height: 1.4;
}

.recognition__divider {
  display: none;
}

.recognition__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1100px;
  margin-bottom: 60px;
}

.recognition__card {
  background-color: #143D56;
  border-radius: 16px;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 180px;
}

.recognition__card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.recognition__card-text {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
}

.btn--recognition {
  background-color: #F2F5F4;
  color: #0B2A3D;
  padding: 18px 60px;
  border-radius: 999px;
  font-size: 16px;
  border: 2px solid #32D2B7;
  box-shadow: 0 0 0 2px rgba(50, 210, 183, 0.25);
}

.btn--recognition:hover {
  background-color: #fff;
  filter: brightness(1);
}

/* SETA DIVISÓRIA */
.recognition__divider-arrow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 200px;
  height: auto;
  z-index: 10;
  display: block;
}

/* ===== SEÇÃO COMO FUNCIONA ===== */
.how-it-works {
  background-color: #F2F5F4;
  padding: 100px 32px 80px;
  position: relative;
  overflow: hidden;
}

.how-it-works__flame {
  position: absolute;
  left: -100px;
  top: 30%;
  width: auto;
  height: 500px;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.how-it-works__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.how-it-works__title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #0B2A3D;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.3;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.how-it-works__content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.how-it-works__media {
  position: relative;
}

.how-it-works__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.how-it-works__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.how-it-works__subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #0B2A3D;
  line-height: 1.3;
  margin-bottom: 8px;
  display: inline;
}

.how-it-works__icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-left: 4px;
}

.how-it-works__paragraph {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #0B2A3D;
  line-height: 1.6;
  margin: 0;
}

.how-it-works__heading {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 600;
  color: #0B2A3D;
  text-align: center;
  line-height: 1.2;
  margin: 0 0 60px;
}

.how-it-works__hotmart-badge {
  display: none;
}

/* ===== MÓDULOS ===== */
.modules {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.module {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #1f1f1f;
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.module__content {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: left;
}

.module__number {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #B8B8B8;
  margin-bottom: 8px;
  display: block;
}

.module__title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #E87B1A;
  line-height: 1.2;
  margin-bottom: 20px;
}

.module__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.module__list li {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 1.8;
  padding-left: 16px;
  position: relative;
  text-align: left;
}

.module__list li::before {
  content: "•";
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
}

.module__image {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  background-color: #1f1f1f;
}

.module__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== SEÇÃO BÔNUS (DESKTOP) ===== */
.bonus {
  background-color: #F2F5F4;
  position: relative;
  padding-bottom: 80px;
}

.bonus__marquee {
  background-color: #0B2A3D;
  overflow: hidden;
  padding: 18px 0;
  white-space: nowrap;
}

.bonus__marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  animation: marquee-scroll 30s linear infinite;
}

.bonus__marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.bonus__marquee-item img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.bonus__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

.bonus__text {
  display: flex;
  flex-direction: column;
}

.bonus__title {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #0B2A3D;
  line-height: 1.2;
  margin-bottom: 28px;
}

.bonus__title-top {
  display: block;
  color: #E87B1A;
}

.bonus__subtitle {
  display: none;
}

.bonus__item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.bonus__item-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.bonus__item-text {
  display: flex;
  flex-direction: column;
}

.bonus__item-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #0B2A3D;
  line-height: 1.3;
  margin: 0;
}

.bonus__item-desc {
  display: none;
}

.bonus__warning {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
}

.bonus__warning-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.bonus__warning span {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #0B2A3D;
  line-height: 1.4;
}

.bonus__package {
  display: flex;
  justify-content: center;
}

.bonus__package img {
  width: 100%;
  max-width: 420px;
  height: auto;
  margin-top: -200px;
  position: relative;
  z-index: 5;
}

/* ===== SEÇÃO IA ===== */
/* No DESKTOP: a foto da professora é o BACKGROUND da seção.
   O conteúdo HTML (título, checks, robô) fica posicionado à direita. */
.ai {
  background-color: #0B2A3D;
  background-image: url('desk-ia.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  aspect-ratio: 1911 / 843;
}

.ai__container {
  max-width: 1280px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;   /* conteúdo à direita */
  padding: 0 60px;
}

/* Conteúdo do lado direito */
.ai__content {
  width: 50%;                  /* metade direita da seção */
  max-width: 620px;
}

.ai__title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 18px;
}

.ai__divider {
  width: 100%;
  max-width: 480px;
  height: 4px;
  background-color: #B5D334;
  border-radius: 999px;
  margin-bottom: 36px;
}

.ai__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.ai__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ai__list li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ai__check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.ai__list h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin: 0;
}

.ai__robot img {
  width: 100%;
  height: auto;
  display: block;
}

.ai__robot--desktop {
  max-width: 280px;
  flex-shrink: 0;
}

.ai__robot--mobile {
  display: none;
}

.ai__warning {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 32px;
}

.ai__warning-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ai__warning span {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #B8C4CC;
  line-height: 1.6;
}

/* ===== SEÇÃO INVESTIMENTO ===== */
.pricing {
  background-color: #F2F5F4;
  padding: 80px 32px;
}

.pricing__container {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing__title {
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 600;
  text-align: center;
  background: linear-gradient(90deg, #FF7C00 0%, #F35500 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.pricing__subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #5a6b78;
  text-align: center;
  margin-bottom: 50px;
}

.pricing__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 70px;
}

.pricing__card {
  border-radius: 16px;
  padding: 36px 32px;
}

.pricing__card--basic {
  background-color: #fff;
  border: 1px solid #e3e3e3;
}

.pricing__card--featured {
  background-color: #0B2A3D;
  border: 2px solid #FF7C00;
  box-shadow: 0 12px 40px rgba(255, 124, 0, 0.2);
}

.pricing__card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #A6A6A6;
  text-align: center;
  margin-bottom: 24px;
}

.pricing__card-title--featured {
  background: linear-gradient(90deg, #FF7C00 0%, #F35500 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing__list li {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.pricing__list li img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing__card--basic .pricing__list li {
  color: #A6A6A6;
}

.pricing__list--featured li {
  color: #fff;
}

.pricing__card--featured .pricing__list li img {
  filter: brightness(0) invert(1);
}

.pricing__bonus-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #B5D334;
  margin: 22px 0 16px;
}

.pricing__price-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f7f7f7;
  border-radius: 12px;
  padding: 24px;
  margin-top: 28px;
}

.pricing__price-box--featured {
  background-color: transparent;
  padding: 24px 0 0;
}

.pricing__price-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #8a98a3;
  margin-bottom: 8px;
}

.pricing__price {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

.pricing__price--basic {
  font-size: 28px;
  color: #A6A6A6;
  margin-bottom: 18px;
}

.pricing__price-old {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #8a98a3;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.pricing__price--featured {
  font-size: 30px;
  background: linear-gradient(90deg, #FF7C00 0%, #F35500 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2px;
}

.pricing__price-installment {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #B5D334;
  margin-bottom: 20px;
}

.pricing__btn {
  border-radius: 999px;
  font-size: 13px;
  width: 100%;
}

/* Botão do card convencional — APAGADO e não clicável */
.pricing__btn--basic {
  background: #b0b0b0;
  color: #fff;
  padding: 14px 24px;
  cursor: default;
  pointer-events: none;
}

.pricing__btn--basic:hover {
  transform: none;
  box-shadow: none;
  filter: none;
}

.pricing__btn--featured {
  background-color: #1faa4b;
  color: #fff;
  padding: 18px 24px;
  font-size: 15px;
}

/* CARD GARANTIA */
.guarantee {
  background-color: #e8e8e8;
  border-radius: 16px;
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.guarantee__title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #FF7C00;
  margin-bottom: 14px;
}

.guarantee__paragraph {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #0B2A3D;
  line-height: 1.6;
  max-width: 480px;
}

.guarantee__seal {
  flex-shrink: 0;
}

.guarantee__seal img {
  width: 100%;
  max-width: 200px;
  height: auto;
}

/* ===== SEÇÃO PROFESSORA ===== */
.teacher {
  background-color: #0B2A3D;
  background-image: url('expert.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  aspect-ratio: 1911 / 1183;
  display: flex;
  align-items: center;
}

.teacher__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 80px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.teacher__content {
  max-width: 440px;
  margin-right: 40px;
}

.teacher__label {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #E87B1A;
  line-height: 1.2;
  margin: 0;
}

.teacher__name {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 18px;
}

.teacher__bio {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
}

/* ===== MOBILE (até 768px) ===== */
@media (max-width: 768px) {

  /* HEADER */
  .header__inner {
    padding: 0 16px;
  }

  .header__logo img {
    height: 38px;
  }

  .btn--header {
    padding: 10px 22px;
    font-size: 12px;
  }

  /* HERO */
  .hero {
    background-color: #0B2A3D;
    background-image: url('mob.webp');
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 80px;
    padding-bottom: 40px;
    min-height: auto;
    align-items: stretch;
    justify-content: flex-start;
  }

  .hero__container {
    padding: 24px 20px 40px;
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero__card {
    background: none;
    box-shadow: none;
    padding: 0;
    min-height: auto;
    align-items: center;
    text-align: center;
    margin-top: 60vw;
    width: 100%;
  }

  .hero__title {
    font-size: 38px;
    max-width: 100%;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  }

  .hero__subtitle {
    font-size: 18px;
    max-width: 100%;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  }

  .btn--hero {
    align-self: center;
    width: 100%;
    max-width: 360px;
    padding: 18px 32px;
    margin-top: 24px;
  }

  /* BADGES */
  .hero__badge--desktop {
    display: none;
  }

  .hero__badge--mobile {
    display: inline-flex;
    position: static;
    left: auto;
    transform: none;
    margin: 18px auto 0;
    background: rgba(50, 210, 183, 0.12);
    border: 1.5px solid rgba(50, 210, 183, 0.3);
    color: #32D2B7;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 14px 22px;
    border-radius: 999px;
    white-space: normal;
    text-align: center;
    max-width: 360px;
    width: 100%;
    justify-content: center;
  }

  /* RECONHECIMENTO */
  .recognition {
    padding: 60px 20px;
  }

  .recognition__medal--desktop {
    display: none;
  }

  .recognition__medal--mobile {
    display: block;
    width: 130px;
    margin-bottom: 40px;
  }

  .recognition__divider {
    display: block;
    width: 60px;
    height: 3px;
    background-color: #32D2B7;
    border-radius: 999px;
    margin: 8px auto 32px;
  }

  .recognition__title {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .recognition__subtitle {
    font-size: 17px;
    margin-bottom: 0;
    color: #fff;
  }

  .recognition__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 50px;
  }

  .recognition__card {
    padding: 28px 16px;
    min-height: 200px;
    border-radius: 14px;
  }

  .recognition__card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

  .recognition__card-text {
    font-size: 14px;
    line-height: 1.4;
  }

  .btn--recognition {
    width: 100%;
    max-width: 360px;
    padding: 18px 32px;
  }

  .recognition__divider-arrow {
    width: 130px;
  }

  /* COMO FUNCIONA */
  .how-it-works {
    padding: 70px 20px 50px;
  }

  .how-it-works__flame {
    display: none;
  }

  .how-it-works__title {
    font-size: 22px;
    margin-bottom: 32px;
  }

  .how-it-works__content {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 60px;
  }

  .how-it-works__subtitle {
    display: none;
  }

  .how-it-works__text {
    text-align: center;
    gap: 14px;
  }

  .how-it-works__paragraph {
    font-size: 14px;
  }

  .how-it-works__heading {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .how-it-works__hotmart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px auto 0;
    padding: 14px 28px;
    background-color: rgba(254, 64, 2, 0.08);
    border: 2px solid rgba(254, 64, 2, 0.2);
    border-radius: 8px;
    color: #FE4002;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    max-width: 360px;
    width: 100%;
  }

  .how-it-works__hotmart-icon {
    width: auto;
    height: 18px;
    flex-shrink: 0;
    object-fit: contain;
  }

  /* MÓDULOS */
  .modules {
    gap: 20px;
  }

  .module {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 12px;
  }

  .module__image {
    height: 180px;
    min-height: 180px;
    order: -1;
  }

  .module__content {
    padding: 24px 24px 28px;
    text-align: left;
  }

  .module__title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .module__list li {
    font-size: 13px;
    line-height: 1.7;
  }

  /* ===== BÔNUS MOBILE ===== */
  .bonus {
    padding-bottom: 50px;
  }

  .bonus__marquee {
    padding: 14px 0;
  }

  .bonus__marquee-item {
    font-size: 13px;
    gap: 8px;
  }

  .bonus__marquee-item img {
    width: 16px;
    height: 16px;
  }

  .bonus__marquee-track {
    gap: 32px;
    animation-duration: 20s;
  }

  .bonus__container {
    grid-template-columns: 1fr;
    padding: 36px 20px 0;
    gap: 0;
  }

  .bonus__title {
    font-size: 26px;
    text-align: center;
    margin-bottom: 12px;
  }

  .bonus__subtitle {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #5a6b78;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 28px;
  }

  .bonus__item {
    background-color: #fff;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 14px;
    gap: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  }

  .bonus__item-icon {
    width: 40px;
    height: 40px;
  }

  .bonus__item-title {
    font-size: 16px;
  }

  .bonus__item-desc {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #7a8a96;
    line-height: 1.4;
    margin: 4px 0 0;
  }

  .bonus__warning {
    background-color: rgba(255, 193, 7, 0.15);
    border: 1.5px solid rgba(255, 193, 7, 0.4);
    border-radius: 12px;
    padding: 14px 16px;
    margin-top: 20px;
    align-items: center;
  }

  .bonus__warning-icon {
    width: 24px;
    height: 24px;
    margin-top: 0;
  }

  .bonus__warning span {
    font-size: 12px;
  }

  .bonus__package {
    display: none;
  }

  /* ===== IA MOBILE ===== */
  /* No mobile a foto vira conteúdo normal — tira o background */
  .ai {
    background-image: none;
    aspect-ratio: auto;
    background-color: #0B2A3D;
  }

  .ai__container {
    display: block;
    padding: 40px 20px 30px;
  }

  .ai__content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .ai__title {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .ai__divider {
    max-width: 200px;
    margin: 0 auto 24px;
    height: 3px;
  }

  .ai__body {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .ai__list {
    width: 100%;
    gap: 12px;
  }

  .ai__list li {
    justify-content: flex-start;
  }

  .ai__list h3 {
    font-size: 16px;
  }

  .ai__check {
    width: 26px;
    height: 26px;
  }

  .ai__robot--desktop {
    display: none;
  }

  .ai__robot--mobile {
    display: block;
    width: 100%;
    margin-top: 10px;
  }

  .ai__robot--mobile img {
    width: 100%;
    height: auto;
  }

  .ai__warning {
    margin-top: 20px;
    text-align: left;
  }

  .ai__warning span {
    font-size: 12px;
  }

  /* ===== INVESTIMENTO MOBILE ===== */
  .pricing {
    padding: 50px 20px;
  }

  .pricing__title {
    font-size: 26px;
  }

  .pricing__subtitle {
    font-size: 13px;
    margin-bottom: 32px;
  }

  .pricing__cards {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 40px;
  }

  .pricing__card--basic {
    display: none;
  }

  .pricing__card--featured {
    padding: 28px 22px;
  }

  .guarantee {
    flex-direction: column-reverse;
    text-align: center;
    padding: 36px 24px;
    gap: 24px;
  }

  .guarantee__title {
    font-size: 22px;
  }

  .guarantee__paragraph {
    font-size: 13px;
  }

  .guarantee__seal img {
    max-width: 150px;
  }

  /* ===== PROFESSORA MOBILE ===== */
  .teacher {
    background-image: url('mob2.webp');
    background-size: 100% auto;
    background-position: center bottom;
    background-repeat: no-repeat;
    aspect-ratio: auto;
    min-height: auto;
    display: block;
    align-items: stretch;
  }

  .teacher__container {
    max-width: 100%;
    padding: 40px 20px;
    display: block;
  }

  .teacher__content {
    max-width: 100%;
    margin-right: 0;
    text-align: left;
    padding-bottom: 110vw;
  }

  .teacher__label {
    font-size: 20px;
  }

  .teacher__name {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .teacher__bio {
    font-size: 13px;
  }
}

/* ===== TELAS BEM PEQUENAS (até 380px) ===== */
@media (max-width: 380px) {
  .hero__title {
    font-size: 32px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .header__logo img {
    height: 32px;
  }

  .recognition__title {
    font-size: 22px;
  }

  .recognition__card-text {
    font-size: 13px;
  }

  .how-it-works__title {
    font-size: 20px;
  }

  .how-it-works__heading {
    font-size: 22px;
  }
}
/* ===== FOOTER ===== */
.footer {
  background-color: #071a26;
  padding: 28px 20px;
  text-align: center;
}

.footer__text {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #8a98a3;
  margin: 0;
}