/* ── case-parque-shopping-maceio — Orb Digital Branding (site-v3) ── */


    :root {
      --bg: #000820;
      --bg2: #060e28;
      --text: #f0ede8;
      --muted: #cccccc;
      --line: rgba(255,255,255,0.06);
      --blue: #003FFF;
      --blue2: #2255FF;
      --ease: cubic-bezier(.77,0,.175,1);
      --serif: 'Ubuntu', Helvetica, Arial, sans-serif;
      --sans: 'IBM Plex Sans', Helvetica, Arial, sans-serif;
      --accent: #00C87A;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--sans);
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* NAV */
    .nav-back { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(240,237,232,0.5); text-decoration: none; transition: color 0.2s; }
    .nav-back:hover { color: var(--text); }

    /* PROGRESS BAR */
    .progress-bar {
      position: fixed; top: 0; left: 0;
      height: 2px; width: 0%;
      background: linear-gradient(90deg, var(--blue), var(--blue2));
      z-index: 2000; pointer-events: none;
      transition: width 0.06s linear;
    }

    /* HERO */
    .hero {
      min-height: 100vh; position: relative; overflow: hidden;
      display: flex; align-items: flex-end;
      padding: 120px 48px 80px;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: linear-gradient(145deg, #0c1430 0%, #000820 100%);
    }
    .hero-bg img {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover;
      opacity: 0.55;
      filter: saturate(0.6);
    }
    .hero-bg::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to top, var(--bg) 0%, rgba(0,8,32,0.5) 40%, rgba(0,8,32,0.3) 100%);
      pointer-events: none;
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30h60M30 0v60' stroke='rgba(255,255,255,0.02)' stroke-width='0.5'/%3E%3C/svg%3E");
      opacity: 0.5;
    }
    .hero-content { position: relative; z-index: 1; max-width: 900px; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(0,200,122,0.1); border: 1px solid rgba(0,200,122,0.2);
      border-radius: 20px; padding: 6px 16px; margin-bottom: 20px;
    }
    .hero-badge-dot {
      width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
    }
    .hero-badge-text {
      font-size: 9px; font-weight: 500; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--accent);
    }
    .hero-client {
      font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(240,237,232,0.4); margin-bottom: 12px;
    }
    .hero-title {
      font-family: var(--serif);
      font-size: clamp(26px, 3.8vw, 62px) !important;
      font-weight: 300; line-height: 1.05 !important;
      letter-spacing: -0.02em;
    }

    /* META */
    .meta-strip {
      display: flex; gap: 0; border-bottom: 1px solid var(--line);
      margin-top: 20px !important; padding-top: 20px !important;
    }
    .meta-item {
      flex: 1; padding: 12px 20px 12px 0 !important;
      border-right: 1px solid var(--line);
    }
    .meta-item:last-child { border-right: none; }
    .meta-label {
      font-size: 7px; font-weight: 600; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--muted);
      display: block; margin-bottom: 8px;
    }
    .meta-value {
      font-family: var(--serif); font-size: 14px !important; font-weight: 300;
    }

    /* SECTIONS */
    section {
      min-height: 100vh;
      display: flex; flex-direction: column; justify-content: center;
      padding: 120px 80px;
      border-bottom: 1px solid var(--line);
      position: relative;
    }
    section:nth-child(odd) { background: var(--bg2); }
    .max-w { max-width: 900px; margin: 0 auto; padding: 0 48px; }
    .section-label {
      font-size: 8px; font-weight: 600; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--blue2);
      display: block; margin-bottom: 16px;
    }
    .section-title {
      font-family: var(--serif);
      font-size: clamp(28px, 4vw, 54px);
      font-weight: 300; line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 24px;
    }
    .section-title em {
      font-style: italic; color: rgba(240,237,232,1);
    }
    .section-body {
      font-size: 14px; line-height: 1.75;
      color: rgba(240,237,232,1);
      max-width: 640px;
    }

    /* IMAGES */
    .img-full { width: 100%; aspect-ratio: 16/7; overflow: hidden; margin: 48px 0; border-radius: 4px; }
    .img-full img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .img-half { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin: 48px 0; }
    .img-half img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; border-radius: 4px; }

    /* METRICS */
    .metrics {
      display: grid; grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid var(--line);
      margin: 80px 0 0;
    }
    .metrics + .metrics { margin-top: 0; }
    .metric {
      padding: 48px 32px; border-right: 1px solid var(--line);
    }
    .metric:last-child { border-right: none; }
    .metric-num {
      font-family: var(--serif);
      font-size: clamp(40px, 5vw, 72px);
      font-weight: 300; line-height: 1;
      margin-bottom: 12px;
      opacity: 0; transform: translateY(18px);
      transition: opacity 0.65s ease, transform 0.65s ease;
      display: block;
    }
    .metric-num.on { opacity: 1; transform: none; }
    .metric-label {
      font-size: 12px; color: var(--muted);
      opacity: 0; transition: opacity 0.6s ease 0.3s;
    }
    .metric-label.on { opacity: 1; }

    /* QUOTE */
    .quote {
      min-height: 100vh;
      display: flex; flex-direction: column; justify-content: center;
      padding: 80px 80px; text-align: center;
      border-top: 1px solid var(--line);
      background: linear-gradient(135deg, #0033DD 0%, #1a3fcc 30%, #3344bb 55%, #5533aa 80%, #6a2fa0 100%);
    }
    .quote-mark {
      font-family: var(--serif); font-size: 79px;
      color: rgba(0,63,255,0.2); line-height: 0.7;
      margin-bottom: 16px;
    }
    .quote-text {
      font-family: var(--serif);
      font-size: 30px !important;
      font-weight: 300; font-style: italic;
      color: rgba(240,237,232,1);
      max-width: 700px; margin: 0 auto 20px;
      line-height: 1.6;
    }
    .quote-author {
      font-size: 12px; color: var(--muted);
      letter-spacing: 0.06em;
    }

    /* NEXT CASE */
    .next-case {
      display: block; text-decoration: none;
      height: 40vh; position: relative; overflow: hidden;
    }
    .next-case-bg {
      position: absolute; inset: 0;
      background: linear-gradient(145deg,#6a1515 0%,#1e0608 100%);
      transition: transform 0.8s var(--ease);
    }
    .next-case:hover .next-case-bg { transform: scale(1.04); }
    .next-case-label {
      position: absolute; bottom: 40px; left: 48px; z-index: 1;
    }
    .next-case-hint {
      font-size: 8px; letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(240,237,232,0.4);
      margin-bottom: 8px;
    }
    .next-case-title {
      font-family: var(--serif);
      font-size: clamp(28px, 4vw, 56px);
      font-weight: 300; color: var(--text);
    }

    /* REVEAL ANIMATIONS */
    .rev {
      opacity: 0; transform: translateY(32px);
      transition: opacity 0.88s cubic-bezier(.22,1,.36,1), transform 0.88s cubic-bezier(.22,1,.36,1);
    }
    .rev.on { opacity: 1; transform: none; }

    /* INSIGHT */
    .insight {
      background: rgba(34, 85, 255, 0.08);
      border-left: 3px solid var(--blue2);
      border-radius: 0 8px 8px 0;
      padding: 28px 32px;
      margin: 32px 0;
    }
    .insight-label {
      font-size: 9px; font-weight: 600; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--blue2); margin-bottom: 10px; display: block;
    }
    .insight p {
      font-size: 14px; color: rgba(240,237,232,1);
    }

    /* SCOPE GRID */
    .scope-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px;
    }
    .scope-item {
      background: rgba(34, 85, 255, 0.05);
      border: 1px solid rgba(34, 85, 255, 0.15);
      border-radius: 10px; padding: 24px;
    }
    .scope-icon {
      width: 24px; height: 3px; border-radius: 2px;
      background: var(--blue2); opacity: 0.4; margin-bottom: 16px;
    }
    .scope-title {
      font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 8px;
    }
    .scope-desc {
      font-size: 12px; color: rgba(240,237,232,1); line-height: 1.6;
    }

    /* DELIVERABLES */
    .deliverable-list {
      list-style: none; margin-top: 24px;
      display: flex; flex-direction: column; gap: 12px;
    }
    .deliverable-list li {
      display: flex; align-items: flex-start; gap: 14px;
      font-size: 14px; color: rgba(240,237,232,1);
    }
    .deliverable-list li::before {
      content: ''; flex-shrink: 0;
      width: 20px; height: 20px; border-radius: 50%;
      background: rgba(34,85,255,0.08);
      border: 1px solid rgba(34,85,255,0.2);
      position: relative; top: 2px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 10l3.5 3.5L15 7' stroke='%232255FF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: center; background-size: 14px;
    }

    /* ─── EPISODE TIMELINE ─── */
    .timeline {
      position: relative; padding-left: 48px; margin-top: 48px;
    }
    .timeline::before {
      content: ''; position: absolute; left: 10px; top: 0; bottom: 0;
      width: 1px; background: linear-gradient(to bottom, var(--blue2), rgba(34,85,255,0.05));
    }
    .timeline-month {
      position: relative; margin-bottom: 40px;
    }
    .timeline-month-label {
      font-size: 9px; font-weight: 600; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--blue2);
      margin-bottom: 16px; margin-left: -48px; padding-left: 32px;
      position: relative;
    }
    .timeline-month-label::before {
      content: ''; position: absolute; left: 5px; top: 50%;
      width: 10px; height: 10px; border-radius: 50%;
      background: var(--blue2); transform: translate(-50%, -50%);
      box-shadow: 0 0 12px rgba(34,85,255,0.4);
    }
    .timeline-episodes {
      display: flex; flex-direction: column; gap: 8px;
    }
    .timeline-ep {
      display: flex; align-items: center; gap: 16px;
      padding: 10px 16px; border-radius: 8px;
      background: rgba(34,85,255,0.03);
      border: 1px solid rgba(255,255,255,0.03);
      transition: background 0.3s, border-color 0.3s;
    }
    .timeline-ep:hover {
      background: rgba(34,85,255,0.08);
      border-color: rgba(34,85,255,0.15);
    }
    .timeline-ep-num {
      font-family: var(--serif); font-size: 17px; color: var(--blue2);
      min-width: 32px; text-align: center;
    }
    .timeline-ep-title {
      font-size: 12px; color: rgba(240,237,232,1); flex: 1;
    }
    .timeline-ep-likes {
      font-size: 12px; color: var(--muted); white-space: nowrap;
    }

    /* ─── EPISODE GRID (visual gallery) ─── */
    .ep-gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-flow: dense;
      gap: 4px;
      margin-top: 48px;
    }
    .ep-card {
      position: relative; aspect-ratio: 9/16;
      overflow: hidden; border-radius: 6px;
      background: #0a1a14;
      display: flex; flex-direction: column;
      justify-content: flex-end; padding: 0;
      transition: transform 0.4s var(--ease);
      text-decoration: none; color: var(--text);
    }
    .ep-card:hover { transform: scale(1.02); }
    .ep-card-img {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover;
      transition: opacity 0.5s ease, transform 0.6s var(--ease);
      opacity: 0.85;
    }
    .ep-card:hover .ep-card-img { opacity: 1; transform: scale(1.03); }
    .ep-card-play {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 52px; height: 52px;
      background: rgba(0,8,32,0.55);
      backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
      border: 1.5px solid rgba(240,237,232,0.2);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.3s, border-color 0.3s, transform 0.3s;
      z-index: 2;
    }
    .ep-card:hover .ep-card-play {
      background: rgba(0,63,255,0.6);
      border-color: rgba(240,237,232,0.4);
      transform: translate(-50%, -50%) scale(1.08);
    }
    .ep-card-play svg { width: 18px; height: 18px; fill: var(--text); margin-left: 2px; }
    .ep-card-overlay {
      position: relative; z-index: 1;
      background: linear-gradient(to top, rgba(0,8,32,0.92) 0%, rgba(0,8,32,0.6) 50%, transparent 100%);
      padding: 40px 14px 14px;
    }
    .ep-card-num {
      font-family: var(--serif); font-size: 27px; font-weight: 300;
      color: rgba(240,237,232,0.2); position: absolute; top: 10px; left: 14px;
      z-index: 2;
    }
    .ep-card-tag {
      font-size: 7px; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--accent); margin-bottom: 4px;
    }
    .ep-card-title {
      font-size: 12px; color: rgba(240,237,232,0.7); line-height: 1.4;
    }
    .ep-card-likes {
      font-size: 9px; color: var(--muted); margin-top: 6px;
    }
    .ep-card.featured {
      grid-column: span 2; grid-row: span 2;
      aspect-ratio: auto;
    }
    .ep-card.featured .ep-card-num { font-size: 47px; }
    .ep-card.featured .ep-card-tag { font-size: 9px; }
    .ep-card.featured .ep-card-title { font-size: 13px; }
    .ep-card.featured .ep-card-play { width: 64px; height: 64px; }
    .ep-card.featured .ep-card-play svg { width: 22px; height: 22px; }

    /* ─── BRANDS GRID ─── */
    .brands-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 12px; margin-top: 32px;
    }
    .brand-tag {
      background: rgba(34,85,255,0.05);
      border: 1px solid rgba(34,85,255,0.12);
      border-radius: 8px; padding: 14px 16px;
      font-size: 13px; font-weight: 400; color: rgba(240,237,232,0.85);
      text-align: center; transition: border-color 0.3s;
    }
    .brand-tag:hover { border-color: rgba(34,85,255,0.35); }
    .brand-tag small {
      display: block; font-size: 9px; color: rgba(240,237,232,0.35);
      margin-top: 4px; letter-spacing: 0.06em; text-transform: uppercase;
    }

    /* ─── WARDROBE STRIP ─── */
    .wardrobe-strip {
      display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px;
    }
    .wardrobe-chip {
      background: rgba(0,200,122,0.06);
      border: 1px solid rgba(0,200,122,0.15);
      border-radius: 20px; padding: 6px 16px;
      font-size: 13px; color: rgba(0,200,122,0.7);
    }

    /* ─── INSTAGRAM EMBED AREA ─── */
    .backstage-layout {
      display: grid; grid-template-columns: auto 1fr;
      gap: 48px; margin-top: 48px; align-items: start;
    }
    .phone-mockup {
      width: 260px; flex-shrink: 0;
      background: #0a0a0a;
      border-radius: 32px;
      border: 4px solid rgba(255,255,255,0.08);
      padding: 14px 8px 10px;
      box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
      position: relative;
      overflow: hidden;
    }
    .phone-mockup::before {
      content: ''; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
      width: 64px; height: 5px; border-radius: 4px;
      background: rgba(255,255,255,0.06); z-index: 2;
    }
    .phone-mockup a {
      display: block; position: relative; border-radius: 22px; overflow: hidden;
    }
    .phone-mockup img {
      width: 100%; display: block; border-radius: 22px;
    }
    .phone-mockup .play-btn {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 56px; height: 56px;
      background: rgba(0,8,32,0.55);
      backdrop-filter: blur(10px);
      border: 1.5px solid rgba(240,237,232,0.2);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.3s, transform 0.3s;
    }
    .phone-mockup a:hover .play-btn {
      background: rgba(0,63,255,0.6);
      transform: translate(-50%, -50%) scale(1.08);
    }
    .ig-embeds {
      display: grid; grid-template-columns: 1fr;
      gap: 16px;
    }
    .ig-embed-card {
      background: rgba(34,85,255,0.04);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 12px; padding: 20px 24px;
      display: flex; align-items: center; gap: 20px;
    }
    .ig-embed-info { flex: 1; }
    .ig-embed-card a {
      color: var(--blue2); text-decoration: none;
      font-size: 13px; letter-spacing: 0.06em;
      white-space: nowrap;
    }
    .ig-embed-card a:hover { text-decoration: underline; }
    .ig-embed-label {
      font-size: 9px; color: var(--muted); margin-top: 4px;
    }

    /* ─── VIDEO BG SECTION ─── */
    .video-bg-section {
      position: relative; overflow: hidden;
    }
    .video-bg-section video {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover;
      opacity: 0.3;
    }
    .video-bg-section::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to bottom,
        var(--bg) 0%,
        rgba(0,8,32,0.4) 15%,
        rgba(0,8,32,0.4) 85%,
        var(--bg) 100%);
      pointer-events: none;
    }
    .video-bg-section > div { position: relative; z-index: 1; }

    /* ─── NUMBER HIGHLIGHT ─── */
    .num-highlight {
      font-family: var(--serif);
      font-size: clamp(56px, 8vw, 120px);
      font-weight: 300; line-height: 1;
      background: linear-gradient(135deg, var(--blue2), var(--accent));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* MOBILE */
    @media (max-width: 900px) {
      .hero {
        height: auto !important;
        min-height: auto !important;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
      }
      .hero-bg {
        position: relative;
        height: 45vw;
        min-height: 200px;
        max-height: 360px;
      }
      .hero-bg img {
        width: 100%; height: 100%;
        object-fit: cover; display: block;
        opacity: 0.55; filter: saturate(0.6);
      }
      .hero-bg::after {
        background: linear-gradient(to top, var(--bg, #000820) 0%, transparent 60%);
      }
      .hero-content {
        padding: 32px 24px 48px;
      }
    }
    @media (max-width: 768px) {
      section { padding: 80px 28px !important; }
      .quote  { padding: 60px 28px !important; min-height: 80vh; }
      .max-w { padding: 0 24px; }
      .meta-strip { flex-direction: column; }
      .meta-item { padding: 20px 0 !important; border-right: none; border-bottom: 1px solid var(--line); }
      .scope-grid { grid-template-columns: 1fr; }
      .metrics { grid-template-columns: 1fr; }
      .metric { padding: 32px 20px; }
      .img-half { grid-template-columns: 1fr; }
      .ep-gallery { grid-template-columns: repeat(2, 1fr); }
      .ep-card { opacity:1 !important; transform:none !important; }
      .ep-card-img { opacity:1 !important; }
      .ep-card.featured { grid-column: span 2; grid-row: span 1; aspect-ratio: 9/16; }
      .ep-card-play { width: 44px; height: 44px; }
      .ep-card-play svg { width: 15px; height: 15px; }
      .backstage-layout { grid-template-columns: 1fr; justify-items: center; gap: 32px; }
      .phone-mockup { width: 280px; }
      .ig-embeds { grid-template-columns: 1fr; }
      .brands-grid { grid-template-columns: repeat(2, 1fr); }
    }
  