/* ============================================
   Arte do Sushi — Design Tokens & Base Styles
   Light editorial theme · Mobile-first
   ============================================ */

/* --- Design Tokens --- */
:root {
  /* Core palette */
  --bg:         #121013;
  --cream:      #FBF1EC;
  --cream-dark: #F2E4DA;
  --text-dark:  #2A2A2A;
  --text:       #F6F0E7;
  --muted:      #7A7370;
  --muted-lt:   #B7ADA1;
  --accent:     #E8542A;
  --accent-dk:  #C9431D;
  --white:      #FFFFFF;

  /* Typography */
  --font-display: "Anton", system-ui, sans-serif;
  --font-serif:   "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
                  Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Spacing scale */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --max-width: 1120px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.25s;
}

/* --- Extended base (supplements inline critical CSS) --- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h2 { font-size: clamp(1.5rem, 5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 3.5vw, 2rem); }

p {
  max-width: 65ch;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.section {
  padding-block: var(--space-3xl);
}

@media (min-width: 768px) {
  .section {
    padding-block: var(--space-4xl);
  }
}

/* --- Buttons (generic) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-display);
  font-size: clamp(1rem, 3vw, 1.25rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  background: var(--accent);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background var(--duration) var(--ease-out),
              transform var(--duration) var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}

.btn:hover,
.btn:focus-visible {
  background: var(--accent-dk);
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--full {
  width: 100%;
}

/* --- Dark sections (for future use below the hero) --- */
.section--dark {
  background: var(--bg);
  color: var(--text);
}

.section--dark .text-muted {
  color: var(--muted-lt);
}

/* --- Light sections --- */
.section--light {
  background: var(--cream);
  color: var(--text-dark);
}

/* --- Accessibility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   "O que você vai aprender" — Card Grid
   ============================================ */

.aprender {
  background: var(--cream);
  padding: 3.5rem 0 4rem;
}

.aprender__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Title */
.aprender__title {
  text-align: center;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
  color: var(--text-dark);
}

.aprender__title .light {
  display: block;
  font-weight: 400;
}

.aprender__title .bold {
  display: block;
  font-weight: 400;
}

/* Grid — explicit, mobile-first */
.aprender__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 601px) {
  .aprender__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 901px) {
  .aprender {
    padding: 4.5rem 0 5rem;
  }

  .aprender__title {
    margin-bottom: 3rem;
  }

  .aprender__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card — contained box */
.aprender__card {
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.aprender__card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

/* Card image — CONSTRAINED, fixed height */
.aprender__card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.aprender__card-img img {
  display: block;
  width: 100%;
  height: 200px;
  max-width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.aprender__card:hover .aprender__card-img img {
  transform: scale(1.04);
}

/* Card body / caption */
.aprender__card-body {
  padding: 1rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  align-items: center;
}

.aprender__card-body p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-dark);
  margin: 0;
}

.aprender__card-body strong {
  color: var(--accent);
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .aprender__card {
    transition: none;
  }
  .aprender__card:hover {
    transform: none;
  }
  .aprender__card-img img {
    transition: none;
  }
  .aprender__card:hover .aprender__card-img img {
    transform: none;
  }
}

/* ============================================
   "Veja os detalhes de cada módulo" — Accordion
   ============================================ */

.modulos {
  background: var(--cream);
  padding: 3.5rem 0 4rem;
}

.modulos__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Title */
.modulos__title {
  text-align: center;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
  color: var(--text-dark);
}

.modulos__title .light {
  display: block;
  font-weight: 400;
}

.modulos__title .bold {
  display: block;
  font-weight: 400;
}

/* --- Accordion container --- */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* --- Accordion item --- */
.accordion__item {
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

/* --- Header (button) --- */
.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  background: #ffffff;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  text-align: left;
  transition: background 0.2s ease, color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.accordion__header:hover {
  background: #f5ebe5;
}

.accordion__header:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

/* Label */
.accordion__label {
  flex: 1;
  min-width: 0;
}

.accordion__label strong {
  font-weight: 700;
}

/* Arrow indicator */
.accordion__arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: 12px;
  position: relative;
  transition: transform 0.3s ease;
}

.accordion__arrow::before,
.accordion__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  background: var(--text-dark);
  border-radius: 1px;
  transition: background 0.2s ease;
}

/* Horizontal bar */
.accordion__arrow::before {
  left: 4px;
  width: 16px;
  height: 2px;
  transform: translateY(-50%);
}

/* Vertical bar (forms the +, rotates to – when open) */
.accordion__arrow::after {
  left: 50%;
  width: 2px;
  height: 16px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s ease;
}

