/* ===========================================================================
   Clube Minimakers — landing SEO (HTML estático)
   Recriação da landing Flutter (modules/landing) em HTML semântico.
   Cores e vocabulário neobrutalista espelhados de modules/base/lib/colors.dart
   =========================================================================== */

:root {
  /* Core */
  --black: #111111;
  --grey: #4a4a4a;
  --white: #ffffff;

  /* Brutal pastels */
  --brutal-yellow: #fff3a0;
  --brutal-pink: #ffc6e3;
  --brutal-blue: #bee7ff;
  --brutal-green: #3edc8c;
  --brutal-lavender: #d6ccff;
  --brutal-lime: #dfffc2;
  --brutal-mint-soft: #bff2d8;

  /* Backgrounds */
  --bg-light: #f9faf7;
  --bg-soft: #f3f6f4;
  --bg-grid: #f6f7f9;

  /* Text */
  --text-primary: var(--black);
  --text-secondary: #666666;
  --text-muted: #9a9a9a;

  /* Accents */
  --accent-purple: #c5b9ff;
  --accent-pink: #ffb6d5;

  /* Neobrutal tokens */
  --border-w: 2px;
  --shadow-offset: 6px;
  --maxw: 1200px;
  --header-h: 60px;
  --grid-line: #d0d5dd;
}

/* Grid neobrutal (espelha NeoBrutalBackground: linhas a cada 32px) */
.nb-grid {
  background-image:
    repeating-linear-gradient(to right, var(--grid-line) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(to bottom, var(--grid-line) 0 1px, transparent 1px 32px);
}
/* Checker neobrutal (xadrez de 20px) */
.nb-checker {
  background-image:
    repeating-conic-gradient(var(--checker-color, var(--brutal-lavender)) 0% 25%, transparent 0% 50%);
  background-size: 40px 40px;
}
/* Faixas decorativas xadrez entre seções (case 6 / case 10 do Flutter) */
.nb-strip {
  height: 40px;
  width: 100%;
}
.nb-strip--lavender {
  /* background-color (não shorthand) p/ não apagar o background-image do .nb-checker */
  background-color: var(--bg-grid);
  --checker-color: var(--brutal-lavender);
}
.nb-strip--pink {
  --checker-color: var(--brutal-pink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

/* ---- Neobrutal helpers ---- */
.nb-card {
  border: var(--border-w) solid var(--black);
  background: var(--white);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--black);
}

.nb-badge {
  display: inline-block;
  border: var(--border-w) solid var(--black);
  padding: 4px 8px;
  box-shadow: 4px 4px 0 var(--black);
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ===========================================================================
   Announcement bar (preto, topo)
   =========================================================================== */
.announce {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 6px 16px;
  font-size: 13px;
  line-height: 1.3;
}
.announce strong {
  display: block;
  letter-spacing: 0.08em;
  font-weight: 800;
}

/* ===========================================================================
   Header
   =========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: var(--border-w) solid var(--black);
}
.site-header__inner {
  display: flex;
  align-items: stretch;
  min-height: var(--header-h);
}
.site-header__brand {
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-right: var(--border-w) solid var(--black);
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.site-header__spacer {
  flex: 1;
}
.locale-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  font-size: 13px;
}
.locale-toggle button {
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  color: var(--text-muted);
  padding: 0;
}
.locale-toggle button.is-active {
  color: var(--black);
  font-weight: 700;
}
.locale-toggle .sep {
  color: #cbd5e1;
}
.btn-login {
  display: flex;
  align-items: center;
  padding: 0 24px;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.02em;
}

/* ===========================================================================
   Hero / Cover
   =========================================================================== */
.hero {
  background: var(--white);
  padding: 40px;
}
.hero__grid {
  width: 100%;
  border-right: 1px solid var(--grid-line);
  border-bottom: 1px solid var(--grid-line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
  /* sem padding inferior: a foto encosta na borda de baixo do grid */
  padding: 24px 24px 0;
  /* linhas internas + externas (esq/topo) com mesma espessura/cor: 1px desenhado em x=0 e y=0 */
  background-image:
    repeating-linear-gradient(to right, var(--grid-line) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(to bottom, var(--grid-line) 0 1px, transparent 1px 32px);
}
.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 550px;
  margin: 0 auto;
  padding: 20px;
}
.hero__club {
  background: var(--brutal-lime);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: rgba(0, 0, 0, 0.85);
  padding: 4px 8px;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--black);
  border-radius: 0;
}
.hero__subtitle {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(28px, 4vw, 38px);
  margin: 8px 0 0;
}
.hero__claim {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 32px);
  /* line-height justa p/ a barra ancorar no glifo, não no vão da linha */
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 8px;
  margin: 4px 0;
}
.hero__adjective {
  position: relative;
  display: inline-block;
  padding: 0 4px;
  /* contexto de empilhamento: mantém a barra (::after z-index:-1) atrás do texto, à frente da página */
  isolation: isolate;
}
.hero__adjective::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  /* espelha o Flutter: barra de 12px (height) levantada 4px da base (translate -4) p/ fonte 32 */
  bottom: 0.125em;
  height: 0.375em;
  background: var(--accent-purple);
  z-index: -1;
}
.hero__diy {
  font-size: 18px;
  margin: 12px 0 0;
}
.hero__image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: end;
}
.hero__image img {
  width: 100%;
  max-height: 550px;
  object-fit: contain;
}

