
  /* ============================================
     TOKENS
     ============================================ */
  :root {
    /* paleta nude fria */
    --bg: #ECE7E1;
    --bg-warm: #E5DED6;
    --bg-cool: #DDD6CD;
    --ink: #2A2724;
    --ink-soft: #5C5650;
    --ink-mute: #8B847C;
    --line: #C9C2B8;
    --line-soft: #D8D2C8;
    --paper: #F5F1EB;
    --paper-warm: #F8F4EE;
    --shell: #FFFFFF;

    /* acentos iOS */
    --ios-blue: #0A84FF;
    --ios-blue-soft: rgba(10, 132, 255, 0.18);
    --ios-green: #30D158;
    --ios-red: #FF453A;
    --ios-orange: #FF9F0A;
    --ios-purple: #BF5AF2;
    --ios-yellow: #FFD60A;

    /* sombras dos painéis iOS */
    --shadow-sm: 0 1px 2px rgba(42, 39, 36, 0.04), 0 2px 6px rgba(42, 39, 36, 0.06);
    --shadow-md: 0 4px 12px rgba(42, 39, 36, 0.06), 0 12px 32px rgba(42, 39, 36, 0.08);
    --shadow-lg: 0 8px 24px rgba(42, 39, 36, 0.08), 0 24px 60px rgba(42, 39, 36, 0.12);

    --radius-xs: 8px;
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --radius-xl: 44px;
    --radius-pill: 999px;

    /* fontes */
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', monospace;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
  }

  /* textura sutil de papel */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      radial-gradient(circle at 25% 35%, rgba(201, 194, 184, 0.12) 1px, transparent 1px),
      radial-gradient(circle at 75% 65%, rgba(201, 194, 184, 0.08) 1px, transparent 1px);
    background-size: 32px 32px, 48px 48px;
    pointer-events: none;
    z-index: 0;
  }

  /* SELEÇÃO DE TEXTO ESTILO iOS */
  ::selection {
    background: var(--ios-blue-soft);
    color: var(--ink);
  }
  ::-moz-selection {
    background: var(--ios-blue-soft);
    color: var(--ink);
  }

  /* ============================================
     NAVBAR — estilo Safari/iOS
     ============================================ */
  .nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: min(640px, calc(100% - 40px));
    background: rgba(245, 241, 235, 0.78);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-pill);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: var(--shadow-md);
  }

  .nav-brand {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-brand img {
    width: 22px;
    height: 22px;
    object-fit: contain;
  }

  .nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    transition: all 0.2s ease;
  }

  .nav-links a:hover {
    background: rgba(42, 39, 36, 0.06);
    color: var(--ink);
  }

  .nav-cta {
    background: var(--ink);
    color: var(--paper);
    padding: 9px 16px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .nav-cta:hover {
    background: var(--ios-blue);
    transform: translateY(-1px);
  }

  .nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    flex-direction: column;
    gap: 5px;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 720px) {
    .nav-toggle { display: flex; }

    .nav-links {
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      right: 0;
      flex-direction: column;
      align-items: stretch;
      gap: 2px;
      background: rgba(245, 241, 235, 0.96);
      backdrop-filter: blur(24px) saturate(1.4);
      -webkit-backdrop-filter: blur(24px) saturate(1.4);
      border: 1px solid rgba(255, 255, 255, 0.6);
      border-radius: var(--radius-md);
      padding: 10px;
      box-shadow: var(--shadow-md);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    }

    .nav-links.open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .nav-links a {
      padding: 12px 16px;
      border-radius: var(--radius-sm);
    }
  }

  /* Compensa a navbar fixa ao pular para uma âncora */
  #servicos, #cases, #contato {
    scroll-margin-top: 110px;
  }

  /* ============================================
     HERO
     ============================================ */
  .hero {
    min-height: 100vh;
    padding: 140px 24px 80px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    max-width: 1280px;
    margin: 0 auto;
    align-items: center;
  }

  @media (max-width: 960px) {
    .hero {
      grid-template-columns: 1fr;
      padding-top: 120px;
      gap: 48px;
    }
  }

  .hero-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink-mute);
  }

  .hero-meta::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--ink-mute);
  }

  .live-dot {
    width: 6px;
    height: 6px;
    background: var(--ios-green);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(48, 209, 88, 0.2);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(48, 209, 88, 0.2); }
    50% { box-shadow: 0 0 0 7px rgba(48, 209, 88, 0.05); }
  }

  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 400;
    line-height: 0.96;
    letter-spacing: -0.035em;
    color: var(--ink);
    margin-bottom: 32px;
  }

  .hero h1 em {
    font-style: italic;
    font-weight: 300;
    color: var(--ink-soft);
  }

  /* trecho com seleção iOS sempre visível */
  .selected-text {
    background: var(--ios-blue-soft);
    padding: 2px 4px;
    margin: 0 -4px;
    border-radius: 4px;
    position: relative;
    display: inline-block;
  }

  .selected-text::before,
  .selected-text::after {
    content: '';
    position: absolute;
    width: 3px;
    height: calc(100% + 8px);
    background: var(--ios-blue);
    top: -4px;
    border-radius: 2px;
  }

  .selected-text::before { left: -2px; }
  .selected-text::after { right: -2px; }

  .selected-text::before {
    box-shadow: 0 -8px 0 -2px var(--ios-blue), 0 -10px 0 -1px var(--ios-blue);
  }

  /* círculos azuis das alças de seleção */
  .selection-handle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--ios-blue);
    border: 2px solid var(--paper);
    border-radius: 50%;
    z-index: 2;
  }

  .selection-handle.top { top: -16px; left: -8px; }
  .selection-handle.bottom { bottom: -16px; right: -8px; }

  .hero-lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 480px;
    margin-bottom: 40px;
    font-weight: 400;
  }

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

  .btn-primary {
    background: var(--ink);
    color: var(--paper);
    padding: 16px 28px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
    border: 1px solid var(--ink);
  }

  .btn-primary:hover {
    background: var(--ios-blue);
    border-color: var(--ios-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 132, 255, 0.3);
  }

  .btn-ghost {
    background: transparent;
    color: var(--ink);
    padding: 16px 24px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border: 1px solid var(--line);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .btn-ghost:hover {
    border-color: var(--ink);
    background: rgba(255, 255, 255, 0.4);
  }

  /* ============================================
     iPHONE MOCKUP (lado direito do hero)
     ============================================ */
  .device-stage {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
  }

  .iphone {
    width: 320px;
    height: 640px;
    background: linear-gradient(165deg, #2A2724, #1a1815);
    border-radius: 56px;
    padding: 14px;
    box-shadow:
      0 30px 80px rgba(42, 39, 36, 0.25),
      0 8px 24px rgba(42, 39, 36, 0.15),
      inset 0 0 0 2px rgba(255, 255, 255, 0.08);
    position: relative;
    transform: rotate(-3deg);
    animation: phoneFloat 6s ease-in-out infinite;
  }

  @keyframes phoneFloat {
    0%, 100% { transform: rotate(-3deg) translateY(0); }
    50% { transform: rotate(-3deg) translateY(-12px); }
  }

  .iphone-screen {
    width: 100%;
    height: 100%;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.15) 100%),
      linear-gradient(165deg, #C9BFB1 0%, #A89B8A 50%, #847762 100%);
    border-radius: 44px;
    overflow: hidden;
    position: relative;
    padding: 12px 14px;
  }

  /* dynamic island */
  .dynamic-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 32px;
    background: #000;
    border-radius: 999px;
    z-index: 10;
  }

  /* status bar */
  .status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 18px;
    height: 44px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    z-index: 5;
  }

  .status-icons {
    display: flex;
    gap: 5px;
    align-items: center;
  }

  .status-icons svg { width: 16px; height: 16px; fill: #fff; }

  /* notificação iOS */
  .ios-notification {
    margin-top: 80px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 22px;
    padding: 12px 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    animation: notifSlideIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
  }

  @keyframes notifSlideIn {
    from {
      opacity: 0;
      transform: translateY(-30px) scale(0.92);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .notif-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 4px;
  }

  .notif-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .notif-body { flex: 1; min-width: 0; }

  .notif-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2px;
  }

  .notif-title {
    font-size: 13px;
    font-weight: 600;
    color: #000;
  }

  .notif-time {
    font-size: 11px;
    color: rgba(0,0,0,0.4);
  }

  .notif-text {
    font-size: 13px;
    color: rgba(0,0,0,0.85);
    line-height: 1.35;
  }

  /* Mensagem iMessage simulada */
  .imessage-container {
    margin-top: 14px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 22px;
    padding: 16px 14px 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    animation: notifSlideIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.9s both;
  }

  .imessage-header {
    text-align: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 0.5px solid rgba(0,0,0,0.08);
  }

  .imessage-name {
    font-size: 11px;
    font-weight: 600;
    color: #000;
  }

  .imessage-status {
    font-size: 9px;
    color: rgba(0,0,0,0.4);
    margin-top: 1px;
  }

  .bubble {
    max-width: 78%;
    padding: 7px 12px;
    border-radius: 18px;
    font-size: 13px;
    line-height: 1.35;
    margin-bottom: 4px;
    animation: bubblePop 0.4s ease-out both;
  }

  .bubble.received {
    background: #E9E9EB;
    color: #000;
    border-bottom-left-radius: 4px;
    animation-delay: 1.3s;
  }

  .bubble.sent {
    background: var(--ios-blue);
    color: #fff;
    border-bottom-right-radius: 4px;
    margin-left: auto;
    animation-delay: 1.7s;
  }

  .bubble.received-2 {
    background: #E9E9EB;
    color: #000;
    border-bottom-left-radius: 4px;
    animation-delay: 2.1s;
  }

  @keyframes bubblePop {
    from {
      opacity: 0;
      transform: scale(0.6) translateY(8px);
    }
    to {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }

  /* ============================================
     SAFARI SEARCH SECTION (CTA)
     ============================================ */
  .safari-section {
    padding: 120px 24px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .safari-eyebrow {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ink-mute);
    margin-bottom: 16px;
  }

  .safari-section h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.025em;
    text-align: center;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .safari-section h2 em {
    font-style: italic;
    color: var(--ink-soft);
  }

  .safari-bar {
    background: rgba(245, 241, 235, 0.7);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 8px;
    max-width: 620px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .safari-buttons {
    display: flex;
    gap: 6px;
    padding: 0 8px 0 4px;
  }

  .safari-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
  }

  .safari-btn.red { background: #FF5F57; }
  .safari-btn.yellow { background: #FEBC2E; }
  .safari-btn.green { background: #28C840; }

  .safari-url {
    flex: 1;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--ink-soft);
  }

  .safari-url svg {
    width: 14px;
    height: 14px;
    fill: var(--ink-mute);
  }

  .safari-url-text { flex: 1; }

  .safari-url-text strong {
    color: var(--ink);
    font-weight: 500;
  }

  .typing-cursor {
    display: inline-block;
    width: 1px;
    height: 14px;
    background: var(--ios-blue);
    margin-left: 2px;
    vertical-align: middle;
    animation: blink 1.1s step-end infinite;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }

  .safari-suggestions {
    max-width: 620px;
    margin: 12px auto 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }

  .safari-suggestion {
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--ink);
    border-bottom: 1px solid rgba(201, 194, 184, 0.3);
    cursor: pointer;
    transition: background 0.15s ease;
  }

  .safari-suggestion:last-child { border-bottom: none; }
  .safari-suggestion:hover { background: rgba(10, 132, 255, 0.06); }

  .safari-suggestion svg {
    width: 14px;
    height: 14px;
    fill: var(--ink-mute);
    flex-shrink: 0;
  }

  .safari-suggestion strong { font-weight: 500; }

  /* ============================================
     ESTATÍSTICAS DE MERCADO
     ============================================ */
  .stats {
    padding: 80px 24px;
    position: relative;
    z-index: 1;
  }

  .stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(165deg, var(--ink), #3d3833);
    color: var(--paper);
    border-radius: var(--radius-xl);
    padding: 64px 48px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
  }

  .stats-eyebrow {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(245, 241, 235, 0.5);
    margin-bottom: 48px;
    position: relative;
  }

  .stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    position: relative;
  }

  .stat-card {
    flex: 1;
    min-width: 240px;
    max-width: 360px;
    text-align: center;
  }

  .stat-number {
    font-family: var(--font-display);
    font-size: clamp(80px, 12vw, 140px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--paper);
    margin-bottom: 16px;
  }

  .stat-number span {
    font-size: 0.5em;
    color: rgba(245, 241, 235, 0.5);
    font-style: italic;
    font-weight: 400;
  }

  .stat-card p {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(245, 241, 235, 0.8);
    max-width: 280px;
    margin: 0 auto;
  }

  .stat-card p .selected-text {
    background: rgba(10, 132, 255, 0.35);
    color: var(--paper);
  }

  .stat-card p .selected-text::before,
  .stat-card p .selected-text::after {
    display: none;
  }

  .stat-divider {
    width: 1px;
    height: 120px;
    background: rgba(245, 241, 235, 0.15);
  }

  @media (max-width: 720px) {
    .stat-divider { display: none; }
    .stats-inner { padding: 48px 28px; }
  }

  .stats-conclusion {
    text-align: center;
    margin-top: 48px;
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 400;
    color: rgba(245, 241, 235, 0.9);
    position: relative;
    letter-spacing: -0.01em;
  }

  .stats-conclusion em {
    font-style: italic;
    color: var(--paper);
  }

  /* ============================================
     DEPOIMENTOS — MURAL iMessage
     ============================================ */
  .testimonials {
    padding: 120px 24px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

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

  .testi {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    padding: 24px 26px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .testi:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }

  /* bolha de seta (estilo iMessage) */
  .testi.bubble-left::before {
    content: '';
    position: absolute;
    bottom: 18px;
    left: -8px;
    width: 16px;
    height: 16px;
    background: inherit;
    border-left: 1px solid rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
    border-radius: 0 0 0 4px;
  }

  .testi.blue {
    background: var(--ios-blue);
    color: #fff;
    border: none;
  }

  .testi.blue::before { display: none; }

  .testi.blue.bubble-right::after {
    content: '';
    position: absolute;
    bottom: 18px;
    right: -8px;
    width: 16px;
    height: 16px;
    background: var(--ios-blue);
    transform: rotate(45deg);
    border-radius: 0 4px 0 0;
  }

  .testi p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink);
  }

  .testi.blue p { color: #fff; }

  .testi .testi-meta {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(42, 39, 36, 0.08);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-mute);
  }

  .testi.blue .testi-meta {
    border-top-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
  }

  .testi.lg { grid-column: span 7; }
  .testi.md { grid-column: span 5; }
  .testi.sm { grid-column: span 4; }
  .testi.wide { grid-column: span 8; }

  @media (max-width: 880px) {
    .testi.lg, .testi.md, .testi.sm, .testi.wide {
      grid-column: span 12;
    }
  }

  .testi-highlight {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 16px;
    color: var(--ios-blue);
  }

  .testi.blue .testi-highlight { color: #fff; }

  /* ============================================
     ESTATÍSTICAS DE MERCADO — FIM
     ============================================ */
  .services {
    padding: 120px 24px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    flex-wrap: wrap;
    gap: 24px;
  }

  .section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.025em;
    max-width: 600px;
  }

  .section-header h2 em {
    font-style: italic;
    color: var(--ink-soft);
  }

  .section-header .label {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ink-mute);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .section-header .label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--ink-mute);
  }

  /* control center grid */
  .control-center {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px) saturate(1.5);
    -webkit-backdrop-filter: blur(30px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 160px;
    gap: 16px;
  }

  @media (max-width: 880px) {
    .control-center { grid-template-columns: repeat(2, 1fr); padding: 20px; }
  }

  .cc-tile {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
  }

  .cc-tile:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-md);
  }

  .cc-tile.active {
    background: linear-gradient(135deg, var(--ink), #3d3833);
    color: var(--paper);
  }

  .cc-tile.active .cc-icon {
    background: var(--ios-blue);
    color: #fff;
  }

  .cc-tile.wide { grid-column: span 2; }
  .cc-tile.tall { grid-row: span 2; }

  .cc-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-size: 16px;
  }

  .cc-label {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
  }

  .cc-meta {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.55;
    margin-top: 4px;
  }

  /* tile especial: serviço destaque */
  .cc-tile.featured {
    background: linear-gradient(165deg, #C9BFB1, #A89B8A);
    color: var(--ink);
  }

  .cc-tile.featured h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  .cc-tile.featured p {
    font-size: 12px;
    line-height: 1.4;
    opacity: 0.75;
    margin-top: 6px;
  }

  /* Link "Saiba mais" nos cards */
  .cc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ios-blue);
    text-decoration: none;
    font-family: var(--font-body);
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
  }

  .cc-link:hover {
    border-bottom-color: var(--ios-blue);
    gap: 9px;
  }

  .cc-link-light {
    color: #5AC8FA;
  }

  .cc-link-light:hover {
    border-bottom-color: #5AC8FA;
  }

  /* ============================================
     PORTFÓLIO — WIDGETS
     ============================================ */
  .portfolio {
    padding: 120px 24px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  /* ============================================
     RESULTADOS · cards centralizados
     ============================================ */
  .results-stack {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 720px;
    margin: 0 auto;
  }

  .result-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-md);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .result-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }

  @media (max-width: 600px) {
    .result-card { padding: 28px 22px; }
  }

  .result-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 22px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--line-soft);
  }

  .result-niche {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ink-mute);
    margin-bottom: 6px;
  }

  .result-name {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.025em;
  }

  .result-period {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-mute);
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-pill);
    border: 1px solid var(--line-soft);
    flex-shrink: 0;
    white-space: nowrap;
  }

  @media (max-width: 480px) {
    .result-head { flex-direction: column; }
    .result-period { align-self: flex-start; }
  }

  /* Faturamento destaque (só pra La Mia) */
  .result-faturamento {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--ink), #3d3833);
    color: var(--paper);
    border-radius: var(--radius-md);
    margin-bottom: 28px;
  }

  .fat-label {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(245, 241, 235, 0.6);
    flex: 1;
  }

  .fat-arrow {
    color: var(--ios-green);
    font-size: 20px;
    font-weight: 700;
  }

  .fat-value {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--paper);
    letter-spacing: -0.02em;
  }

  /* Grid das métricas */
  .result-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .result-metrics.single {
    grid-template-columns: 1fr;
  }

  @media (max-width: 480px) {
    .result-metrics { grid-template-columns: 1fr; }
  }

  .metric {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-md);
    padding: 20px 22px;
  }

  .metric-label {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ink-mute);
    margin-bottom: 10px;
  }

  .metric-now {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 12px;
  }

  .metric-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid var(--line-soft);
  }

  .metric-before {
    font-size: 11px;
    color: var(--ink-mute);
    font-family: var(--font-mono);
    letter-spacing: 0.04em;
  }

  .metric-delta {
    font-size: 12px;
    font-weight: 600;
    color: var(--ios-green);
    background: rgba(48, 209, 88, 0.12);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
  }

  /* Métrica hero (Ice Creamy) */
  .metric-hero {
    text-align: center;
    padding: 32px 22px;
  }

  .metric-hero .metric-label {
    margin-bottom: 24px;
  }

  .metric-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
  }

  @media (max-width: 420px) {
    .metric-comparison { gap: 14px; }
  }

  .metric-side {
    text-align: center;
  }

  .metric-side-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ink-mute);
    margin-bottom: 6px;
  }

  .metric-side.after .metric-side-tag {
    color: var(--ios-green);
  }

  .metric-side-value {
    font-family: var(--font-display);
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--ink);
  }

  .metric-side.after .metric-side-value {
    color: var(--ink);
  }

  .metric-side-arrow {
    font-size: 28px;
    color: var(--ios-blue);
    font-weight: 400;
  }

  .metric-delta-big {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ios-green);
    background: rgba(48, 209, 88, 0.12);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-family: var(--font-mono);
  }

  /* ============================================
     SOBRE A VI · Contact Card iOS
     ============================================ */
  .about {
    padding: 120px 24px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .contact-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(30px) saturate(1.5);
    -webkit-backdrop-filter: blur(30px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
  }

  @media (max-width: 720px) {
    .contact-card {
      grid-template-columns: 1fr;
      padding: 32px 28px;
      text-align: center;
      gap: 24px;
    }
  }

  .contact-photo {
    width: 220px;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(165deg, #C9BFB1, #A89B8A);
    flex-shrink: 0;
    box-shadow: 0 12px 32px rgba(42, 39, 36, 0.18);
    position: relative;
  }

  .contact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  @media (max-width: 720px) {
    .contact-photo {
      margin: 0 auto;
      width: 180px;
      height: 220px;
    }
  }

  .contact-info .contact-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink-mute);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  @media (max-width: 720px) {
    .contact-info .contact-eyebrow {
      justify-content: center;
    }
  }

  .contact-info .contact-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--ink-mute);
  }

  @media (max-width: 720px) {
    .contact-info .contact-eyebrow::before { display: none; }
  }

  .contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
  }

  .contact-info h2 em {
    font-style: italic;
    color: var(--ink-soft);
  }

  .contact-info p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 540px;
    margin-bottom: 20px;
  }

  @media (max-width: 720px) {
    .contact-info p { margin-left: auto; margin-right: auto; }
  }

  .contact-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  @media (max-width: 720px) {
    .contact-tags { justify-content: center; }
  }

  .contact-tag {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--line-soft);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    color: var(--ink-soft);
    font-weight: 500;
  }

  .contact-tag.blue {
    background: var(--ios-blue-soft);
    border-color: transparent;
    color: var(--ios-blue);
    font-weight: 600;
  }

  /* ============================================
     CTA MODULAR · botão recorrente no fim de cada seção
     ============================================ */
  .module-cta {
    display: flex;
    justify-content: center;
    margin-top: 56px;
  }

  .module-cta a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--ink);
    color: var(--paper);
    padding: 16px 28px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border: 1px solid var(--ink);
    transition: all 0.25s ease;
  }

  .module-cta a:hover {
    background: var(--ios-blue);
    border-color: var(--ios-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 132, 255, 0.3);
  }

  .module-cta a svg {
    transition: transform 0.25s ease;
  }

  .module-cta a:hover svg {
    transform: translateX(3px);
  }

  /* ============================================
     FAQ · estilo iOS Settings
     ============================================ */
  .faq {
    padding: 120px 24px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .faq .section-header {
    margin-bottom: 40px;
  }

  .faq-list {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }

  .faq-item {
    border-bottom: 1px solid rgba(201, 194, 184, 0.3);
    transition: background 0.2s ease;
  }

  .faq-item:last-child {
    border-bottom: none;
  }

  .faq-question {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    user-select: none;
    transition: background 0.2s ease;
  }

  .faq-item:hover .faq-question {
    background: rgba(255, 255, 255, 0.5);
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--line-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 700;
  }

  .faq-item.open .faq-icon {
    background: var(--ios-blue);
    color: #fff;
    transform: rotate(45deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .faq-item.open .faq-answer {
    max-height: 300px;
  }

  .faq-answer-inner {
    padding: 0 28px 22px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-soft);
  }

  /* ============================================
     FAQ · FIM
     ============================================ */

  /* ============================================
     PROCESSO · TIMELINE iOS
     ============================================ */
  .process {
    padding: 120px 24px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .process-steps {
    display: grid;
    gap: 14px;
    margin-top: 56px;
  }

  .step {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
  }

  .step:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateX(6px);
  }

  .step-num {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 400;
    color: var(--ink-mute);
    line-height: 1;
    letter-spacing: -0.04em;
    font-style: italic;
    min-width: 60px;
  }

  .step-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
  }

  .step-content p {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.5;
    max-width: 540px;
  }

  .step-toggle {
    width: 50px;
    height: 30px;
    background: var(--ios-green);
    border-radius: 15px;
    position: relative;
    flex-shrink: 0;
  }

  .step-toggle::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    background: #fff;
    border-radius: 50%;
    top: 2px;
    right: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  }

  @media (max-width: 720px) {
    .step {
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .step-toggle { justify-self: end; }
  }

  /* ============================================
     CTA FINAL
     ============================================ */
  .final-cta {
    padding: 140px 24px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
  }

  .final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 88px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.035em;
    margin-bottom: 32px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .final-cta h2 em {
    font-style: italic;
    color: var(--ink-soft);
  }

  .final-cta-card {
    margin-top: 64px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-lg);
  }

  /* WhatsApp Card */
  .whatsapp-card {
    margin-top: 64px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-lg);
    text-align: center;
  }

  @media (max-width: 600px) {
    .whatsapp-card { padding: 40px 28px; }
  }

  .whatsapp-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink-mute);
    margin-bottom: 12px;
  }

  .whatsapp-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
  }

  .whatsapp-title em {
    font-style: italic;
    color: var(--ink-soft);
  }

  .whatsapp-text {
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 32px;
  }

  .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #fff;
    padding: 18px 32px;
    border-radius: var(--radius-pill);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
  }

  .whatsapp-btn:hover {
    background: #1eb858;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  }

  .whatsapp-btn svg {
    flex-shrink: 0;
  }

  .whatsapp-number {
    margin-top: 20px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--ink-mute);
    letter-spacing: 0.04em;
  }

  .form-group {
    text-align: left;
    margin-bottom: 18px;
  }

  .form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-mute);
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--ink);
    transition: all 0.2s ease;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--ios-blue);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 4px var(--ios-blue-soft);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 80px;
    font-family: var(--font-body);
  }

  .form-submit {
    width: 100%;
    background: var(--ink);
    color: var(--paper);
    padding: 16px;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .form-submit:hover {
    background: var(--ios-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 132, 255, 0.3);
  }

  /* ============================================
     FOOTER
     ============================================ */
  footer {
    padding: 60px 24px 40px;
    border-top: 1px solid var(--line-soft);
    position: relative;
    z-index: 1;
    margin-top: 80px;
  }

  .footer-logo-wrap {
    max-width: 1280px;
    margin: 0 auto 48px;
    display: flex;
    justify-content: center;
  }

  .footer-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }

  .footer-logo:hover {
    opacity: 1;
  }

  .footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--line-soft);
  }

  @media (max-width: 720px) {
    .footer-content {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
    .footer-brand-col {
      grid-column: span 2;
    }
  }

  .footer-col-title {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ink-mute);
    margin-bottom: 16px;
  }

  .footer-tagline {
    font-size: 13px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-top: 16px;
    max-width: 320px;
  }

  .footer-brand {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 22px;
    line-height: 1;
  }

  .footer-meta {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ink-mute);
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
  }

  .footer-links a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
  }

  .footer-links a:hover { color: var(--ios-blue); }

  .footer-bottom {
    max-width: 1280px;
    margin: 32px auto 0;
  }

  .footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  @media (max-width: 600px) {
    .footer-bottom-inner { justify-content: center; text-align: center; }
  }

  /* ============================================
     ANIMAÇÕES DE ENTRADA
     ============================================ */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* responsivo extra */
  @media (max-width: 600px) {
    .device-stage { min-height: 540px; }
    .iphone { width: 280px; height: 560px; }
    .nav { padding: 6px 6px 6px 16px; }
    .nav-brand { font-size: 14px; }
    .nav-cta { font-size: 12px; padding: 7px 12px; }
    .hero { padding: 110px 20px 60px; }
    .hero-actions { width: 100%; }
    .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  }



