/* ── Home hero ── */
.hero--home {
  position: relative;
  min-height: 92vh;
  background: #2C1810 url('../images/hero/hero-fundo.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  overflow: hidden;
}

.hero--home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 24, 16, .65), rgba(44, 24, 16, .3));
  z-index: 1;
  pointer-events: none;
}

.hero-deco {
  position: absolute;
  bottom: 28px;
  right: 44px;
  font-size: 5rem;
  opacity: .1;
  color: var(--gold-l);
  pointer-events: none;
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 146, 10, .2);
  border: 1px solid rgba(212, 146, 10, .4);
  color: var(--gold-l);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero--home h1 {
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  color: var(--gold-l);
  line-height: 1;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .5);
  margin-bottom: 8px;
}

.hero--home h1 em {
  color: #fff;
  font-style: normal;
  display: block;
  font-size: .55em;
  letter-spacing: .03em;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, .8);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.stat {
  text-align: center;
  color: rgba(255, 255, 255, .9);
}

.stat strong {
  display: block;
  font-family: 'Fredoka One', cursive;
  font-size: 2rem;
  color: var(--gold-l);
  line-height: 1;
}

.stat span {
  font-size: .72rem;
  opacity: .7;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .35);
  font-size: .72rem;
  text-align: center;
  animation: bounce 2s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── About ── */
.about {
  background: var(--cream);
  padding: 88px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 16px;
}

.about-text p {
  color: #4a3020;
  line-height: 1.7;
  margin-bottom: 14px;
  font-size: 1rem;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill {
  background: var(--parchment);
  border: 1.5px solid var(--parchment-d);
  color: var(--ink);
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.pill i {
  color: var(--teal);
  font-size: .85rem;
}

.about-visual {
  background: #2C1810;
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-visual-inner {
  position: relative;
  z-index: 1;
}

.about-icon {
  font-size: 3.5rem;
  color: var(--gold-l);
  margin-bottom: 16px;
  display: block;
}

.about-visual h3 {
  color: var(--gold-l);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.about-visual p {
  color: rgba(255, 255, 255, .75);
  font-size: .9rem;
  line-height: 1.65;
}

/* ── Books grid ── */
.books {
  padding: 88px 0;
  background: var(--parchment);
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.book-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--parchment-d);
}

.book-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(44, 24, 16, .22);
}

.book-cover {
  height: 200px;
  flex-shrink: 0;
}

.book-cover-icon {
  font-size: 4.5rem;
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, .9);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .4));
}

.book-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
}

.badge-new     { background: var(--gold); color: var(--ink); }
.badge-coming  { background: rgba(255, 255, 255, .18); color: rgba(255, 255, 255, .9); border: 1px solid rgba(255, 255, 255, .3); }
.badge-plan    { background: rgba(0, 0, 0, .3); color: rgba(255, 255, 255, .7); }

.book-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.book-num {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.book-num i {
  font-size: .8rem;
}

.book-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
}

.book-desc {
  font-size: .83rem;
  color: #6a5040;
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}

.book-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.book-meta-item {
  font-size: .74rem;
  color: #7a6050;
  display: flex;
  align-items: center;
  gap: 5px;
}

.book-meta-item i {
  color: var(--gold);
  font-size: .78rem;
}

.book-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.tag {
  background: var(--parchment);
  border: 1px solid var(--parchment-d);
  color: #5a4030;
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
}

.book-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.book-price {
  font-family: 'Fredoka One', cursive;
  font-size: 1.6rem;
  color: var(--teal);
}

.book-price small {
  font-family: 'Nunito', sans-serif;
  font-size: .7rem;
  color: #7a6050;
  font-weight: 600;
  display: block;
  line-height: 1;
}

.price-soon {
  color: #9a8070;
  font-style: italic;
  font-size: .95rem;
}

.combo-card {
  background: #2C1810;
  border-color: rgba(212, 146, 10, .35) !important;
}

.combo-body {
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 28px !important;
}

.combo-icon {
  font-size: 2.8rem;
  color: var(--gold-l);
  margin-bottom: 16px;
}

.combo-title {
  color: var(--gold-l) !important;
  font-size: 1.4rem !important;
  margin-bottom: 12px !important;
}

