/* ═══════════════════════════════════════════════════════════════
   Cupom JUJU10 — Shared Stylesheet for inner pages
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg: #fff9ef;
  --panel: #fffaf3;
  --panel-strong: #fff7eb;
  --line: #f1ddbf;
  --line-strong: #e8cfa9;
  --blue: #0758ad;
  --blue-dark: #053b83;
  --blue-deep: #04265d;
  --text: #061b3e;
  --muted: #657289;
  --pink: #f39aa0;
  --pink-soft: #fde0db;
  --shadow: 0 18px 46px rgba(70,48,18,.07);
  --header-height: 82px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-width: 320px;
  overflow-x: hidden;
}

[id] { scroll-margin-top: calc(var(--header-height) + 16px); }

a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }
button { border: 0; cursor: pointer; }
img, iframe, svg { max-width: 100%; }

/* ── Layout ── */
.page-shell {
  width: min(100% - 96px, 1200px);
  margin-inline: auto;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 6px 0 8px;
  background: rgba(255,249,239,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 18px rgba(70,48,18,.07);
}

main { padding-top: calc(var(--header-height) + 20px); }

.nav-bar {
  min-height: 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand { width: 220px; max-width: 42vw; display: inline-flex; align-items: center; }
.brand img { width: 100%; height: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: #10244b;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  padding: 10px 0 8px;
  transition: color .18s ease;
}

.nav-links a:hover, .nav-links a:focus-visible { color: var(--blue); }

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 3px;
  height: 3px;
  border-radius: 99px;
  background: var(--blue);
  opacity: 0;
  transform: scaleX(.4);
  transform-origin: center;
  transition: opacity .18s ease, transform .18s ease;
}

.nav-links a:hover::after, .nav-links a:focus-visible::after { opacity: 1; transform: scaleX(1); }

.nav-links .nav-blog {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.nav-links .nav-blog::after { display: none; }

.nav-links .nav-blog:hover, .nav-links .nav-blog:focus-visible {
  background: var(--blue);
  color: #fff;
  transform: translateY(-1px);
}

.header-action { justify-self: end; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(180deg, #0b63bd 0%, #064f9f 100%);
  box-shadow: 0 8px 16px rgba(3,67,142,.22), inset 0 0 0 1px rgba(255,255,255,.18);
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease;
  white-space: nowrap;
  text-align: center;
}

.btn:hover, .btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 11px 22px rgba(3,67,142,.27), inset 0 0 0 1px rgba(255,255,255,.18);
}

.btn.secondary {
  color: var(--blue);
  background: rgba(255,255,255,.72);
  border: 2px solid #a9c2d9;
  box-shadow: none;
}

.btn.secondary:hover, .btn.secondary:focus-visible {
  background: #fff;
  box-shadow: 0 10px 22px rgba(5,58,121,.1);
}

.btn.small {
  min-height: 36px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  box-shadow: none;
}

/* ── Panel ── */
.panel {
  background: linear-gradient(180deg, rgba(255,250,243,.97) 0%, rgba(255,247,235,.94) 100%);
  border: 1.5px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

/* ── Inner page hero ── */
.inner-hero {
  padding: 48px 64px 52px;
  margin-bottom: 16px;
  display: grid;
  gap: 20px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
  border: 1.5px solid #f4c7bd;
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  width: fit-content;
}

.eyebrow svg { width: 18px; height: 18px; color: var(--pink); fill: currentColor; }

.inner-hero h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(32px, 3.8vw, 58px);
  line-height: 1.15;
  font-weight: 900;
}

.inner-hero .hero-copy {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
  font-weight: 500;
}

/* ── Coupon copy card ── */
.coupon-copy-card {
  width: min(100%, 480px);
  display: block;
  text-align: center;
  padding: 14px 20px 18px;
  border: 2px dashed #efb1a7;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 12px 28px rgba(64,43,20,.06);
}

.coupon-copy-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.coupon-copy-card strong {
  display: block;
  margin-top: 2px;
  color: var(--text);
  font-size: clamp(56px, 10vw, 88px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: .02em;
}

.copy-status {
  min-height: 20px;
  margin: -8px 0 0;
  color: #dd7180;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  transition: opacity .2s ease;
}
.copy-status.show { opacity: 1; }

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── Section titles ── */
.section-title {
  margin: 0;
  text-align: center;
  font-size: 27px;
  line-height: 1.2;
  font-weight: 900;
  color: var(--text);
}

.section-sub {
  margin: 6px 0 22px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

/* ── Content box ── */
.content-section {
  padding: 36px 52px 40px;
  margin-bottom: 16px;
}

.box-title {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 23px;
  line-height: 1.2;
  font-weight: 900;
}

.box-subtitle {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

/* ── Article content ── */
.article-body {
  max-width: 800px;
}

.article-body p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}

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

.article-body strong { color: var(--text); font-weight: 800; }

.article-body h2 {
  margin: 28px 0 10px;
  color: var(--text);
  font-size: 21px;
  font-weight: 900;
}

.article-body h3 {
  margin: 20px 0 8px;
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
}

/* ── Steps / How-to ── */
.how-to { padding: 32px 52px 36px; margin-bottom: 16px; }

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.step { position: relative; }

.step-number {
  position: absolute;
  left: -8px; top: -14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, #0d66bc 0%, #064d9a 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 4px 9px rgba(4,72,150,.28);
}

.step-card {
  min-height: 116px;
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.48);
}

.soft-icon {
  display: grid;
  place-items: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fbf0e7;
  color: var(--pink);
  flex: 0 0 auto;
}

.soft-icon svg { width: 36px; height: 36px; }

.step-card h3 {
  margin: 0 0 5px;
  color: #0a1f46;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
}

.step-card strong { color: #ec7c83; }

/* ── FAQ ── */
.faq-list { display: grid; gap: 9px; margin-top: 14px; }

details {
  border: 1.5px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.48);
  overflow: hidden;
}

summary { list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 46px;
  padding: 0 18px 0 22px;
  color: #1d2f54;
  font-size: 14px;
  font-weight: 700;
  transition: background .18s ease, color .18s ease;
}

.faq-summary:hover, .faq-summary:focus-visible {
  background: rgba(237,243,246,.74);
  color: var(--blue-dark);
}

.faq-summary svg {
  width: 20px; height: 20px;
  color: #18335f;
  flex: 0 0 auto;
  transition: transform .2s ease;
}

details[open] .faq-summary svg { transform: rotate(180deg); }

.faq-answer {
  padding: 0 22px 15px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 500;
}

.faq-answer strong { color: var(--text); }

/* ── Brand chips / pills ── */
.brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.brand-chips a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: #edf3f6;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.brand-chips a:hover, .brand-chips a:focus-visible {
  background: var(--blue);
  color: #fff;
  transform: translateY(-1px);
}

.brand-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
}

/* ── SEO note ── */
.seo-note {
  margin-top: 18px;
  padding: 18px 22px;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.45);
}

