*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --azul: #003DA5;
  --azul2: #002B7A;
  --azul3: #001850;
  --amarelo: #FFD100;
  --amarelo2: #F5C400;
  --branco: #ffffff;
  --off: #F0F2F7;
  --text: #0D1B3E;
  --muted: #5A6A8A;
  --verde: #1D9E75;
  --r: 16px;
  --azul-escuro: #001a5e;
  --dourado: #FFD700;
  --dourado-escuro: #c9a800;
  --cinza-claro: #f0f2f5;
}
.hero {
  position: relative;
  background: var(--azul-escuro);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 3s0px 20px 0 20px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-55deg, transparent, transparent 38px, rgba(255, 215, 0, 0.05) 38px, rgba(255, 215, 0, 0.05) 40px);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 60vw;
  background: radial-gradient(ellipse, rgba(0, 80, 200, 0.45) 0%, transparent 70%);
  pointer-events: none;
}
/* Figurinhas */
.floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.sticker-float {
  position: absolute;
  border-radius: 8px;
  opacity: 0.18;
  animation: floatSlow 8s ease-in-out infinite;
  border: 3px solid var(--dourado);
}
.sticker-float:nth-child(1) {
  width: 70px;
  height: 90px;
  top: 8%;
  left: 4%;
  animation-delay: 0s;
  background: linear-gradient(135deg, #1a5fa8, #0033a0);
  transform: rotate(-12deg);
}
.sticker-float:nth-child(2) {
  width: 55px;
  height: 72px;
  top: 20%;
  left: 88%;
  animation-delay: 1.2s;
  background: linear-gradient(135deg, #c9a800, #ffd700);
  transform: rotate(8deg);
}
.sticker-float:nth-child(3) {
  width: 80px;
  height: 100px;
  top: 55%;
  left: 3%;
  animation-delay: 2.4s;
  background: linear-gradient(135deg, #003087, #001a5e);
  transform: rotate(5deg);
}
.sticker-float:nth-child(4) {
  width: 60px;
  height: 78px;
  top: 72%;
  left: 91%;
  animation-delay: 0.7s;
  background: linear-gradient(135deg, #009c3b, #006628);
  transform: rotate(-6deg);
}
.sticker-float:nth-child(5) {
  width: 48px;
  height: 62px;
  top: 38%;
  left: 93%;
  animation-delay: 3.1s;
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  transform: rotate(14deg);
}
.sticker-float:nth-child(6) {
  width: 65px;
  height: 84px;
  top: 82%;
  left: 8%;
  animation-delay: 1.9s;
  background: linear-gradient(135deg, #1a5fa8, #003087);
  transform: rotate(-9deg);
}
.sticker-float:nth-child(7) {
  width: 50px;
  height: 65px;
  top: 5%;
  left: 78%;
  animation-delay: 4.0s;
  background: linear-gradient(135deg, #003087, #0033a0);
  transform: rotate(3deg);
}
.sticker-float:nth-child(8) {
  width: 58px;
  height: 75px;
  top: 48%;
  left: 1%;
  animation-delay: 2.7s;
  background: linear-gradient(135deg, #c9a800, #ffd700);
  transform: rotate(-15deg);
}
@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0) rotate(var(--r, 0deg));
  }
  50% {
    transform: translateY(-18px) rotate(var(--r, 0deg));
  }
}
.top-badge {
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dourado);
  color: var(--azul-escuro);
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 99px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
  }
  50% {
    box-shadow: 0 4px 40px rgba(255, 215, 0, 0.9);
  }
}
.top-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--azul-escuro);
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
.hero-title {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 20px;
}
.hero-title .line1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}
.hero-title .line2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  color: var(--branco);
  line-height: 1;
  display: block;
  letter-spacing: -1px;
}
.hero-title .line2 em {
  font-style: italic;
  color: var(--dourado);
  position: relative;
}
.hero-title .line3 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  color: var(--dourado);
  line-height: 1;
  display: block;
  letter-spacing: -1px;
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.4), 0 3px 0 rgba(160, 110, 0, 0.7);
}
.hero-title .line3::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--verde), var(--dourado));
  border-radius: 99px;
  margin: 16px auto 0;
}
.hero-divider {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 24px;
  width: min(500px, 90vw);
}
.hero-divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}
.hero-title .line4 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  margin-top: 14px;
}
.hero-sub {
  position: relative;
  z-index: 10;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.2rem;
  padding: 10px 50px;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 20px;
}
.cta-group {
  position: relative;
  z-index: 10;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 64px;
}
.btn-episodios {
  background: var(--dourado);
  color: var(--azul-escuro);
  font-weight: 900;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  box-shadow: 0 6px 24px rgba(255, 215, 0, 0.4), 0 2px 0 var(--dourado-escuro) inset;
  letter-spacing: 0.5px;
}
.btn-episodios:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 36px rgba(255, 215, 0, 0.6);
}
.btn-como-funciona {
  background: transparent;
  color: var(--branco);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 99px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  backdrop-filter: blur(6px);
}
.btn-como-funciona:hover {
  border-color: var(--dourado);
  color: var(--dourado);
  transform: translateY(-2px);
}
.stat-item {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 18px 40px;
}
.stat-number {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 2.1rem;
  color: var(--dourado);
  letter-spacing: 2px;
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
  display: block;
}
.sticker-row {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  padding-bottom: 0;
  margin-top: 40px;
  z-index: 5;
}
.mini-sticker {
  width: 54px;
  height: 70px;
  border-radius: 6px 6px 0 0;
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-bottom: none;
  animation: stickerPeek 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}