.combo-desc {
  color: rgba(255, 255, 255, .72);
  font-size: .88rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ── Roadmap ── */
.roadmap {
  background: #1A2A1E;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.roadmap .section-label { color: var(--gold-l); }
.roadmap .section-title { color: var(--gold-l); }
.roadmap .section-sub {
  color: rgba(255, 255, 255, .7);
  max-width: 620px;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.roadmap-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background .2s;
}

.roadmap-card:hover {
  background: rgba(255, 255, 255, .1);
}

.roadmap-num {
  font-family: 'Fredoka One', cursive;
  font-size: 3rem;
  color: var(--gold);
  opacity: .22;
  line-height: 1;
  margin-bottom: 4px;
}

.roadmap-card h3 {
  font-size: 1.1rem;
  color: var(--gold-l);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.roadmap-list {
  list-style: none;
}

.roadmap-list li {
  color: rgba(255, 255, 255, .7);
  font-size: .85rem;
  line-height: 1.5;
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.roadmap-list li i {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: .85rem;
}

.roadmap-list li.done {
  color: rgba(255, 255, 255, .95);
}

.roadmap-list li.done i {
  color: var(--teal-l);
}

.roadmap-list li:not(.done) i {
  color: rgba(212, 146, 10, .5);
}

/* ── Why section ── */
.why {
  background: var(--parchment-d);
  padding: 88px 0;
}

/* ── Ages ── */
.ages {
  background: var(--cream);
  padding: 88px 0;
}

.ages-track {
  display: flex;
  gap: 0;
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow);
}

.age-band {
  flex: 1;
  padding: 28px 18px;
  text-align: center;
  position: relative;
}

.age-band::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, .2);
}

.age-band:last-child::after {
  display: none;
}

.ab1 { background: #6B3520; }
.ab2 { background: #8B4520; }
.ab3 { background: #2A6A50; }
.ab4 { background: #1A4A70; }

.age-range {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: var(--gold-l);
  margin-bottom: 4px;
}

.age-lbl {
  font-size: .75rem;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 16px;
}

.age-items {
  list-style: none;
}

.age-items li {
  color: rgba(255, 255, 255, .85);
  font-size: .8rem;
  line-height: 1.55;
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.age-items li i {
  font-size: .75rem;
  color: rgba(212, 146, 10, .7);
}

/* ── Languages ── */
.langs {
  background: var(--parchment);
  padding: 64px 0;
}

.langs-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.lang-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.lang-flag {
  font-size: 2.8rem;
}

.lang-name {
  font-family: 'Fredoka One', cursive;
  font-size: 1.15rem;
  color: var(--ink);
}

.lang-sub {
  font-size: .75rem;
  color: #7a6050;
}

.lang-div {
  width: 1px;
  height: 64px;
  background: var(--gold);
  opacity: .2;
}

.lang-note {
  font-size: .86rem;
  color: #5a4030;
  max-width: 280px;
  text-align: center;
  line-height: 1.65;
}

.lang-note strong {
  color: var(--ink);
}

/* ── FAQ ── */
.faq {
  background: var(--parchment-d);
  padding: 88px 0;
}

.faq-list {
  max-width: 700px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1.5px solid rgba(212, 146, 10, .25);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  transition: color .15s;
}

.faq-q:hover {
  color: var(--rust);
}

.faq-q-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-q-left i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.faq-arrow {
  font-size: .9rem;
  color: var(--gold);
  transition: transform .25s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  color: #4a3020;
  font-size: .92rem;
  line-height: 1.7;
  padding-left: 28px;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ── CTA final ── */
.cta-final {
  background: #2C1810;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-final h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--gold-l);
  margin-bottom: 16px;
}

.cta-final p {
  color: rgba(255, 255, 255, .75);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    order: -1;
  }

  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .ages-track {
    flex-direction: column;
  }

  .age-band::after {
    display: none;
  }

  .lang-div {
    width: 60px;
    height: 1px;
  }

  .langs-inner {
    flex-direction: column;
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .books-grid {
    grid-template-columns: 1fr;
  }

  .hero--home h1 {
    font-size: 2.4rem;
  }
}