@media (max-width: 1199px) {
  .hero__grid {
    grid-template-columns: 1fr;
    /* empilhado: foto encosta na borda inferior do grid (sem padding sob ela) */
    padding-bottom: 0;
  }
  .hero__image {
    align-self: end;
  }
  .hero__image img {
    max-height: 350px;
  }
}

@font-face {
  font-family: "SPACE_INVADERS";
  src: url("/assets/fonts/space_invaders.ttf") format("truetype");
  font-display: swap;
}

/* Cartão neobrutal arredondado (espelha base/NeoBrutalCard: r24, borda branca 3px, sombra preta 6px) */
.nb-rounded {
  border-radius: 24px;
  border: 3px solid var(--white);
  box-shadow: 6px 6px 0 var(--black);
  overflow: hidden;
}

/* Botão CTA neobrutal (rosa) */
.nb-btn {
  display: inline-block;
  background: var(--brutal-pink);
  border: 3px solid var(--white);
  box-shadow: 6px 6px 0 var(--black);
  padding: 10px 16px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  color: var(--black);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.nb-btn:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--black);
}

/* Snippet (rótulo pequeno colorido acima dos títulos) */
.snippet {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
}
.snippet--indigo { color: #4f46e5; }
.snippet--pink { color: #db2777; }

/* ===========================================================================
   Como funciona
   =========================================================================== */
.how {
  padding: 32px 0;
}
.how__title {
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 32px;
}
.how__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
}
.how-card {
  width: 280px;
  border-radius: 24px;
  border: 3px solid var(--white);
  box-shadow: 6px 6px 0 var(--black);
  padding: 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.how-card--pink { background: var(--brutal-pink); }
.how-card--lavender { background: var(--brutal-lavender); }
.how-card--lime { background: var(--brutal-lime); }
.how-card__sticker {
  height: 140px;
  width: auto;
  margin-bottom: 16px;
}
.how-card__body {
  font-size: 16px;
  font-weight: 700;
  opacity: 0.6;
  margin: 8px 0 16px;
}
.how-card__note {
  font-size: 15px;
  opacity: 0.6;
  margin: 0 0 16px;
}
.how-card__footer {
  font-weight: 300;
  font-size: 12px;
  margin: auto 0 0;
}

/* ===========================================================================
   Feature blocks (Validação / Criatividade)
   =========================================================================== */
.feature {
  padding: 40px 0;
}
.feature--methodology { background: var(--brutal-lavender); }
.feature--creativity { background: var(--brutal-lavender); }

.feature__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--brutal-lime);
}
.feature__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.feature__media img {
  max-height: 360px;
  width: auto;
}
.feature__media--lime {
  background-color: var(--brutal-lime);
  /* grid escuro do NeoBrutalBackground (lineColor default = BaseColors.grey #4a4a4a, spacing 32) */
  background-image:
    repeating-linear-gradient(to right, var(--grey) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(to bottom, var(--grey) 0 1px, transparent 1px 32px);
}
.feature__text {
  background: var(--white);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}
.feature__title {
  font-family: "Anton", "Inter", sans-serif;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 0.03em;
  margin: 0;
}
.feature__body {
  font-size: 18px;
  margin: 0;
}

.feature__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
}
.feature__split .feature__text {
  background: transparent;
}
.feature__image-rot {
  display: flex;
  justify-content: center;
  padding: 24px;
}
.feature__image-card {
  transform: rotate(10deg);
  background: var(--brutal-lavender);
  background-image:
    repeating-conic-gradient(#ffffff 0% 25%, transparent 0% 50%);
  background-size: 40px 40px;
  max-width: 320px;
}
.feature__image-card img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 800px) {
  .feature__card,
  .feature__split {
    grid-template-columns: 1fr;
  }
  .feature__split--reversed .feature__text { order: 2; }
  .feature__text { align-items: center; text-align: center; }
}

