:root {
      --red:      #B8152E;
      --red-h:    #d4193a;
      --red-dim:  rgba(184,21,46,.12);
      --red-glow: rgba(184,21,46,.28);
      --bg:       #08080a;
      --s1:       #0f0f12;
      --s2:       #141418;
      --line:     #1c1c22;
      --muted:    #9898a8;
      --subtle:   #c0c0cc;
      --body:     #e0e0e8;
      --white:    #f4f4f6;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { background: var(--bg); color: var(--white); font-family: 'Plus Jakarta Sans', sans-serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }

    /* ── HEADER ── */
    .hdr {
      position: sticky; top: 0; z-index: 200;
      height: 64px;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 52px;
      background: rgba(8,8,10,.92);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--line);
    }
    .hdr-logo { display: flex; align-items: center; gap: 9px; }
    .hdr-logo-txt { font-size: 1rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
    .hdr-nav { display: flex; gap: 28px; }
    .hdr-nav a { font-size: .82rem; font-weight: 600; color: var(--muted); transition: color .2s; }
    .hdr-nav a:hover { color: var(--white); }
    .hdr-btn {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--red); color: #fff;
      font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
      padding: 9px 20px; border-radius: 999px;
      transition: background .2s, box-shadow .2s;
      white-space: nowrap;
    }
    .hdr-btn:hover { background: var(--red-h); box-shadow: 0 4px 18px var(--red-glow); }
    .hdr-btn-label { display: inline; }
    @media(max-width:860px){
      .hdr { padding: 0 20px; }
      .hdr-nav { display: none; }
      .hdr-btn { padding: 9px 14px; font-size: .72rem; gap: 6px; }
      .hdr-btn-label { display: none; }
    }

    /* ── FLOATING WHATSAPP ── */
    .wa-float {
      position: fixed;
      bottom: 28px; right: 28px;
      z-index: 999;
      display: flex; align-items: center; gap: 10px;
      background: #25D366;
      color: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700; font-size: .88rem;
      padding: 14px 22px 14px 18px;
      border-radius: 999px;
      box-shadow: 0 8px 28px rgba(37,211,102,.45);
      text-decoration: none;
      transition: transform .2s, box-shadow .2s, background .2s;
      animation: float-in .5s cubic-bezier(.34,1.56,.64,1) .8s both;
    }
    .wa-float:hover {
      background: #1ebe5d;
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 14px 36px rgba(37,211,102,.55);
    }
    .wa-float:active { transform: scale(.97); }
    .wa-float-txt { white-space: nowrap; }
    @media(max-width:600px){
      .wa-float { bottom: 20px; right: 16px; padding: 13px 16px; }
      .wa-float-txt { display: none; }
    }
    @keyframes float-in {
      from { opacity: 0; transform: translateY(20px) scale(.85); }
      to   { opacity: 1; transform: none; }
    }
    /* pulse ring */
    .wa-float::before {
      content: '';
      position: absolute; inset: -4px;
      border-radius: 999px;
      border: 2px solid rgba(37,211,102,.5);
      animation: ring 2.5s ease-in-out 1.5s infinite;
    }
    @keyframes ring {
      0%  { transform: scale(1);   opacity: .7; }
      60% { transform: scale(1.12); opacity: 0; }
      100%{ transform: scale(1.12); opacity: 0; }
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: calc(100svh - 64px);
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center;
      overflow: hidden;
    }
    @media(max-width:900px){ .hero { grid-template-columns: 1fr; min-height: auto; } }

    .hero-img {
      position: relative;
      height: 100%;
      min-height: calc(100svh - 64px);
    }
    @media(max-width:900px){ .hero-img { min-height: 300px; height: 300px; } }

    .hero-img img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center top;
      filter: brightness(.55) saturate(.8);
    }
    .hero-img-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(90deg, var(--bg) 0%, transparent 40%),
                  linear-gradient(0deg, var(--bg) 0%, transparent 30%);
    }
    @media(max-width:900px){
      .hero-img-overlay {
        background: linear-gradient(0deg, var(--bg) 0%, transparent 50%),
                    linear-gradient(180deg, var(--bg) 0%, transparent 30%);
      }
    }

    .hero-txt {
      position: relative; z-index: 2;
      padding: 72px 64px 72px 72px;
    }
    @media(max-width:900px){ .hero-txt { padding: 40px 24px 60px; order: 2; } }
    @media(max-width:900px){ .hero-img { order: 1; } }

    .tag {
      display: inline-flex; align-items: center; gap: 8px;
      border: 1px solid rgba(184,21,46,.4);
      background: rgba(184,21,46,.1);
      color: #e06075;
      font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
      padding: 6px 14px; border-radius: 999px; margin-bottom: 28px;
      max-width: 100%; white-space: normal; word-break: break-word; line-height: 1.4;
    }
    @media(max-width:900px){
      .tag { display: none; }
    }
    .tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); box-shadow: 0 0 10px var(--red); animation: blink 2.4s ease-in-out infinite; }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

    .hero h1 {
      font-size: clamp(2.4rem, 4vw, 3.6rem);
      font-weight: 800; line-height: 1.05; letter-spacing: -.03em;
      margin-bottom: 8px;
    }
    .hero h1 em { font-family: 'Fraunces', serif; font-style: italic; color: var(--red-h); }
    .hero-sub {
      font-size: clamp(2rem, 3vw, 2.6rem);
      font-weight: 800; line-height: 1.05; letter-spacing: -.03em;
      color: var(--subtle); margin-bottom: 20px;
    }
    .hero-desc {
      font-size: 1rem; color: var(--body); line-height: 1.75; max-width: 440px; margin-bottom: 36px;
    }
    .hero-desc strong { color: var(--white); }

    .btn-stack { display: flex; flex-direction: column; gap: 10px; max-width: 380px; }

    .btn-main {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      background: var(--red); color: #fff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700; font-size: .95rem; letter-spacing: .04em;
      padding: 16px 28px; border-radius: 12px; border: none; cursor: pointer;
      transition: background .2s, transform .15s, box-shadow .25s;
      white-space: nowrap; text-decoration: none;
    }
    .btn-main:hover { background: var(--red-h); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(184,21,46,.4); }
    .btn-main:active { transform: none; }

    .btn-out {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      background: transparent; color: var(--white);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600; font-size: .9rem;
      padding: 14px 28px; border-radius: 12px;
      border: 1px solid var(--line); cursor: pointer; white-space: nowrap; text-decoration: none;
      transition: border-color .2s, background .2s;
    }
    .btn-out:hover { border-color: #44444c; background: rgba(255,255,255,.03); }

    .hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
    .chip {
      display: flex; align-items: center; gap: 7px;
      background: var(--s1); border: 1px solid var(--line);
      border-radius: 8px; padding: 6px 12px;
      font-size: .75rem; font-weight: 600; color: var(--subtle);
    }
    .chip-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

    /* ── STATS ── */
    .stats {
      display: flex; flex-wrap: wrap;
      border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
      background: var(--s1);
    }
    .stat { flex: 1; min-width: 130px; padding: 32px 16px; text-align: center; border-right: 1px solid var(--line); }
    .stat:last-child { border-right: none; }
    .stat-n {
      font-size: 2.2rem; font-weight: 800; line-height: 1; margin-bottom: 5px;
      background: linear-gradient(135deg, var(--red-h), #e8607a);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .stat-l { font-size: .72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

    /* ── SECTION SHARED ── */
    .sec { padding: 88px 52px; }
    .sec-inner { max-width: 1140px; margin: 0 auto; }
    @media(max-width:768px){ .sec { padding: 64px 20px; } }

    .sec-label { display: inline-block; font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--red-h); margin-bottom: 14px; }
    .sec-title { font-size: clamp(1.8rem, 2.8vw, 2.5rem); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; max-width: 520px; margin-bottom: 52px; }
    .sec-title em { font-family: 'Fraunces', serif; font-style: italic; color: var(--red-h); }

    /* ── NETFLIX SECTION ── */
    .netflix-sec {
      background: var(--s1);
      border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    }
    .netflix-inner {
      max-width: 1140px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 72px; align-items: center;
    }
    @media(max-width:840px){ .netflix-inner { grid-template-columns: 1fr; gap: 40px; } }

    .netflix-img-wrap {
      position: relative; border-radius: 16px; overflow: hidden;
      border: 1px solid var(--line);
      box-shadow: 0 24px 64px rgba(0,0,0,.6);
    }
    .netflix-img-wrap img { width: 100%; height: 360px; object-fit: cover; filter: brightness(.8); }
    .netflix-badge {
      position: absolute; bottom: 20px; left: 20px;
      background: rgba(8,8,10,.9);
      border: 1px solid var(--line);
      border-radius: 10px; padding: 12px 16px;
      display: flex; align-items: center; gap: 12px;
    }
    .netflix-badge-icon {
      width: 36px; height: 36px; border-radius: 8px;
      background: var(--red); display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
    }
    .netflix-badge-txt p { font-size: .72rem; color: var(--muted); font-weight: 600; }
    .netflix-badge-txt strong { font-size: .85rem; color: var(--white); font-weight: 800; }

    .netflix-points { display: flex; flex-direction: column; gap: 20px; }
    .netflix-point { display: flex; gap: 16px; align-items: flex-start; }
    .np-icon {
      width: 42px; height: 42px; flex-shrink: 0;
      background: var(--red-dim); border-radius: 10px;
      display: flex; align-items: center; justify-content: center; color: var(--red-h);
    }
    .np-body h5 { font-weight: 800; font-size: .96rem; margin-bottom: 4px; }
    .np-body p { font-size: .84rem; color: var(--muted); line-height: 1.6; }

    /* ── MÓDULOS ── */
    .modules-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    @media(max-width:840px){ .modules-grid { grid-template-columns: 1fr; } }
    @media(min-width:841px) and (max-width:1080px){ .modules-grid { grid-template-columns: repeat(2,1fr); } }

    .mod-card {
      border-radius: 16px; overflow: hidden;
      border: 1px solid var(--line);
      background: var(--s1);
      transition: transform .25s, box-shadow .25s;
    }
    .mod-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,.5); }

    .mod-img { position: relative; height: 200px; overflow: hidden; }
    .mod-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.7) saturate(.9); transition: transform .4s; }
    .mod-card:hover .mod-img img { transform: scale(1.04); }
    .mod-img-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(0deg, rgba(15,15,18,.95) 0%, transparent 60%);
    }
    .mod-pill {
      position: absolute; top: 14px; left: 14px;
      background: var(--red); color: #fff;
      font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
      padding: 4px 12px; border-radius: 999px;
    }

    .mod-body { padding: 24px 24px 28px; }
    .mod-title { font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; }
    .mod-desc { font-size: .85rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
    .mod-tags { display: flex; flex-wrap: wrap; gap: 6px; }
    .mod-tag {
      background: var(--s2); border: 1px solid var(--line);
      border-radius: 6px; padding: 3px 10px;
      font-size: .72rem; font-weight: 600; color: var(--subtle);
    }

    /* ── PRICING ── */
    .pricing-sec { background: var(--s1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .pricing-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 20px; max-width: 860px; margin: 0 auto;
    }
    @media(max-width:680px){ .pricing-grid { grid-template-columns: 1fr; } }

    .price-card {
      background: var(--bg);
      border: 1px solid var(--line);
      border-radius: 20px; padding: 36px 32px;
      position: relative; overflow: hidden;
      transition: border-color .2s;
    }
    .price-card:hover { border-color: #2e2e38; }
    .price-card.featured { border-color: var(--red); }
    .price-card.featured::before {
      content: '';
      position: absolute; top: -40px; right: -40px;
      width: 160px; height: 160px;
      background: radial-gradient(circle, rgba(184,21,46,.2) 0%, transparent 70%);
      pointer-events: none;
    }
    .price-badge {
      display: inline-block;
      background: var(--red); color: #fff;
      font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
      padding: 3px 12px; border-radius: 999px; margin-bottom: 16px;
    }
    .price-plan { font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
    .price-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 16px; }
    .price-val { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
    .price-curr { font-size: .9rem; font-weight: 700; color: var(--subtle); }
    .price-num { font-size: 2.8rem; font-weight: 900; line-height: 1; letter-spacing: -.03em; }
    .price-period { font-size: .85rem; color: var(--muted); margin-bottom: 20px; }
    .price-desc { font-size: .84rem; color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
    .price-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
    .price-item { display: flex; align-items: center; gap: 10px; font-size: .84rem; color: var(--body); }
    .pi-dot { width: 18px; height: 18px; background: var(--red-dim); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--red-h); flex-shrink: 0; }

    /* ── DEPOIMENTOS ── */
    .dep-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    @media(max-width:840px){ .dep-grid { grid-template-columns: 1fr; } }
    @media(min-width:841px) and (max-width:1080px){ .dep-grid { grid-template-columns: repeat(2,1fr); } }

    .dep-card {
      background: var(--s1); border: 1px solid var(--line);
      border-radius: 14px; padding: 28px 24px;
    }
    .dep-stars { color: #f5a623; font-size: .9rem; margin-bottom: 14px; letter-spacing: 2px; }
    .dep-text { font-size: .88rem; color: var(--body); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
    .dep-author { display: flex; align-items: center; gap: 12px; }
    .dep-avatar {
      width: 38px; height: 38px; border-radius: 50%;
      overflow: hidden; border: 2px solid var(--line);
      background: var(--s2); flex-shrink: 0;
    }
    .dep-avatar img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.4); }
    .dep-name { font-size: .85rem; font-weight: 800; }
    .dep-role { font-size: .75rem; color: var(--muted); }

    /* ── CTA FINAL ── */
    .final-cta {
      padding: 100px 24px;
      text-align: center; position: relative; overflow: hidden;
    }
    .final-cta::before {
      content: '';
      position: absolute; bottom: -80px; left: 50%; transform: translateX(-50%);
      width: 700px; height: 500px;
      background: radial-gradient(ellipse, rgba(184,21,46,.18) 0%, transparent 65%);
      pointer-events: none;
    }
    .final-cta h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.08; margin-bottom: 16px; }
    .final-cta h2 em { font-family: 'Fraunces', serif; font-style: italic; color: var(--red-h); }
    .final-cta p { font-size: 1rem; color: var(--body); margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }
    .btn-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; position: relative; z-index: 1; }

    /* ── PRICE COMPARE ── */
    .price-compare {
      background: rgba(184,21,46,.07);
      border: 1px solid rgba(184,21,46,.2);
      border-radius: 16px;
      padding: 24px 20px 20px;
      margin-bottom: 36px;
      max-width: 860px; margin-left: auto; margin-right: auto;
    }
    .pc-title { font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--red-h); margin-bottom: 16px; text-align: center; }
    .pc-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px; }
    @media(max-width:520px){ .pc-row { grid-template-columns: 1fr 1fr; } .pc-arrow { display: none; } }
    .pc-item { background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 16px 12px; text-align: center; }
    .pc-item.highlight { border-color: rgba(74,222,128,.35); background: rgba(74,222,128,.05); }
    .pc-label { font-size: .65rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
    .pc-val { font-size: clamp(1.4rem,4vw,1.9rem); font-weight: 900; line-height: 1; letter-spacing: -.02em; margin-bottom: 4px; display: block; }
    .pc-period { font-size: .72rem; font-weight: 600; }
    .pc-val.crossed { color: var(--muted); position: relative; display: inline-block; }
    .pc-val.crossed::after { content: ''; position: absolute; left: -2px; right: -2px; top: 50%; height: 2px; background: var(--red); transform: rotate(-6deg); }
    .pc-val.green { color: #4ade80; }
    .pc-sub { font-size: .66rem; color: var(--muted); line-height: 1.4; margin-top: 5px; }
    .pc-arrow { font-size: 1.1rem; color: var(--red-h); text-align: center; }
    .pc-saving { text-align: center; margin-top: 16px; font-size: .82rem; color: var(--body); line-height: 1.6; padding-top: 14px; border-top: 1px solid var(--line); }
    .pc-saving strong { color: #4ade80; }

    /* ── FOOTER ── */
    footer {
      padding: 28px 52px; border-top: 1px solid var(--line);
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
    }
    @media(max-width:640px){ footer { padding: 24px 20px; flex-direction: column; text-align: center; } }
    .foot-logo { display: flex; align-items: center; gap: 9px; }
    .foot-logo span { font-size: .85rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
    footer p { font-size: .74rem; color: var(--muted); }

    /* ── HERO ANIMATIONS ── */
    .hero-txt > * { opacity: 0; animation: rise .65s cubic-bezier(.22,1,.36,1) forwards; }
    .hero-txt > *:nth-child(1){ animation-delay:.08s }
    .hero-txt > *:nth-child(2){ animation-delay:.18s }
    .hero-txt > *:nth-child(3){ animation-delay:.26s }
    .hero-txt > *:nth-child(4){ animation-delay:.34s }
    .hero-txt > *:nth-child(5){ animation-delay:.42s }
    .hero-txt > *:nth-child(6){ animation-delay:.50s }
    @keyframes rise { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }

    /* WA icon */
    .ico-wa { flex-shrink: 0; }
/* ══════════════════════════════════════════
   SOBRE A WISE UP
══════════════════════════════════════════ */
.about-wrap {
  background: var(--s1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
@media(max-width:840px){ .about-inner { grid-template-columns: 1fr; gap: 36px; } }

.about-img {
  position: relative; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 56px rgba(0,0,0,.55);
}
.about-img img { width: 100%; height: 400px; object-fit: cover; filter: brightness(.75) saturate(.8); display: block; }
.about-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(8,8,10,.85) 0%, transparent 50%);
}
.about-img-caption {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.6);
  letter-spacing: .07em; text-transform: uppercase;
}
.about-body p {
  font-size: .95rem; color: var(--body); line-height: 1.8; margin-bottom: 32px;
}
.about-pillars { display: flex; flex-direction: column; gap: 14px; }
.about-pillar {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 12px; padding: 16px 18px;
  transition: border-color .2s;
}
.about-pillar:hover { border-color: #2a2a32; }
.ap-ico {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--red-dim); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.ap-body h5 { font-weight: 800; font-size: .9rem; margin-bottom: 3px; }
.ap-body p  { font-size: .8rem; color: var(--muted); line-height: 1.5; margin: 0; }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-list  { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--s1); border: 1px solid var(--line);
  border-radius: 12px; overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: rgba(184,21,46,.35); }

.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 24px;
  background: none; border: none; cursor: pointer;
  color: var(--white); font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem; font-weight: 700; text-align: left;
  transition: background .15s;
}
.faq-q:hover { background: rgba(255,255,255,.03); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  background: var(--red-dim); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red-h); font-size: .9rem; font-weight: 900;
  transition: transform .25s, background .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(184,21,46,.2); }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1), padding .3s;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 20px; }