.seo-note h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
  text-align: center;
}

.seo-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 600;
  text-align: center;
}

/* ── Flyer card image ── */
.flyer-wrap {
  text-align: center;
  margin: 0 0 20px;
}

.flyer-wrap img {
  width: 100%;
  max-width: 760px;
  height: auto;
  border-radius: 20px;
  display: inline-block;
  filter: drop-shadow(0 14px 28px rgba(7,45,92,.18));
}

/* ── Extra pages grid ── */
.extra-pages-section {
  padding: 32px 52px 36px;
  margin-bottom: 16px;
}

.extra-pages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.extra-page-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.46);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.extra-page-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(64,47,24,.09);
  border-color: #c8d8e8;
}

.extra-page-card strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.extra-page-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

/* ── Two-column layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  align-items: start;
}

.box { padding: 28px 32px 32px; }

/* ── Info pills (coupon conditions) ── */
.cupom-info {
  margin-bottom: 16px;
  padding: 16px 24px;
  background: rgba(255,255,255,.55);
  border: 1.5px solid var(--line);
  border-radius: 18px;
}

.info-pills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.info-pills li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: rgba(255,255,255,.75);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.info-pills li svg { color: var(--blue); flex-shrink: 0; }

/* ── All-FAQ link ── */
.all-faq {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 22px auto 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  transition: color .18s ease, transform .18s ease;
}

.all-faq:hover { color: var(--blue-dark); transform: translateX(2px); }

/* ── Footer ── */
.site-footer { margin-top: 18px; padding-bottom: 18px; }

.footer-ticket {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) 1.35fr minmax(200px, .8fr);
  align-items: center;
  gap: 40px;
  min-height: 155px;
  padding: 30px 90px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, #086dc5 0%, #0557a8 48%, #053c87 100%);
  box-shadow: 0 18px 34px rgba(5,66,137,.18);
  overflow: hidden;
}

.footer-ticket::before,
.footer-ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg);
  transform: translateY(-50%);
}

.footer-ticket::before { left: -24px; }
.footer-ticket::after { right: -24px; }