/* ===========================================================================
   Profe Cami
   =========================================================================== */
.teacher {
  position: relative;
  background: var(--brutal-pink);
  overflow: hidden;
}
.teacher__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  opacity: 0.6;
}
.teacher__bg-track {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  animation: teacher-scroll 16s linear infinite;
  will-change: transform;
}
.teacher__bg-line {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 48px;
  letter-spacing: 0.04em;
  line-height: 1.25;
  padding: 4px 16px;
  white-space: nowrap;
  color: var(--black);
}
.teacher__bg-line--stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--black);
}
@keyframes teacher-scroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}
/* slide horizontal lento (direita -> esquerda) das fotos, além do fade (porte do ImageChanger) */
@keyframes teacher-drift {
  from { transform: translateX(7%); }
  to { transform: translateX(-7%); }
}
@media (prefers-reduced-motion: reduce) {
  .teacher__bg-track { animation: none; }
  .teacher__photo img.is-active { animation: none; }
}
.teacher__split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 24px;
  padding-top: 40px;
}
.teacher__photo {
  position: relative;
  min-height: 600px;
}
.teacher__photo img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 600px;
  width: auto;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.teacher__photo img.is-active {
  opacity: 1;
  animation: teacher-drift 6s linear both;
}
/* texto branco: encosta na borda direita da página e centraliza vertical (herda flex de .feature__text) */
.teacher__text {
  background: var(--white);
  /* não estica: fica do tamanho do conteúdo e centraliza na linha de 600px (rosa acima/abaixo) */
  align-self: center;
  margin: 0;
}
@media (max-width: 800px) {
  .teacher__split { grid-template-columns: 1fr; gap: 0; }
  .teacher__photo { justify-content: center; }
}

/* ===========================================================================
   Planos
   =========================================================================== */