.faq-a p { font-size: .88rem; color: var(--muted); line-height: 1.75; }
.faq-a strong { color: var(--body); }

/* footer-full removido — usar .site-footer */

/* ══════════════════════════════════════════
   INNER PAGES (privacidade, cookies, termos)
══════════════════════════════════════════ */
.page-hero {
  padding: 72px 52px 56px;
  border-bottom: 1px solid var(--line);
  max-width: 860px; margin: 0 auto;
}
@media(max-width:768px){ .page-hero { padding: 48px 20px 36px; } }
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px; }
.page-hero p  { font-size: .9rem; color: var(--muted); }

.page-content {
  max-width: 860px; margin: 0 auto;
  padding: 52px 52px 96px;
}
@media(max-width:768px){ .page-content { padding: 36px 20px 72px; } }
.page-content h2 { font-size: 1.1rem; font-weight: 800; margin: 36px 0 10px; color: var(--white); }
.page-content h2:first-child { margin-top: 0; }
.page-content p { font-size: .88rem; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.page-content ul { padding-left: 20px; margin-bottom: 14px; }
.page-content ul li { font-size: .88rem; color: var(--muted); line-height: 1.8; margin-bottom: 6px; }
.page-content a { color: var(--red-h); text-decoration: underline; }
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 700; color: var(--muted);
  text-decoration: none; margin-bottom: 36px;
  transition: color .2s;
}
.back-link:hover { color: var(--white); }