.service-page { padding: 140px 24px 80px; max-width: 880px; margin: 0 auto; position: relative; z-index: 1; }
.service-back { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-mute); text-decoration: none; margin-bottom: 40px; transition: color 0.2s ease; }
.service-back:hover { color: var(--ink); }
.service-eyebrow { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--ink-mute); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.service-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--ink-mute); }
.service-page h1 { font-family: var(--font-display); font-size: clamp(40px, 6vw, 72px); font-weight: 400; line-height: 1; letter-spacing: -0.03em; margin-bottom: 32px; }
.service-intro { font-size: 18px; line-height: 1.6; color: var(--ink-soft); max-width: 720px; margin-bottom: 24px; }
.service-intro strong { color: var(--ink); font-weight: 500; }
.service-block { margin-top: 72px; }
.service-block h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); font-weight: 400; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 24px; }
.service-block h2 em { font-style: italic; color: var(--ink-soft); }
.service-block p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 18px; }
.service-block p:last-child { margin-bottom: 0; }
.service-list-card { background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.7); border-radius: var(--radius-lg); padding: 36px 40px; margin-top: 24px; box-shadow: var(--shadow-md); }
.service-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 32px; }
@media (max-width: 600px) { .service-list { grid-template-columns: 1fr; } .service-list-card { padding: 28px 24px; } }
.service-list li { font-size: 14px; line-height: 1.5; color: var(--ink-soft); padding-left: 22px; position: relative; }
.service-list li::before { content: '✦'; position: absolute; left: 0; top: 0; color: var(--ios-blue); font-size: 11px; }
.service-how { background: linear-gradient(165deg, var(--ink), #3d3833); color: var(--paper); border-radius: var(--radius-lg); padding: 48px 44px; margin-top: 24px; box-shadow: var(--shadow-lg); }
.service-how h2 { color: var(--paper); }
.service-how p { color: rgba(245, 241, 235, 0.85); }
@media (max-width: 600px) { .service-how { padding: 32px 26px; } }
.service-interest { background: rgba(255, 255, 255, 0.6); border: 1px solid rgba(255, 255, 255, 0.7); border-radius: var(--radius-lg); padding: 36px 40px; margin-top: 32px; box-shadow: var(--shadow-sm); }
.service-interest h3 { font-family: var(--font-display); font-size: 22px; font-weight: 400; font-style: italic; margin-bottom: 14px; letter-spacing: -0.01em; }
.service-interest p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.service-cta-final { margin-top: 72px; text-align: center; padding: 64px 40px; background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); border: 1px solid rgba(255, 255, 255, 0.7); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.service-cta-final h3 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 38px); font-weight: 400; line-height: 1.05; letter-spacing: -0.025em; margin-bottom: 14px; }
.service-cta-final h3 em { font-style: italic; color: var(--ink-soft); }
.service-cta-final p { font-size: 15px; color: var(--ink-soft); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
@media (max-width: 600px) { .service-cta-final { padding: 40px 24px; } }
.service-faq { margin-top: 80px; max-width: 880px; padding: 0; }
.service-faq .section-header { margin-bottom: 32px; flex-direction: column; align-items: flex-start; gap: 8px; }

/* ============================================
   SERVIÇOS RELACIONADOS (cross-link entre páginas)
   ============================================ */
.related-services { margin-top: 88px; }
.related-services .section-header { margin-bottom: 32px; }
.related-services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.related-service-card {
  display: block;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.related-service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.related-service-card .label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-mute); margin-bottom: 10px; }
.related-service-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 400; letter-spacing: -0.01em; margin-bottom: 8px; color: var(--ink); }
.related-service-card p { font-size: 14px; line-height: 1.5; color: var(--ink-soft); }
@media (max-width: 600px) { .related-services-grid { grid-template-columns: 1fr; } }