.pricing {
  background: var(--bg-soft);
  padding: 40px 0;
}
.pricing__title {
  text-align: center;
  font-family: "Anton", "Inter", sans-serif;
  font-weight: 400;
  font-size: 32px;
  margin: 0 0 4px;
}
.pricing__subtitle {
  text-align: center;
  font-size: 16px;
  margin: 0 0 32px;
}
.pricing__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
}
.price-card {
  width: 280px;
  background: var(--white);
  border-radius: 24px;
  border: 3px solid var(--white);
  box-shadow: 6px 6px 0 var(--black);
  overflow: hidden;
}
.price-card__title {
  margin: 0;
  padding: 16px 8px 12px;
  font-family: "SPACE_INVADERS", "Anton", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  border-bottom: 1px solid var(--black);
  white-space: pre-line;
}
.price-card__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  text-align: center;
}
.price-card__old {
  color: #dc2626;
  text-decoration: line-through;
  font-size: 16px;
}
.price-card__for {
  font-size: 18px;
}
.price-card__amount {
  font-size: 48px;
  line-height: 1.1;
  display: inline-flex;
  align-items: flex-end;
}
.price-card__per {
  font-size: 14px;
  padding-bottom: 8px;
  margin-left: 2px;
}
.price-card__model {
  font-size: 14px;
  margin-top: 8px;
}
.price-card__content {
  padding: 32px;
  border-radius: 0 0 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.price-card__content--lavender { background: var(--brutal-lavender); }
.price-card__content--lime { background: var(--brutal-lime); }
.price-card__bullets {
  font-weight: 700;
  opacity: 0.6;
  font-size: 16px;
  margin: 0;
}
.price-card__cta {
  background: var(--white);
  text-align: center;
}
.price-card__payment {
  font-style: italic;
  font-size: 13px;
  text-align: center;
  margin: 0;
}

/* ===========================================================================
   Manifesto / Quote
   =========================================================================== */
.manifesto {
  padding: 32px 16px;
}
.manifesto__inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
}
.manifesto .quote {
  position: absolute;
  height: 80px;
  width: auto;
  opacity: 0.5;
}
.manifesto .quote--tl {
  top: 0;
  left: 0;
}
.manifesto .quote--br {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}
.manifesto__text {
  text-align: center;
  font-size: clamp(20px, 2.6vw, 24px);
  line-height: 1.6;
  margin: 0;
}
.manifesto__text .u {
  text-decoration: underline;
  font-weight: 700;
}
.nb-tag {
  display: inline-block;
  background: var(--brutal-lavender);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--black);
  padding: 2px 8px;
  font-weight: 700;
  font-family: "Space Grotesk", "Inter", sans-serif;
}
.nb-tag--rot {
  transform: rotate(2.5deg);
}

/* ===========================================================================
   Marquee (faixa preta)
   =========================================================================== */
.marquee {
  background: var(--black);
  overflow: hidden;
  padding: 6px 0;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding-left: 32px;
  animation: marquee-scroll 20s linear infinite;
  will-change: transform;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--brutal-lavender);
  font-family: "Anton", "Inter", sans-serif;
  font-size: 22px;
  letter-spacing: 0.02em;
}
.marquee__item img {
  height: 20px;
  width: auto;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ===========================================================================
   Os famosos kits
   =========================================================================== */
.kits {
  padding: 40px 0;
}
.kits__inner {
  text-align: center;
}
.kits__title {
  font-family: "Anton", "Inter", sans-serif;
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 8px;
}
.kits__spoiler {
  font-size: 16px;
  margin: 0 auto;
  max-width: 520px;
}
.kits__figure {
  margin: 32px auto 0;
  position: relative;
}
.kits__figure img {
  height: 400px;
  width: 100%;
  object-fit: contain;
}
/* Spoiler: imagem fica em vidro fosco (frost) até clicar no olho para revelar */
.reveal-blur { cursor: pointer; }
.reveal-blur img {
  filter: blur(12px);
  transition: filter 0.6s ease;
}
.reveal-blur::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.28);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 1;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.reveal-blur.is-revealed { cursor: default; }
.reveal-blur.is-revealed img { filter: blur(0); }
.reveal-blur.is-revealed::after { opacity: 0; }

/* botão olho (hide/show) */
.reveal-toggle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--black);
  background: var(--white);
  color: var(--black);
  box-shadow: 4px 4px 0 var(--black);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.3s ease;
}
.reveal-toggle:hover { transform: translate(-50%, -50%) scale(1.06); }
.reveal-toggle:active { box-shadow: 2px 2px 0 var(--black); }
.reveal-blur.is-revealed .reveal-toggle { opacity: 0.55; }
.reveal-blur.is-revealed .reveal-toggle:hover { opacity: 1; }
.reveal-toggle .reveal-slash { transition: opacity 0.2s ease; }
.reveal-blur.is-revealed .reveal-toggle .reveal-slash { opacity: 0; }