.mini-sticker:nth-child(1) {
  background: linear-gradient(160deg, #1565c0, #003087);
  animation-delay: 0s;
  transform-origin: bottom;
}
.mini-sticker:nth-child(2) {
  background: linear-gradient(160deg, #c9a800, #ffd700);
  animation-delay: 0.4s;
  transform-origin: bottom;
}
.mini-sticker:nth-child(3) {
  background: linear-gradient(160deg, #006628, #009c3b);
  animation-delay: 0.8s;
  transform-origin: bottom;
}
.mini-sticker:nth-child(4) {
  background: linear-gradient(160deg, #003087, #1565c0);
  animation-delay: 1.2s;
  transform-origin: bottom;
}
.mini-sticker:nth-child(5) {
  background: linear-gradient(160deg, #ffd700, #c9a800);
  animation-delay: 1.6s;
  transform-origin: bottom;
}
.mini-sticker:nth-child(6) {
  background: linear-gradient(160deg, #003087, #001a5e);
  animation-delay: 2.0s;
  transform-origin: bottom;
}
.mini-sticker:nth-child(7) {
  background: linear-gradient(160deg, #c9a800, #ffaa00);
  animation-delay: 2.4s;
  transform-origin: bottom;
}
.mini-sticker::after {
  content: '★';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.9rem;
}
@keyframes stickerPeek {
  0%, 100% {
    transform: translateY(30px) scaleY(0.7);
  }
  50% {
    transform: translateY(10px) scaleY(1);
  }
}
.section {
  padding: 5rem 1.5rem;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
}
.section-tag {
  display: inline-block;
  background: var(--azul);
  color: var(--amarelo);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 99px;
  margin-bottom: .75rem;
}
.section-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--azul-escuro);
  line-height: 1.15;
  text-align: center;
  letter-spacing: 3px;
}
.section-title em {
  color: var(--azul);
  font-style: normal;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin: .75rem auto 0;
  line-height: 1.65;
}
.section-eyebrow {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dourado-escuro);
  margin-bottom: 12px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.step-card {
  background: var(--branco);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 50, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 48, 135, 0.15);
}
.step-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.step-card h3 {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--azul-escuro);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}
.lenses-section {
  background: var(--azul);
  padding: 60px 24px;
}
.lenses-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.lenses-inner .section-title {
  color: var(--branco);
}
.lenses-inner .section-title span {
  color: var(--dourado);
}
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}
.tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--branco);
  border: 1.5px solid rgba(255, 215, 0, 0.3);
  border-radius: 99px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.tag:hover, .tag.active {
  background: var(--dourado);
  color: var(--azul-escuro);
  border-color: var(--dourado);
}
.album-section {
  background: var(--azul3);
  padding: 5rem 1.5rem;
}
.album-section .section-title {
  color: var(--branco);
}
.album-section .section-sub {
  color: rgba(255, 255, 255, .55);
}
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.card {
  background: var(--branco);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(0, 0, 0, .18);
  transition: transform .25s cubic-bezier(.22, 1, .36, 1), box-shadow .25s;
  position: relative;
  animation: cardIn .6s calc(var(--d, 0)*80ms) cubic-bezier(.22, 1, .36, 1) both;
}
.card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .28);
}
.card-number {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--amarelo);
  color: var(--azul2);
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .25);
}
.card-badge-discipline {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  background: var(--azul);
  color: var(--amarelo);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
}
.card-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--azul2) 0%, var(--azul3) 100%);
}
.card-thumb-logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-thumb-logo img {
  width: 400px;
}
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.play-btn svg {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, .5));
  transition: transform .2s;
}
.card:hover .play-btn svg {
  transform: scale(1.15);
}
.card-body {
  padding: 18px 18px 0;
}
.card-prof {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.card-prof-info {
  flex: 1;
}
.card-prof-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
.card-prof-disc {
  font-size: 11px;
  color: var(--muted);
}
.card-title {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 8px;
}
.card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 14px;
}
.card-footer {
  padding: 0 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.btn-video {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--azul);
  color: var(--branco);
  font-size: 13px;
  font-weight: 700;
  padding: 11px 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s;
  width: 100%;
}
.btn-video:hover {
  background: var(--azul2);
}
.btn-quiz {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--amarelo);
  color: var(--azul2);
  font-size: 13px;
  font-weight: 800;
  padding: 11px 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .15s;
  width: 100%;
  box-shadow: 0 2px 12px rgba(255, 209, 0, .35);
}
.btn-quiz:hover {
  background: var(--amarelo2);
  box-shadow: 0 4px 20px rgba(255, 209, 0, .5);
  transform: translateY(-1px);
}
.btn-quiz-icon {
  font-size: 16px;
}
.card.locked {
  opacity: .55;
  pointer-events: none;
}
.card.locked .card-thumb {
  background: linear-gradient(135deg, #1a2a4a 0%, #0d1b3e 100%);
}
.lock-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  background: rgba(255, 209, 0, .15);
  border: 1.5px solid rgba(255, 209, 0, .3);
  border-radius: 99px;
  padding: 6px 18px;
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 209, 0, .8);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.how-card {
  background: var(--branco);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  border: 1.5px solid rgba(0, 61, 165, .08);
  box-shadow: 0 2px 16px rgba(0, 0, 0, .05);
  transition: transform .2s, box-shadow .2s;
}
.how-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
}
.how-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.how-step {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--azul);
  margin-bottom: 6px;
}
.how-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.how-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.categorias {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}
.categoria {
  background: #002882;
  border: 1.5px solid rgba(0, 61, 165, .12);
  border-radius: 99px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  transition: all .15s;
  cursor: default;
}
.categoria:hover {
  background: var(--azul);
  color: var(--amarelo);
  border-color: var(--azul);
}
.categoria.active {
  background: var(--azul);
  color: var(--amarelo);
  border-color: var(--azul);
}
.footer img {
  width: 100px;
  margin-bottom: 1rem;
  opacity: .85;
}
.video-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: #0e4194;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: .45s;
}
.video-modal.active {
  opacity: 1;
  visibility: visible;
}
.video-wrapper {
  width: 100%;
  height: 100%;
}
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-close {
  position: absolute;
  top: 40px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 0;
  background: #002877;
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 20;
  transition: .20s;
}
.video-close:hover {
  transform: scale(1.08);
  background: rgba(255, 255, 255, .2);
}
@media(max-width:600px) {
  .album-grid {
    grid-template-columns: 1fr;
  }
  .hero img {
    width: 200px
  }
  .stat-item {
    background: none;
    padding: 2px;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .stat-label {
    font-size: 0.5rem;
  }
}