/* ══════════════════════════════════════════
   FOOTER SIMPLES
══════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 24px 32px;
  width: 100%;
}
.site-footer-inner {
  width: 100%;
  max-width: 900px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px; text-align: center;
}
.site-footer-logo {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: .9rem; font-weight: 900;
  letter-spacing: .1em; text-transform: uppercase; color: var(--white);
}
.site-footer-note {
  font-size: .76rem; color: var(--muted);
  width: 100%; text-align: center;
}
.site-footer-links {
  display: flex; align-items: center; flex-wrap: wrap;
  justify-content: center; gap: 8px; width: 100%;
}
.site-footer-links a {
  font-size: .76rem; color: var(--muted);
  text-decoration: none; transition: color .2s;
}
.site-footer-links a:hover { color: var(--white); }
.site-footer-links span { color: var(--line); font-size: .7rem; }
.site-footer-copy { font-size: .72rem; color: var(--line); width: 100%; text-align: center; }

/* ── SKIP LINK (acessibilidade) ── */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--red); color: #fff;
  padding: 8px 16px; border-radius: 6px;
  font-size: .85rem; font-weight: 700;
  text-decoration: none; z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 8px; }

/* ── h3 dentro dos cards (sem mudar visual) ── */
h3.mod-title  { font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; }
h3.dep-name   { font-size: .85rem;  font-weight: 800; }