    :root{
      --bg:#ffffff; --text:#1f2937; --muted:#6b7280; --primary:#7c3aed; --primary-600:#6d28d9; --surface:#f9fafb; --shadow:0 10px 20px rgba(0,0,0,.08);
      --tint-50:#faf5ff; --tint-100:#f3e8ff;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{margin:0;font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,'Helvetica Neue',Arial,sans-serif;color:var(--text);background:var(--bg);}
    a{color:var(--primary);text-decoration:none}
    header{position:sticky;top:0;z-index:40;background:rgba(255,255,255,.85);backdrop-filter:saturate(180%) blur(8px);border-bottom:1px solid #eef2f7}
    
    .nav{display:flex;align-items:center;justify-content:space-between;height:64px}
    .brand{display:flex;align-items:center;gap:10px;font-weight:600}
    .brand img{width:36px;height:36px;object-fit:cover;border-radius:8px}
    .menu{display:flex;gap:18px}
    .menu a{font-size:.95rem;color:#374151}
    .btn{display:inline-flex;align-items:center;gap:8px;padding:12px 18px;border-radius:999px;cursor:pointer;font-weight:600}
    .btn-primary{background:var(--primary);border-color:var(--primary);box-shadow:0 8px 18px rgba(124,58,237,.25)}
    .btn-primary:hover{background:var(--primary-600);border-color:var(--primary-600)}
    .btn-outline-secondary{background:#fff}

    /* Hero */
    .hero{position:relative;min-height:72vh;display:grid;place-items:center;background:#111}
    .hero-bg{
      position:absolute; inset:0; width:100%; height:100%;
      object-fit:cover; z-index:0; filter:brightness(.85);
    }
    .hero::after{
      content:""; position:absolute; inset:0;
      background:linear-gradient(180deg, rgba(45,25,80,.55), rgba(17,17,17,.35));
      z-index:0; pointer-events:none;
    }
    .hero-inner{position:relative;z-index:1;color:#fff;display:grid;gap:18px;padding:90px 0}
    .hero h1{font-family:"Playfair Display",serif;font-weight:600;line-height:1.05;font-size:clamp(1.8rem,3.2vw,3.25rem)}
    .hero p{color:#e5e7eb;max-width:720px}
    .cta-row{display:flex;gap:12px;flex-wrap:wrap}

    @media (max-width: 768px) {
      .hero-inner {
        padding: 5% !important;
      }
    }

    /* Sections */
    section{padding:64px 0}
    .section-title{font-family:"Playfair Display",serif;font-size:2rem;margin:0 0 8px}
    .section-sub{color:var(--muted);margin:0 0 28px}
    .section-alt{background:var(--surface);border-top:1px solid #eef2f7;border-bottom:1px solid #eef2f7}
    .section-contrast{background:linear-gradient(180deg, rgba(124,58,237,.06), rgba(124,58,237,.02));border-top:1px solid #eef2f7;border-bottom:1px solid #eef2f7}

    /* Benefits */
    .card h3{margin:0 0 8px;font-size:1.05rem}
    .kpi{display:flex;align-items:center;gap:10px;color:white;font-size:.95rem}

    /* Services */
    .service-card img{width:100%;height:180px;object-fit:cover;border-radius:12px}
    .service-card{display:flex;flex-direction:column;gap:10px}
    .service-card img{width:100%;height:180px;object-fit:cover;border-radius:12px}

    /* Regions list */
    .chip-list{display:flex;gap:10px;flex-wrap:wrap}
    .chip{padding:8px 12px;border:1px solid #e5e7eb;border-radius:999px;background:#fff;color:#374151}

    /* Testimonials */
    .testi{display:grid;gap:18px}
    .testi p{margin:0;color:#111}
    .quote{background:#fff;border:1px solid #eef2f7;border-radius:16px;padding:18px;box-shadow:var(--shadow)}
    .quote strong{display:block;margin-top:8px;color:#374151}

    /* FAQ */
    .faq{max-width:880px}
    details{background:#fff;border:1px solid #e5e7eb;border-radius:12px;padding:14px 18px}
    details+details{margin-top:12px}
    summary{cursor:pointer;font-weight:600}

    /* CTA Parallax (mobile-first) */
    #cta.cta-parallax{
    position: relative;
    padding: 80px 0;
    color: #fff;
    /* background-image: url('assets/images/cta-convites-belem.avif'); troque pela sua imagem */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* mobile-safe */
    overflow: hidden;
    }

    #cta .cta-bg{
      position:absolute; inset:0; width:100%; height:100%;
      object-fit:cover; z-index:0;
    }

    /* Overlay para contraste do texto */
    #cta.cta-parallax::after{
    content: "";
    position: absolute; inset: 0; z-index:1;
    /* blend de escurecimento + identidade roxa */
    background:
        linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.45)),
        linear-gradient(180deg, rgba(124,58,237,.20), rgba(124,58,237,.35));
    pointer-events: none;
    }

    /* Conteúdo acima do overlay */
    #cta.cta-parallax .container{
    position: relative;
    z-index: 2;
    }

    /* Parallax real em telas maiores */
    @media (min-width: 992px){
    #cta.cta-parallax{
        background-attachment: fixed;
    }
    }

    /* iOS/Safari fallback: desabilita 'fixed' para evitar bugs */
    @supports (-webkit-touch-callout: none){
    #cta.cta-parallax{
        background-attachment: scroll;
    }
    }

    /* Acessibilidade: respeita usuários que preferem menos movimento */
    @media (prefers-reduced-motion: reduce){
    #cta.cta-parallax{
        background-attachment: scroll;
    }
    }


    /* Footer */
    footer{background:#111 !important;color:#cbd5e1}
    footer a{color:#e5e7eb}

    /* Responsive */
    @media (max-width: 900px){
      .grid-3{grid-template-columns:1fr}
      .hero{min-height:68vh}
      .menu{display:none}
    }
      /* Floating Action Bar (mobile) */
    .floatbar{position:fixed;left:0;right:0;bottom:0;z-index:60;display:none}
    .floatbar-inner{margin:0 auto;max-width:1140px;padding:10px 20px calc(10px + env(safe-area-inset-bottom));display:flex;gap:10px}
    .floatbar .btn{flex:1;justify-content:center}
    @media (max-width: 900px){
      .floatbar{display:block}
      /* body{padding-bottom:82px} espaço para a barra */
    }
      /* Brand accents */
    .text-brand{color:var(--primary)!important}
    .card-accent{border-top:3px solid var(--primary)}
    .btn-primary{color:#fff!important;background:var(--primary)!important;border-color:var(--primary)!important}
    .btn-primary:hover{background:var(--primary-600)!important;border-color:var(--primary-600)!important}
    