/* --- OPEN state --- */
.accordion__item.is-open > .accordion__header {
  background: var(--accent);
  color: #ffffff;
}

.accordion__item.is-open > .accordion__header .accordion__arrow::before,
.accordion__item.is-open > .accordion__header .accordion__arrow::after {
  background: #ffffff;
}

/* Rotate the vertical bar to 0 = minus sign */
.accordion__item.is-open > .accordion__header .accordion__arrow::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* --- Body (collapsible) --- */
.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.accordion__item.is-open > .accordion__body {
  max-height: 800px; /* generous max — content will determine actual height */
}

.accordion__content {
  padding: 1.25rem 1.25rem 1.5rem;
}

/* Description */
.accordion__desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #4A4440;
  margin-bottom: 0;
}

.accordion__desc strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* Divider */
.accordion__divider {
  border: none;
  height: 1px;
  background: #E8DDD6;
  margin: 1rem 0;
}

/* Meta row */
.accordion__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.accordion__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 500;
}

.accordion__meta-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Lesson list — two columns on desktop */
.accordion__lessons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 2rem;
}

@media (min-width: 601px) {
  .accordion__lessons {
    grid-template-columns: 1fr 1fr;
  }
}

.accordion__lessons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accordion__lessons li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.2rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4A4440;
}

.accordion__lessons li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.accordion__lessons li strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* --- "Exibir Mais Módulos" button --- */
.modulos__show-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
  background: transparent;
  border: 2px dashed #C9B9AD;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color 0.2s ease, border-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.modulos__show-more:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.modulos__show-more:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.modulos__show-more-icon {
  font-size: 1.3rem;
  line-height: 1;
}

/* Hidden modules — revealed by JS */
.accordion__item--hidden {
  display: none;
}
.accordion__item--hidden.is-revealed {
  display: block;
}

/* --- Desktop polish --- */
@media (min-width: 901px) {
  .modulos {
    padding: 4.5rem 0 5rem;
  }

  .modulos__title {
    margin-bottom: 3rem;
  }

  .accordion__header {
    padding: 1.1rem 1.5rem;
    font-size: 1.05rem;
  }

  .accordion__content {
    padding: 1.5rem 1.5rem 1.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .accordion__body {
    transition: none;
  }
  .accordion__arrow::after {
    transition: none;
  }
  .accordion__header {
    transition: none;
  }
}

/* ============================================
   "Para quem é o curso" — Dark block
   ============================================ */

.para-quem {
  background: #1A1A1A;
  padding: 3.5rem 0 4rem;
  color: var(--white);
}

.para-quem__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .para-quem__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3.5rem;
  }
}

.para-quem__image {
  width: 100%;
}

.para-quem__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.para-quem__text {
  display: flex;
  flex-direction: column;
}

.para-quem__quote {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: -1rem;
}

.para-quem__divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 1.5rem 0;
}

.para-quem__title {
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 5vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.para-quem__title .light {
  display: block;
  font-weight: 400;
  color: #B7ADA1;
}

.para-quem__title .bold {
  display: block;
  font-weight: 400;
}

.para-quem__text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  color: #E2DBD4;
}

.para-quem__text p strong {
  color: var(--white);
  font-weight: 700;
}

.btn-cta--para-quem {
  margin-top: 1rem;
  align-self: flex-start;
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .btn-cta--para-quem {
    width: auto;
  }
}

/* ============================================
   "Números / Authority Stats" — Light grid
   ============================================ */

.numeros {
  background: var(--cream);
  padding: 4rem 0 4.5rem;
}

.numeros__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.numeros__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .numeros__grid {
    gap: 1.5rem;
  }
}

@media (min-width: 900px) {
  .numeros__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.numeros__card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  padding: 2.5rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.numeros__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.numeros__icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.numeros__icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5px; /* thinner stroke */
}

.numeros__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #1A1A1A;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.numeros__label {
  font-size: 0.95rem;
  color: #7A7067;
  font-weight: 400;
}

/* ============================================
   "Social Proof / Testimonials" — Carousel
   ============================================ */

.social-proof {
  background: #F3E4DE;
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}

.social-proof__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  margin-bottom: 3rem;
}

.social-proof__title {
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 5vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.social-proof__title .regular {
  display: block;
  font-weight: 400;
  color: #1A1A1A;
}

.social-proof__title .bold {
  display: block;
  font-weight: 400;
}

.social-proof__title .highlight {
  color: var(--accent);
}

.depo__container {
  width: 100%;
  overflow: hidden;
}

.depo__track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 10px 20px 30px 0; /* padding-right 20px makes the -50% jump mathematically perfect with the 20px gap */
  animation: scroll-left 40s linear infinite;
}

