/* ==========================================================================
   Manual do Desenhista — landing de vendas (Zero ao Cubo)
   CSS puro + custom properties + BEM. Vanilla, sem build.
   Fidelidade ao protótipo de design, com o rosa sólido alinhado ao
   ecossistema (--pink:#FF2D6E). Gradientes ricos do hero/cards mantidos.
   ========================================================================== */

:root {
  /* Marca (canônico do ecossistema) */
  --pink: #FF2D6E;          /* rosa sólido: CTAs, bordas, acentos */
  --pink-deep: #D11857;     /* rosa de texto sobre claro (passa AA) */
  --pink-shadow: #A50B49;   /* "degrau" 3D abaixo dos botões */
  --yellow: #FFD23F;        /* acento: "DESENHAR", "Mês", estrelas */
  --ink: #0E0D10;           /* quase-preto: header, footer, botões */
  --ink-card: #161318;      /* painéis escuros */
  --text: #141114;          /* títulos sobre claro */
  --text-body: #3a3940;     /* parágrafos */
  --whatsapp: #25D366;

  /* Gradiente do hero (mantido do design) */
  --hero-bg: radial-gradient(120% 130% at 78% 40%, #FF5B97 0%, #FF2E7E 34%, #E50E6E 68%, #C70A5E 100%);
  --hero-scrim-x: linear-gradient(90deg, #C70A5E 0%, rgba(199,10,94,.86) 30%, rgba(199,10,94,.45) 52%, rgba(199,10,94,0) 72%);

  --shadow-card: 0 12px 30px rgba(0,0,0,.1);
  --shadow-pink: 0 20px 44px rgba(229,16,95,.4);
  --btn-3d: 0 6px 0 var(--pink-shadow), 0 16px 28px rgba(255,45,110,.4);

  --section-pad: clamp(44px, 8vw, 96px);
  --maxw: 1200px;
}

@font-face {
  font-family: 'Angela Notes';
  src: url('../fonts/AngelaNotes.otf') format('opentype');
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #1A191D;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
h1, h2, h3, p { margin: 0; }
a { color: inherit; }

/* Famílias de display reutilizadas */
.font-angela { font-family: 'Angela Notes', 'Permanent Marker', cursive; text-transform: uppercase; }
.font-lemon  { font-family: 'DK Lemon Yellow Sun', 'Poppins', cursive; }

@keyframes mddpulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

/* --------------------------------------------------------------------------
   Botões (pill com degrau 3D)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Poppins', sans-serif; font-weight: 800;
  text-transform: uppercase; letter-spacing: .04em;
  text-decoration: none; cursor: pointer; border: none;
  border-radius: 999px; transition: transform .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--pink { background: var(--pink); color: #fff; box-shadow: var(--btn-3d); }
.btn--dark { background: var(--ink); color: #fff; box-shadow: 0 8px 0 rgba(0,0,0,.35), 0 16px 34px rgba(0,0,0,.3); }
.btn--lg { font-size: clamp(16px, 1.9vw, 22px); padding: 16px 40px; }
.btn--md { font-size: clamp(15px, 1.7vw, 20px); padding: 14px 34px; }
.btn--tap { min-height: 52px; }

/* --------------------------------------------------------------------------
   Barra de urgência
   -------------------------------------------------------------------------- */
.urgency {
  background: var(--ink); color: #fff; text-align: center;
  font-family: 'Angela Notes', 'Permanent Marker', cursive;
  font-size: clamp(13px, 1.7vw, 17px); letter-spacing: .03em; text-transform: uppercase;
  padding: 9px 16px; display: flex; align-items: center; justify-content: center; gap: 10px;
}
.urgency__dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: var(--pink); animation: mddpulse 1.2s infinite; }

/* --------------------------------------------------------------------------
   Header (cápsula flutuante)
   -------------------------------------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 60;
  padding: 14px 16px 0; pointer-events: none; background: #c60b5d;
}
.header__cap {
  max-width: 1140px; margin: 0 auto; pointer-events: auto;
  background: var(--ink); border: 2px solid var(--pink); border-radius: 999px;
  padding: 8px 14px 8px 24px; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,.28), 0 0 0 5px rgba(255,45,110,.12);
}
.header__logo { height: 120px; width: auto; display: block; flex: none; margin: -44px 8px -44px 0; position: relative; z-index: 3; top: 15px; }
.header__nav { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; color: #fff; }
.header__link { color: #fff; text-decoration: none; transition: color .15s ease; }
.header__link:hover { color: var(--yellow); }
.header__cta {
  background: var(--pink); color: #fff; text-decoration: none; font-weight: 800;
  text-transform: none; letter-spacing: .02em; font-size: 16px; padding: 11px 26px;
  border-radius: 999px; box-shadow: 0 4px 0 var(--pink-shadow);
  display: inline-flex; align-items: center; transition: transform .15s ease;
}
.header__cta:hover { transform: translateY(-2px); }
.header__left { display: flex; align-items: center; gap: 10px; flex: none; }

/* --------------------------------------------------------------------------
   Launcher (waffle) — troca de ambiente do ecossistema (igual ao Hub)
   -------------------------------------------------------------------------- */
.launcher-wrap { position: relative; flex: none; }
.launcher-btn { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; padding: 0; color: #fff; background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.18); border-radius: 12px; cursor: pointer; transition: color .15s ease, border-color .15s ease, background .15s ease; }
.launcher-btn:hover, .launcher-btn:focus-visible { color: var(--pink); border-color: var(--pink); }
.launcher-btn svg { width: 22px; height: 22px; }
.launcher { position: absolute; top: calc(100% + 12px); left: 0; z-index: 200; padding: 10px; background: #1d1a19; border: 1.5px solid rgba(255,255,255,.14); border-radius: 18px; box-shadow: 0 18px 50px rgba(0,0,0,.5); }
.launcher[hidden] { display: none; }
.launcher__brand { display: flex; align-items: center; gap: 8px; padding: 6px 8px 10px; margin-bottom: 6px; color: #fff; border-bottom: 1px solid rgba(255,255,255,.12); text-decoration: none; }
.launcher__brand:hover { color: var(--pink); }
.launcher__brand svg { width: 22px; height: 22px; }
.launcher__brand span { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.05rem; letter-spacing: .03em; text-transform: uppercase; }
.launcher__brand sup { color: var(--pink); font-size: .6em; }
.launcher__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.launcher__tile { display: flex; flex-direction: column; align-items: center; gap: 7px; width: 84px; padding: 10px 6px; border-radius: 14px; color: #fff; text-align: center; text-decoration: none; transition: background .12s ease; }
.launcher__tile:hover { background: rgba(255,45,110,.14); }
.launcher__ic { display: flex; align-items: center; justify-content: center; width: 58px; height: 58px; font-size: 2.4rem; background: rgba(255,255,255,.06); border-radius: 16px; box-shadow: 0 3px 8px rgba(0,0,0,.3); }
.launcher__ic--badge { background: none; box-shadow: none; padding: 0; }
.launcher__ic--badge svg { display: block; width: 100%; height: 100%; }
.launcher__lbl { font-size: .72rem; font-weight: 700; line-height: 1.05; color: rgba(255,255,255,.7); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden; min-height: clamp(540px, 52vw, 760px);
  display: flex; align-items: center; background: var(--hero-bg);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 52%, transparent 80%);
  mask-image: linear-gradient(90deg, #000 0%, #000 52%, transparent 80%);
}
.hero__cubo {
  position: absolute; top: clamp(40px, 7vw, 96px); right: clamp(0px, 18vw, 300px);
  font-weight: 900; font-style: italic; letter-spacing: -.02em; text-transform: uppercase;
  font-size: clamp(120px, 20vw, 300px); line-height: .8; color: rgba(255,255,255,.16);
  pointer-events: none; -webkit-user-select: none; user-select: none;
}
.hero__art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 16%; z-index: 0; }
.hero__scrim-x { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: var(--hero-scrim-x); }
.hero__scrim-b { display: none; }
.hero__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; width: 100%; padding: clamp(96px, 11vw, 140px) clamp(20px, 5vw, 56px) clamp(40px, 6vw, 72px); pointer-events: auto; }
.hero__col { max-width: 640px; }
.hero__chip {
  display: inline-block; color: #000; font-weight: 800; font-size: clamp(11px, 1.3vw, 14px);
  line-height: 1.3; letter-spacing: .06em; text-transform: uppercase; padding: 9px 20px;
  margin-bottom: 22px; box-shadow: 0 6px 18px rgba(0,0,0,.18); background: #fff; text-align: center;
}
.hero__title {
  font-weight: 900; text-transform: uppercase; line-height: .92; letter-spacing: 2.89px;
  color: #fff; font-size: clamp(40px, 6.4vw, 84px); margin: 0 0 22px;
  text-shadow: 0 4px 22px rgba(120,4,40,.3);
}
.hero__title em { font-style: normal; color: var(--yellow); }
.hero__lead { font-size: clamp(15px, 1.7vw, 20px); line-height: 1.45; color: rgba(255,255,255,.92); margin: 0 0 32px; font-weight: 500; max-width: 480px; }
.hero__actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero__watch { display: inline-flex; align-items: center; gap: 13px; color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: clamp(13px, 1.5vw, 16px); text-decoration: none; }
.hero__play { flex: none; width: 52px; height: 52px; border-radius: 50%; border: 2.5px solid rgba(255,255,255,.85); display: inline-flex; align-items: center; justify-content: center; transition: background .15s ease; }
.hero__watch:hover .hero__play { background: rgba(255,255,255,.14); }
.hero__play::after { content: ''; display: block; width: 0; height: 0; border-style: solid; border-width: 9px 0 9px 14px; border-color: transparent transparent transparent #fff; margin-left: 3px; }

/* --------------------------------------------------------------------------
   Vídeo
   -------------------------------------------------------------------------- */
.video { background: #fff; padding: clamp(44px, 6vw, 80px) 24px; scroll-margin-top: 80px; }
.video__inner { max-width: 1040px; margin: 0 auto; text-align: center; }
.video__frame { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 16/9; background: var(--ink); box-shadow: 0 26px 64px rgba(0,0,0,.26); border: 5px solid var(--ink-card); }
.video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video .btn { margin-top: 30px; }

/* --------------------------------------------------------------------------
   Jornada
   -------------------------------------------------------------------------- */
.journey { background: #fff; padding: clamp(8px, 2vw, 24px) 24px clamp(48px, 7vw, 84px); scroll-margin-top: 80px; }
.journey__box { max-width: 820px; margin: 0 auto; border: 4px solid var(--pink); overflow: hidden; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); box-shadow: 0 18px 44px rgba(255,45,110,.18); }
.journey__media { background: var(--pink); background-image: repeating-conic-gradient(from 0deg at 50% 50%, #FF3C82 0deg 5deg, #E5105F 5deg 10deg); display: flex; align-items: center; justify-content: center; padding: 24px 16px; min-height: 170px; }
.journey__cube { width: clamp(96px, 14vw, 140px); height: auto; filter: drop-shadow(0 14px 26px rgba(0,0,0,.4)); }
.journey__text { background: #fdfdfb; padding: clamp(20px, 2.4vw, 30px); display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.journey__balloon { width: clamp(180px, 70%, 290px); height: auto; align-self: flex-start; }
.journey__text p { font-size: clamp(13.5px, 1.4vw, 15.5px); line-height: 1.55; color: var(--text-body); }
.journey__text strong { color: var(--pink-deep); }

/* --------------------------------------------------------------------------
   Módulos
   -------------------------------------------------------------------------- */
.modules { background: #E7E4E0; background-image: radial-gradient(circle at 1px 1px, rgba(20,17,20,.07) 1.4px, transparent 0); background-size: 18px 18px; padding: clamp(52px, 8vw, 96px) 24px; }
.modules__inner { max-width: 1140px; margin: 0 auto; }
.modules__title { text-align: center; line-height: 1; letter-spacing: .01em; font-size: clamp(28px, 4.8vw, 52px); margin: 0 0 46px; color: var(--text); }
.modules__title span { color: var(--pink-deep); }
.modules__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; }
.module { position: relative; overflow: hidden; border: 3px solid #2a0a18; box-shadow: var(--shadow-pink), inset 0 2px 0 rgba(255,255,255,.4); background: linear-gradient(180deg, #FF3C82, #E5105F); transition: transform .2s ease; }
.module:hover { transform: translateY(-7px); }
.module__top { position: relative; aspect-ratio: 1/1; overflow: hidden; background: #E5105F; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 26px 26px; }
.module__label { position: absolute; top: 14px; left: 16px; z-index: 3; font-family: 'Angela Notes', 'Permanent Marker', cursive; font-size: 24px; color: #fff; text-shadow: 2px 2px 0 #7a0a35; pointer-events: none; }
.module__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.module__body { padding: 20px 22px 24px; background: linear-gradient(180deg, #E5105F, #C40B50); color: #fff; }
.module__name { font-family: 'DK Lemon Yellow Sun', 'Poppins', cursive; font-size: clamp(22px, 2.6vw, 28px); line-height: 1.02; margin: 0 0 10px; text-shadow: 2px 2px 0 rgba(0,0,0,.18); }
.module__desc { font-size: 14px; line-height: 1.45; color: rgba(255,255,255,.92); margin: 0 0 14px; }
.module__rule { height: 2px; background: linear-gradient(90deg, transparent, var(--yellow), transparent); margin: 0 0 14px; }
.module__stat { display: inline-flex; align-items: center; gap: 7px; background: rgba(0,0,0,.28); border-radius: 999px; padding: 7px 15px; font-weight: 700; font-size: 12px; letter-spacing: .02em; }
.module__stat span { color: var(--yellow); font-size: 14px; }
.modules__footer { text-align: center; margin-top: 40px; }
.modules__pill { display: inline-block; color: #fff; font-family: 'DK Lemon Yellow Sun', 'Poppins', cursive; font-size: clamp(15px, 2.2vw, 24px); letter-spacing: .01em; padding: 13px 32px; box-shadow: 0 6px 0 #666; background: #000; }

/* --------------------------------------------------------------------------
   Por dentro do curso
   -------------------------------------------------------------------------- */
.inside { padding: clamp(54px, 8vw, 90px) 24px 0; scroll-margin-top: 80px; background: #fff; }
.inside__grid { max-width: 1180px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 22px; align-items: flex-start; }
.inside__col { flex: 1 1 240px; display: flex; flex-direction: column; gap: 22px; }
.inside__head { display: inline-block; padding: 16px 32px; border-radius: 8px; box-shadow: 0 8px 20px rgba(0,0,0,.19); }
.inside__title { line-height: .98; letter-spacing: .01em; font-size: clamp(26px, 3.8vw, 44px); margin: 0; color: var(--text); }
.inside__title span { color: var(--pink-deep); }
.inside__sticker { display: block; width: clamp(240px, 90%, 407px); height: auto; margin: 18px 0 0 6px; transform: rotate(-1deg); }
.inside__card { border-radius: 18px; overflow: hidden; box-shadow: 0 14px 36px rgba(0,0,0,.27); transition: transform .2s ease; }
.inside__card:hover { transform: translateY(-5px); }
.inside__card img { width: 100%; height: auto; display: block; }
.inside__cta { text-align: center; padding: 47px 0 27px; }

/* --------------------------------------------------------------------------
   Transformação
   -------------------------------------------------------------------------- */
.transform { position: relative; background: var(--pink); background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.16) 1.5px, transparent 0); background-size: 16px 16px; padding: clamp(20px, 3vw, 40px) 24px clamp(48px, 7vw, 90px); }
.transform__card { max-width: 1080px; margin: 0 auto; background: #fdfdfb; border-radius: 14px; box-shadow: 0 26px 60px rgba(0,0,0,.28); padding: clamp(24px, 3vw, 40px); display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; align-items: center; }
.transform__img { border-radius: 10px; overflow: hidden; }
.transform__img img { width: 100%; display: block; }
.transform__list { display: flex; flex-direction: column; gap: 14px; }
.transform__line { font-family: 'Angela Notes', 'Permanent Marker', cursive; text-transform: uppercase; font-size: clamp(17px, 2.3vw, 26px); line-height: 1.1; color: var(--text); }
.transform__line span { color: var(--pink-deep); }
.transform__line--blue span { color: #2E7DFF; }
.transform__line--purple span { color: #9B2EFF; }
.transform__line--yellow span { color: #F5B800; }
.transform__panel { background: var(--ink-card); border-radius: 12px; padding: 24px; margin-top: 8px; }
.transform__panel p { font-size: clamp(14px, 1.6vw, 17px); line-height: 1.55; color: #e9e7ec; margin: 0 0 12px; }
.transform__cert { font-family: 'Angela Notes', 'Permanent Marker', cursive; text-transform: uppercase; color: var(--yellow); font-size: clamp(16px, 2vw, 21px); margin: 0 0 20px; line-height: 1.1; }

/* --------------------------------------------------------------------------
   Galerias (alunos + criações)
   -------------------------------------------------------------------------- */
.gallery-sec { scroll-margin-top: 80px; }
.gallery-sec--students { background: #fff; padding: clamp(54px, 8vw, 96px) 0; }
.gallery-sec--creations { background: #0A090C; padding: clamp(44px, 6vw, 84px) 0; }
.gallery__head { max-width: 1220px; margin: 0 auto; padding: 0 24px; }
.gallery__title { text-align: center; font-family: 'Angela Notes', 'Permanent Marker', cursive; text-transform: uppercase; font-size: clamp(28px, 4.6vw, 50px); letter-spacing: .01em; margin: 0 0 34px; color: var(--text); }
.gallery__title span { color: var(--pink-deep); }
.gallery-sec--creations .gallery__title { color: #fff; }
.gallery-sec--creations .gallery__title span { color: var(--pink); }
.gallery { column-gap: 12px; max-width: 1220px; margin: 0 auto; padding: 0 24px; }
.gallery--s { column-width: 250px; }
.gallery--w { column-width: 340px; }
.gallery__cta { text-align: center; margin-top: 36px; }

.art {
  position: relative; display: block; width: 100%; margin: 0 0 12px; break-inside: avoid;
  border: none; padding: 0; cursor: pointer; border-radius: 10px; overflow: hidden;
  background: #11101a; box-shadow: 0 6px 18px rgba(0,0,0,.2); transition: transform .25s ease;
}
.art:hover { transform: translateY(-4px); }
.art img { width: 100%; height: auto; display: block; }
.art__name {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 14px 12px; text-align: left;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.85)); color: #fff;
  font-family: 'DK Lemon Yellow Sun', 'Poppins', cursive; font-size: 16px; letter-spacing: .01em;
  opacity: 0; transform: translateY(8px); transition: opacity .25s ease, transform .25s ease;
}
.art:hover .art__name { opacity: 1; transform: translateY(0); }

/* --------------------------------------------------------------------------
   Sobre o professor
   -------------------------------------------------------------------------- */
.author { background: var(--ink); padding: clamp(54px, 8vw, 96px) 24px; }
.author__frame { max-width: 1080px; margin: 0 auto; background: #c9c6c1; border-radius: 6px; padding: clamp(14px, 1.6vw, 20px); box-shadow: 0 26px 60px rgba(0,0,0,.5); }
.author__panel { background: #141215; border-radius: 4px; padding: clamp(22px, 3vw, 40px); display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(24px, 3vw, 44px); align-items: start; }
.author__photo { width: 100%; border-radius: 4px; display: block; }
.author__lead { font-size: clamp(16px, 2vw, 20px); line-height: 1.6; color: #fff; margin: 0 0 16px; font-weight: 600; }
.author__lead strong { color: var(--pink); }
.author__body p { font-size: 14.5px; line-height: 1.65; color: rgba(233,231,236,.82); margin: 0 0 14px; }
.author__body strong { color: #fff; }
.author__body .btn { margin-top: 8px; }

/* --------------------------------------------------------------------------
   Oferta (variante A, SEM contador)
   -------------------------------------------------------------------------- */
.offer { background: #FAFAF8; padding: clamp(54px, 8vw, 96px) 24px; scroll-margin-top: 80px; }
.offer__inner { max-width: 1200px; margin: 0 auto; }
.offer__title { text-align: center; font-family: 'Angela Notes', 'Permanent Marker', cursive; text-transform: uppercase; font-size: clamp(26px, 4.6vw, 50px); letter-spacing: -.01em; margin: 0 0 44px; color: var(--text); }
.offerA { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0; }
.offerA__compare { flex: 0 1 300px; background: #fff; border: 1px solid #e6e3df; border-radius: 16px; padding: 30px 28px; margin: 18px 0; box-shadow: 0 12px 30px rgba(0,0,0,.07); z-index: 1; width: 280px; }
.offerA__compare h3 { font-weight: 800; font-size: 19px; line-height: 1.25; color: var(--text); margin: 0 0 22px; }
.offerA__compare h3 span { color: var(--pink-deep); }
.offerA__compare ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.offerA__compare li { display: flex; gap: 12px; align-items: center; font-size: 15px; color: #52515a; }
.offerA__compare li span { flex: none; color: var(--pink); font-weight: 900; font-size: 18px; }

.offerA__main { flex: 0 1 390px; background: var(--ink-card); border-radius: 18px; padding: 32px 30px; margin: 0 -16px; color: #fff; text-align: center; box-shadow: 0 30px 64px rgba(0,0,0,.3); position: relative; z-index: 3; }
.offerA__closed { font-family: 'Angela Notes', 'Permanent Marker', cursive; text-transform: uppercase; font-size: 40px; letter-spacing: .02em; margin-bottom: 12px; color: var(--pink); }
.offerA__next { font-family: 'Angela Notes', 'Permanent Marker', cursive; text-transform: uppercase; font-size: clamp(20px, 2.4vw, 26px); letter-spacing: .02em; margin-bottom: 18px; color: #fff; }
.offerA__next u { color: #fff; }
.offerA__cube { display: block; width: 150px; height: 150px; margin: 4px auto 0; filter: drop-shadow(0 14px 26px rgba(0,0,0,.4)); }
.offerA__price { font-family: 'Angela Notes', 'Permanent Marker', cursive; text-transform: uppercase; color: var(--pink); font-size: clamp(34px, 5vw, 46px); line-height: 1.05; }
.offerA__price-from { font-size: 14px; color: rgba(255,255,255,.6); }
.offerA__price-from s { text-decoration: line-through; }
.offerA__price-sub { font-size: 13px; color: rgba(255,255,255,.95); margin-bottom: 22px; }

.waitlist { background: var(--pink); border-radius: 14px; padding: 22px 20px; text-align: center; }
.waitlist__title { font-family: 'Angela Notes', 'Permanent Marker', cursive; text-transform: uppercase; font-size: clamp(20px, 2.6vw, 28px); line-height: 1.05; margin-bottom: 6px; }
.waitlist__sub { font-size: 12.5px; color: rgba(255,255,255,.92); margin: 0 0 14px; }
.waitlist__input { width: 100%; border: none; border-radius: 8px; padding: 14px; font-family: 'Poppins', sans-serif; font-size: 14px; margin-bottom: 10px; outline: none; }
.waitlist__consent { display: flex; gap: 8px; align-items: flex-start; text-align: left; font-size: 11px; line-height: 1.4; color: rgba(255,255,255,.92); margin-bottom: 12px; }
.waitlist__consent input { margin-top: 2px; flex: none; }
.waitlist__consent a { color: #fff; text-decoration: underline; }
.waitlist__btn { width: 100%; background: var(--ink); color: #fff; border: none; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; font-size: 15px; padding: 15px; border-radius: 999px; cursor: pointer; box-shadow: 0 5px 0 #000; transition: transform .15s ease; }
.waitlist__btn:hover { transform: translateY(-2px); }
.waitlist .ml-form-embedContainer { width: 100%; }
.waitlist .ml-block-form { margin: 0; }
.waitlist .row-success { padding: 4px 0; }
.waitlist__error { margin: 10px 0 0; font-size: 12.5px; line-height: 1.4; color: #fff; font-weight: 600; }

.offerA__included { flex: 0 1 300px; background: var(--pink); border-radius: 16px; padding: 30px 28px; margin: 18px 0; color: #fff; box-shadow: 0 12px 30px rgba(255,45,110,.3); z-index: 1; width: 301px; }
.offerA__included-tag { display: inline-block; background: var(--ink-card); font-weight: 800; font-size: 15px; padding: 9px 18px; border-radius: 8px; margin-bottom: 22px; }
.offerA__included ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.offerA__included li { display: flex; gap: 11px; align-items: center; font-size: 15px; font-weight: 700; }
.offerA__included li span { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--ink-card); color: var(--pink); display: inline-flex; align-items: center; justify-content: center; font-weight: 900; font-size: 12px; }

/* --------------------------------------------------------------------------
   Garantia
   -------------------------------------------------------------------------- */
.guarantee { background: #1c1c1f; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 42px 42px; padding: clamp(48px, 7vw, 84px) 24px; }
.guarantee__inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 34px; align-items: center; }
.guarantee__seal { text-align: center; }
.guarantee__seal img { width: clamp(180px, 40vw, 280px); height: auto; filter: drop-shadow(0 16px 36px rgba(255,45,110,.3)); }
.guarantee__title { font-family: 'Angela Notes', 'Permanent Marker', cursive; text-transform: uppercase; font-size: clamp(22px, 3.4vw, 36px); line-height: 1.08; color: #fff; margin: 0 0 14px; }
.guarantee__title span { color: var(--pink); }
.guarantee p { font-size: 16px; line-height: 1.6; color: rgba(233,231,236,.8); margin: 0; }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq { background: #CFCDCA; padding: clamp(54px, 8vw, 96px) 24px; }
.faq__inner { max-width: 820px; margin: 0 auto; }
.faq__title { text-align: center; font-family: 'Angela Notes', 'Permanent Marker', cursive; text-transform: uppercase; font-size: clamp(28px, 4.4vw, 46px); margin: 0 0 40px; color: var(--text); }
.faq__item { border-radius: 14px; overflow: hidden; background: #fbfbf9; margin-bottom: 12px; box-shadow: 0 6px 16px rgba(0,0,0,.08); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; background: none; border: none; cursor: pointer; text-align: left; font-family: 'DK Lemon Yellow Sun', 'Poppins', cursive; font-size: clamp(15px, 1.9vw, 19px); color: var(--text); transition: color .15s ease; }
.faq__q:hover { color: var(--pink-deep); }
.faq__sign { color: var(--pink); font-size: 28px; line-height: 1; flex: none; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a-inner { padding: 16px 24px 22px; color: #52515a; font-size: 15px; line-height: 1.65; border-top: 1px solid #e6e3df; }
.faq__item.is-open .faq__a { max-height: 600px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--ink); padding: 36px 24px; }
.footer__inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer__logo { height: 48px; width: auto; }
.footer__text { font-size: 13px; color: rgba(255,255,255,.55); margin: 0; text-align: center; flex: 1; min-width: 220px; }
.footer__text a { color: rgba(255,255,255,.8); text-decoration: underline; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 40px; height: 40px; border-radius: 9px; background: var(--pink); color: #fff; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; font-weight: 800; font-size: 11px; transition: background .15s ease; }
.footer__social a:hover { background: #E5105F; }

/* --------------------------------------------------------------------------
   WhatsApp flutuante
   -------------------------------------------------------------------------- */
.whatsapp { position: fixed; right: 20px; bottom: 20px; z-index: 70; width: 58px; height: 58px; border-radius: 50%; background: var(--whatsapp); display: inline-flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 12px 30px rgba(37,211,102,.5); transition: transform .15s ease; }
.whatsapp:hover { transform: translateY(-2px); }

/* --------------------------------------------------------------------------
   Lightbox
   -------------------------------------------------------------------------- */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(8,7,10,.92); display: none; align-items: center; justify-content: center; padding: 24px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.lightbox.is-open { display: flex; }
.lightbox__close { position: absolute; top: 18px; right: 22px; width: 48px; height: 48px; border-radius: 50%; border: none; background: var(--pink); color: #fff; font-size: 24px; font-weight: 900; cursor: pointer; box-shadow: 0 6px 18px rgba(0,0,0,.4); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; border: none; background: rgba(255,255,255,.12); color: #fff; font-size: 26px; cursor: pointer; }
.lightbox__nav--prev { left: 18px; }
.lightbox__nav--next { right: 18px; }
.lightbox__stage { max-width: 90vw; max-height: 88vh; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lightbox__img { max-width: 90vw; max-height: 78vh; object-fit: contain; border-radius: 8px; box-shadow: 0 24px 60px rgba(0,0,0,.6); }
.lightbox__name { font-family: 'DK Lemon Yellow Sun', 'Poppins', cursive; color: #fff; font-size: 20px; }

/* --------------------------------------------------------------------------
   Banner de consentimento (LGPD)
   -------------------------------------------------------------------------- */
.consent { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: var(--ink); color: #fff; padding: 16px 20px; display: none; box-shadow: 0 -8px 30px rgba(0,0,0,.4); }
.consent.is-visible { display: block; }
.consent__inner { max-width: 1000px; margin: 0 auto; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: center; }
.consent__text { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,.85); flex: 1 1 320px; }
.consent__text a { color: var(--pink); text-decoration: underline; }
.consent__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.consent__btn { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 13px; padding: 11px 22px; border-radius: 999px; border: none; cursor: pointer; }
.consent__btn--accept { background: var(--pink); color: #fff; }
.consent__btn--reject { background: transparent; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.25); }

/* --------------------------------------------------------------------------
   Responsivo
   -------------------------------------------------------------------------- */
@media (max-width: 860px) {
  .hero { min-height: clamp(520px, 118vw, 860px); align-items: flex-end; }
  .hero__art { object-position: 54% 12%; }
  .hero__inner { padding-top: clamp(120px, 40vw, 360px); }
  .hero__cubo { right: 6vw; top: 64px; font-size: 24vw; }
  .hero__scrim-b { display: block; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(199,10,94,0) 38%, rgba(199,10,94,.55) 64%, #C70A5E 100%); }
}

@media (max-width: 640px) {
  /* Galerias viram carrossel horizontal */
  .gallery { column-width: auto !important; column-gap: 0; display: flex; flex-wrap: nowrap; align-items: flex-start; overflow-x: auto; gap: 12px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 10px; scrollbar-width: thin; scrollbar-color: var(--pink) transparent; }
  .gallery--s .art { flex: 0 0 44vw; }
  .gallery--w .art { flex: 0 0 74vw; }
  .art { margin: 0 !important; scroll-snap-align: start; }
  .gallery::-webkit-scrollbar { height: 8px; }
  .gallery::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 999px; }
  /* Header: logo menor, só logo + CTA */
  .header__cap { padding: 8px 10px 8px 16px; gap: 8px; }
  .header__logo { height: 78px; margin: -22px 0; top: 8px; }
  .header__nav { gap: 0; }
  .header__link { display: none; }
  .header__cta { font-size: 14px; padding: 11px 18px; }
  /* Oferta A: pilha vertical limpa */
  .offerA { flex-direction: column; gap: 16px; }
  .offerA > div { width: 100% !important; max-width: 420px; margin: 0 auto; }
}

@media (max-width: 430px) {
  .hero__title { font-size: 34px; }
  .hero__watch { display: none; }
}