.footer-trust { display: grid; grid-template-columns: 56px 1fr; align-items: center; gap: 16px; }
.footer-trust svg { width: 52px; height: 52px; }

.footer-trust h2, .footer-social h2 { margin: 0 0 5px; font-size: 18px; font-weight: 900; }
.footer-trust p { margin: 0; max-width: 260px; color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.4; font-weight: 600; }

.footer-center {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 0 36px;
  border-left: 2px solid rgba(255,255,255,.25);
  border-right: 2px solid rgba(255,255,255,.25);
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  font-weight: 800;
}

.footer-nav a { position: relative; transition: opacity .18s; }
.footer-nav a:hover { opacity: .78; }

.footer-extra-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.footer-extra-nav a {
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 700;
  transition: color .18s;
}

.footer-extra-nav a:hover { color: #fff; }

.copyright { margin: 0; color: rgba(255,255,255,.58); font-size: 12px; font-weight: 600; text-align: center; }
.affiliate-note { margin: -10px 0 0; color: rgba(255,255,255,.86); font-size: 12px; font-weight: 700; text-align: center; }

.footer-disclaimer { margin-top: 14px; padding: 0 22px; color: #728098; font-size: 11px; line-height: 1.65; font-weight: 600; text-align: center; }
.footer-disclaimer p { max-width: 1040px; margin: 0 auto; }

.footer-social { text-align: center; }

.social-list { display: flex; justify-content: center; gap: 14px; margin-top: 10px; }

.social-link {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  transition: background .18s, border-color .18s, transform .18s;
}

.social-link:hover, .social-link:focus-visible {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-1px);
}

.social-link svg { width: 21px; height: 21px; }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(7,88,173,.32);
  outline-offset: 4px;
}

/* ══ Reveal animations ═══════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transition: opacity .55s ease, transform .55s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal="up"] { transform: translateY(22px); }
[data-reveal="soft"] { transform: translateY(10px); }
[data-reveal="left"] { transform: translateX(-22px); }
[data-reveal="right"] { transform: translateX(22px); }

[data-reveal].is-visible { opacity: 1; transform: none; }

/* ══ Responsive ═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .step-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .extra-pages-grid { grid-template-columns: repeat(3, 1fr); }
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  :root { --header-height: 126px; }

  .nav-bar {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 0 16px;
    padding: 10px 0 6px;
  }

  .brand { grid-column: 1; grid-row: 1; width: 190px; }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    gap: 0 20px;
    font-size: 13px;
    padding: 8px 0 2px;
  }

  .header-action {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-height: 40px;
    padding: 0 18px;
    font-size: 13px;
    border-radius: 8px;
  }

  .inner-hero { padding: 36px 28px 40px; }
  .content-section, .how-to, .extra-pages-section { padding-inline: 28px; }
  .footer-ticket { grid-template-columns: 1fr; gap: 24px; padding: 28px 32px; text-align: center; }
  .footer-trust { justify-content: center; }
  .footer-center { border: 0; border-top: 2px solid rgba(255,255,255,.25); border-bottom: 2px solid rgba(255,255,255,.25); padding: 22px 0; }
  .extra-pages-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 660px) {
  :root { --header-height: 120px; }
  .page-shell { width: min(100% - 24px, 560px); }

  .nav-bar {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 6px 12px;
    padding: 8px 0 4px;
  }

  .brand { grid-column: 1; grid-row: 1; justify-self: start; width: 148px; }
  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px 12px;
    font-size: 12px;
  }

  .nav-links a { padding: 5px 0 4px; }

  .header-action {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-height: 38px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .btn { min-height: 52px; padding-inline: 18px; font-size: 15px; }

  .inner-hero { padding: 24px 16px 28px; border-radius: 20px; gap: 16px; }
  .inner-hero h1 { font-size: clamp(26px, 9vw, 38px); }
  .inner-hero .hero-copy { font-size: 15px; }

  .content-section, .how-to, .extra-pages-section, .box { padding: 18px; border-radius: 20px; }

  .step-grid { grid-template-columns: 1fr; gap: 22px; }
  .step-card { grid-template-columns: 56px 1fr; padding: 14px; }
  .soft-icon { width: 52px; height: 52px; }
  .soft-icon svg { width: 28px; height: 28px; }

  .section-title, .box-title { font-size: 19px; }

  .extra-pages-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .extra-page-card { padding: 12px 14px; }

  .footer-ticket { padding: 24px 18px; border-radius: 18px; }
  .footer-nav { font-size: 12px; gap: 10px; }

  .coupon-copy-card { width: 100%; }
}