.depo__track:hover {
  animation-play-state: paused;
}

.depo__card {
  flex: 0 0 auto;
  width: 260px;
}

@media (min-width: 768px) {
  .depo__card {
    width: 320px;
  }
}

.depo__card img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  object-fit: contain;
  display: block;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
/* ============================================
   "Certificado" Section
   ============================================ */

.certificado {
  background: #ffffff; /* pure white to contrast with the blush carousel */
  padding: 5rem 0;
}

.certificado__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .certificado__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.certificado__content .eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.certificado__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  color: #1a1a1a;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.certificado__title .highlight {
  color: var(--accent);
}

.certificado__text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 2rem;
}

.certificado__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.certificado__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  color: #1a1a1a;
  font-weight: 500;
}

.certificado__list svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Phone Mockup */
.certificado__media {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  width: 280px;
  height: 570px;
  border: 12px solid #1a1a1a;
  border-radius: 36px;
  background: #1a1a1a;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15), 
              inset 0 0 0 2px rgba(255,255,255,0.05);
  flex-shrink: 0;
}

/* Phone Notch */
.phone-mockup::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 24px;
  background: #1a1a1a;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 10;
}

.phone-mockup__screen {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
}

/* The certificate inside the phone */
.phone-mockup__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; /* keep the seal and main text centered in the crop */
  display: block;
}
/* ============================================
   "Sobre o Professor" Section
   ============================================ */

.professor {
  background: #1A1A1A;
  color: var(--white);
  padding: 6rem 0;
  clip-path: polygon(0 4vw, 100% 0, 100% calc(100% - 4vw), 0 100%);
  margin: 3rem 0;
}

.professor__inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column-reverse;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .professor__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.professor__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 1rem 0;
}

.professor__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  text-transform: uppercase;
  margin: 1.5rem 0;
}

.professor__title .light {
  display: block;
  font-weight: 300;
  color: #ffffff;
}

.professor__title .bold {
  display: block;
  font-weight: 900;
  color: var(--accent);
}

.professor__text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 1.5rem;
}

.professor__text p:last-child {
  margin-bottom: 0;
}

.professor__media {
  display: flex;
  justify-content: center;
  width: 100%;
}

.professor__photo {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 5; /* force portrait orientation */
  object-fit: cover;
  object-position: center 20%; /* focus on face area if cropping vertically */
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  display: block;
}

/* ============================================
   "Aprenda Onde Estiver" Section
   ============================================ */
.aprenda {
  background: #ffffff;
  width: 100%;
}

.aprenda__inner {
  display: flex;
  flex-direction: column;
}

@media (min-width: 900px) {
  .aprenda__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 800px;
  }
}

/* Left Column */
.aprenda__left {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 400px;
}

@media (min-width: 900px) {
  .aprenda__left {
    height: 100%;
  }
}

.aprenda__left-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aprenda__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 900px) {
  .aprenda__badge {
    top: 40px;
    right: 40px;
  }
}

.aprenda__badge-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 0.25rem;
}

.aprenda__badge-text {
  text-align: center;
  line-height: 1;
}

.aprenda__badge-text .number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: #1a1a1a;
  display: block;
}

.aprenda__badge-text .percent {
  color: var(--accent);
}

.aprenda__badge-text .label {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
  display: block;
}

/* Right Column */
.aprenda__right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 20px;
}

.aprenda__content {
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.aprenda__divider {
  width: 100%;
  height: 1px;
  background: #eaeaea;
  margin: 1.5rem 0;
}

.aprenda__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
  margin: 1rem 0;
}

.aprenda__title .bold {
  display: block;
  font-weight: 900;
  color: var(--accent);
}

.aprenda__title .regular {
  display: block;
  font-weight: 500;
  color: #1a1a1a;
}

.aprenda__mockup {
  margin: 2rem 0;
  width: 100%;
}

.aprenda__mockup img {
  width: 100%;
  height: auto;
  display: block;
  /* if users upload a transparent mockup, we don't necessarily want border-radius/shadow on the image tag itself if it has empty space, but prompt said "mockup image... with a soft shadow". We'll apply it cautiously. */
}

.aprenda__card {
  background: #FBF1EC; /* soft cream */
  border-radius: 20px;
  padding: 2.5rem 2rem;
  width: 100%;
  text-align: center;
}