/* ===========================================================================
   FAQ
   =========================================================================== */
.faq {
  /* grey.shade900 */
  background: #212121;
  color: var(--white);
  padding: 48px 40px;
}
.faq__inner {
  max-width: 720px;
  margin: 0 auto;
}
.faq__title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 24px;
}
.faq__item {
  border: 1px solid #616161; /* grey.shade700 */
  background: #1e1e1e;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
/* chevron (Icons.chevron_right) — › fechado, gira 90° p/ ⌄ ao abrir */
.faq__item summary::after {
  content: "";
  flex: none;
  width: 9px;
  height: 9px;
  margin-right: 4px;
  border-right: 2px solid #bdbdbd; /* grey.shade400 */
  border-bottom: 2px solid #bdbdbd;
  transform: rotate(-45deg);
  transition: transform 0.2s ease;
}
.faq__item[open] summary::after {
  transform: rotate(45deg);
}
.faq__answer {
  border-top: 1px solid #616161; /* divisória sob o header */
  padding: 16px;
  color: #e0e0e0; /* grey.shade300 */
  font-size: 14px;
  line-height: 1.5;
}

/* ===========================================================================
   Footer
   =========================================================================== */
.site-footer {
  background: #1a1a1a;
  color: var(--white);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
  padding: 40px 16px;
}
.site-footer__social {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--white);
  font-size: 14px;
}
.site-footer__copy {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* ===========================================================================
   Galeria (carrossel de polaroids)
   =========================================================================== */
.gallery {
  background: var(--bg-grid);
  padding: 32px 0;
  overflow: hidden;
}
.gallery__track {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  animation: gallery-scroll 60s linear infinite;
}
.gallery:hover .gallery__track {
  animation-play-state: paused;
}
@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .gallery__track { animation: none; }
}
.gallery__mockup {
  margin: 0;
  flex: 0 0 auto;
}
.gallery__mockup img {
  height: 300px;
  width: auto;
}

/* Polaroid */
.polaroid {
  flex: 0 0 auto;
  margin: 0;
  background: var(--white);
  padding: 12px 12px 48px;
  box-shadow: 4px 6px 14px rgba(0, 0, 0, 0.18);
  position: relative;
}
.polaroid:nth-child(3n) { transform: rotate(-3deg); }
.polaroid:nth-child(3n + 1) { transform: rotate(2.5deg); }
.polaroid:nth-child(3n + 2) { transform: rotate(-1.5deg); }
.polaroid__img {
  width: 230px;
  height: 270px;
  background: var(--black);
  overflow: hidden;
}
.polaroid__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.polaroid__name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  text-align: center;
  font-family: "Shadows Into Light Two", cursive;
  font-size: 30px;
  transform: rotate(-7deg);
}

/* ===========================================================================
   Jornada / puzzle
   =========================================================================== */
.journey {
  padding: 120px 0 20px;
}
.journey__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border: 3px solid var(--white);
  box-shadow: 6px 6px 0 var(--black);
}
.journey__puzzle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.journey__text {
  background: var(--white);
}
.puzzle {
  position: relative;
  width: 360px;
  height: 360px;
  max-width: 100%;
}
.puzzle__tile {
  position: absolute;
  background-repeat: no-repeat;
  border: 1px solid var(--white);
  box-sizing: border-box;
  transition: left 0.3s ease-in-out, top 0.3s ease-in-out;
}
.puzzle__full {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.puzzle__full.is-visible { opacity: 1; }
.puzzle__tile.is-hidden { opacity: 0; }
.puzzle.no-anim .puzzle__tile { transition: none; }

@media (max-width: 800px) {
  .journey__card { grid-template-columns: 1fr; }
}

/* ===========================================================================
   WhatsApp floating button
   =========================================================================== */
.wpp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--brutal-green);
  border: var(--border-w) solid var(--black);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.12s ease;
}
.wpp-fab:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--black);
}
.wpp-fab img {
  width: 44px;
  height: 44px;
}