.aprenda__card-title {
  font-size: 1.25rem;
  line-height: 1.4;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.aprenda__card-title .highlight {
  color: var(--accent);
  display: block;
}

.aprenda__card .btn-cta {
  width: 100%;
  border-radius: 0;
}

/* ============================================
   "Price / Checkout" Section
   ============================================ */

.checkout {
  background: #FBF1EC; /* soft cream */
  padding: 5rem 0 6rem;
}

.checkout__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.checkout__card {
  background: #ffffff;
  width: 100%;
  max-width: 560px;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.checkout__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.checkout__logo .regular {
  color: #1a1a1a;
  font-weight: 500;
}

.checkout__logo .accent {
  color: var(--accent);
  font-weight: 900;
}

.checkout__divider {
  border: none;
  height: 1px;
  background: #eaeaea;
  margin: 1.5rem 0;
}

.checkout__price-block {
  margin: 1.5rem 0;
}

.checkout__original-price {
  font-size: 1.1rem;
  color: #888;
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}

.checkout__main-price {
  color: #1a1a1a;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  line-height: 1;
}

.checkout__main-price .currency {
  font-size: 2rem;
  font-weight: 700;
}

.checkout__main-price .value {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.checkout__main-price .suffix {
  font-size: 1.2rem;
  font-weight: 600;
  color: #666;
}

.checkout__installments {
  font-size: 1.15rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-top: 0.5rem;
}

.checkout__payment-methods {
  font-size: 0.9rem;
  color: #888;
  margin-top: 0.25rem;
}

.btn-cta--checkout {
  width: 100%;
  border-radius: 0; /* Keep consistent square buttons */
  font-size: 1.2rem;
  padding: 1.25rem 2rem;
  margin-top: 1rem;
}

.checkout__trust-bar {
  background: #1a1a1a;
  color: #ffffff;
  width: 100%;
  max-width: 520px;
  border-radius: 0 0 16px 16px;
  padding: 1.5rem 1rem;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: -12px; /* overlap with card */
  position: relative;
  z-index: 1;
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.9);
}

.trust-item svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.trust-item strong {
  color: #ffffff;
  font-weight: 700;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.checkout__payments {
  margin-top: 3rem;
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.checkout__payments img {
  max-width: 100%;
  height: auto;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.3s ease;
}

.checkout__payments img:hover {
  opacity: 0.9;
  filter: grayscale(0%);
}

@media (max-width: 600px) {
  .checkout__card {
    padding: 2rem 1.5rem;
  }
  
  .checkout__main-price .value {
    font-size: 4rem;
  }
  
  .checkout__trust-bar {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }
  
  .trust-divider {
    width: 60%;
    height: 1px;
  }
}

/* ============================================
   Garantia Section
   ============================================ */
.garantia {
  background: #1a1a1a;
  width: 100%;
}

.garantia__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4rem 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .garantia__inner {
    grid-template-columns: auto 1fr;
    gap: 4rem;
  }
}

.garantia__media {
  display: flex;
  justify-content: center;
}

.garantia__media img {
  max-width: 100%;
  height: auto;
  display: block;
}

.garantia__content {
  color: #ffffff;
  text-align: center;
}

@media (min-width: 900px) {
  .garantia__content {
    text-align: left;
  }
}

.garantia__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.garantia__title .light {
  display: block;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.garantia__title .bold {
  display: block;
  font-weight: 900;
  color: #ffffff;
}

.garantia__text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  text-align: justify;
}

.garantia__content .btn-cta {
  border-radius: 0;
  width: 100%;
}

@media (min-width: 600px) {
  .garantia__content .btn-cta {
    width: auto;
  }
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
  background: #FBF1EC;
  width: 100%;
}

.faq__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 20px;
}

.faq__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 3rem;
  line-height: 1.1;
}

.faq__title .regular {
  display: block;
  font-weight: 500;
  color: #1a1a1a;
}

.faq__title .bold {
  display: block;
  font-weight: 900;
  color: var(--accent);
}

.faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  color: #1a1a1a;
  transition: background-color 0.2s ease;
}

.faq__question:hover {
  background-color: rgba(0,0,0,0.02);
}

.faq__question-text {
  font-size: 1.1rem;
  font-weight: 700;
  padding-right: 1rem;
}

.faq__icon {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer-inner {
  overflow: hidden;
}

.faq__answer-inner p {
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: #1a1a1a;
  width: 100%;
  padding: 2rem 20px;
}

.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.footer p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .numeros__card {
    transition: none;
  }
  .numeros__card:hover {
    transform: none;
  }
}
