 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --pink:    #E91E8C;
    --pink2:   #F050A8;
    --purple:  #7B2D8B;
    --purple2: #9B3DAB;
    --purple-dark: #4a1060;
    --lilac:   #C084DC;
    --bg:      #f5f3f8;
    --white:   #ffffff;
    --dark:    #1a0a22;
    --dark2:   #2e1040;
    --gray:    #6b5f72;
    --gray2:   #ede9f4;
    --heading: 'Montserrat', sans-serif;
    --body:    'Inter', sans-serif;
    --r: 14px;
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: var(--body);
    background:
      radial-gradient(circle at top left, rgba(233,30,140,.08), transparent 28%),
      radial-gradient(circle at right 18%, rgba(123,45,139,.08), transparent 24%),
      linear-gradient(180deg, #faf8fc 0%, var(--bg) 30%, #f2edf7 100%);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
  }
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(123,45,139,.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(123,45,139,.035) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.45), transparent 85%);
    opacity: .45;
    z-index: 0;
  }
  nav, section, footer { position: relative; z-index: 1; }

  /* NAV */
  nav {
    position: sticky; top: 0; z-index: 200;
    background: rgba(250,248,252,.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(123,45,139,.08);
    padding: 0 48px;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
    box-shadow: 0 8px 28px rgba(46,16,64,.06);
  }
  .nav-menu { display: flex; align-items: center; gap: 24px; }
  .nav-brand {
    font-family: var(--heading); font-weight: 900; font-size: 18px;
    background: linear-gradient(90deg, var(--purple), var(--pink));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    text-decoration: none;
  }
  .nav-links { display: flex; gap: 28px; list-style: none; }
  .nav-links a { font-size: 14px; font-weight: 500; color: var(--dark2); text-decoration: none; transition: color .2s; }
  .nav-links a:hover { color: var(--pink); }
  .nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 10px;
    margin-left: auto;
    cursor: pointer;
  }
  .nav-toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--dark2);
  }
  .nav-toggle-line + .nav-toggle-line { margin-top: 4px; }
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .nav-cta {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: #fff; padding: 10px 22px; border-radius: 99px;
    font-size: 14px; font-weight: 700; font-family: var(--heading);
    text-decoration: none; transition: opacity .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 10px 22px rgba(123,45,139,.18);
  }
  .nav-cta:hover { opacity: .92; transform: translateY(-1px); box-shadow: 0 14px 28px rgba(123,45,139,.22); }

  /* HERO */
  .hero {
    min-height: 88vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: 48px;
    padding: 80px 80px;
    position: relative; overflow: hidden;
  }
  .hero-blob {
    position: absolute; right: -160px; top: -160px;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(233,30,140,.16) 0%, rgba(123,45,139,.1) 45%, transparent 70%);
    pointer-events: none;
  }
  .hero-blob2 {
    position: absolute; left: -80px; bottom: -120px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(123,45,139,.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--heading); font-size: 12px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--pink); border: 1.5px solid var(--pink);
    padding: 5px 16px; border-radius: 99px; margin-bottom: 24px;
    opacity: 0; animation: fadeUp .5s .1s forwards;
  }
  .hero h1 {
    font-family: var(--heading); font-weight: 900;
    font-size: clamp(36px, 4.2vw, 58px); line-height: 1.08;
    color: var(--dark2); margin-bottom: 12px;
    opacity: 0; animation: fadeUp .5s .2s forwards;
    text-wrap: balance;
  }
  .hero h1 .pink { color: var(--pink); }
  .hero h1 .purple { color: var(--purple); }
  .hero-sub {
    font-size: 17px; color: var(--gray); line-height: 1.7;
    max-width: 500px; margin-bottom: 40px;
    opacity: 0; animation: fadeUp .5s .3s forwards;
  }
  .hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--purple-dark);
    background: rgba(123,45,139,.08);
    border: 1px solid rgba(123,45,139,.12);
    padding: 8px 14px;
    border-radius: 999px;
    margin: -8px 0 28px;
    opacity: 0;
    animation: fadeUp .5s .35s forwards;
  }
  .hero-actions {
    display: flex; gap: 14px; flex-wrap: wrap;
    opacity: 0; animation: fadeUp .5s .4s forwards;
  }
  .btn-primary {
    /* background: linear-gradient(135deg, var(--purple), var(--pink)); */
    background: var(--purple2);
    color: #fff; padding: 15px 32px; border-radius: 99px;
    font-family: var(--heading); font-size: 15px; font-weight: 800;
    text-decoration: none; transition: opacity .2s, transform .15s;
    /* box-shadow: 0 4px 20px rgba(233,30,140,.28); */
  }
  .btn-primary:hover { opacity: .88; transform: translateY(-2px); }
  .btn-ghost {
    border: 2px solid var(--purple); color: var(--purple);
    padding: 13px 28px; border-radius: 99px;
    font-family: var(--heading); font-size: 15px; font-weight: 700;
    text-decoration: none; transition: background .2s, color .2s;
  }
  .btn-ghost:hover { background: var(--purple); color: #fff; }

  /* Hero visual */
  .hero-visual {
    opacity: 0; animation: fadeUp .6s .35s forwards;
    position: relative; z-index: 1;
  }
  .hero-main-card {
    background: linear-gradient(135deg, var(--purple2), #c03090);
    border-radius: 20px; padding: 32px; color: #fff; margin-bottom: 14px;
    box-shadow: 0 20px 50px rgba(123,45,139,.18);
  }
  .hero-card-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .7; margin-bottom: 20px; }
  .stat-row { display: flex; }
  .stat { flex: 1; padding-right: 20px; border-right: 1px solid rgba(255,255,255,.2); }
  .stat:last-child { border-right: none; padding-right: 0; padding-left: 20px; }
  .stat:first-child { padding-left: 0; }
  .stat-num { font-family: var(--heading); font-size: 38px; font-weight: 900; }
  .stat-desc { font-size: 12px; opacity: .75; margin-top: 2px; }
  .hero-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-mini {
    background: rgba(255,255,255,.88); border-radius: 14px; padding: 18px;
    border: 1px solid rgba(123,45,139,.1); transition: transform .2s, box-shadow .2s;
    box-shadow: 0 8px 22px rgba(46,16,64,.06);
  }
  .hero-mini:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(46,16,64,.08); }
  .mini-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    margin-bottom: 10px;
  }
  .mini-title { font-family: var(--heading); font-size: 13px; font-weight: 700; color: var(--dark2); }
  .mini-sub { font-size: 12px; color: var(--gray); margin-top: 2px; }

  /* STRIP */
  .strip {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    padding: 18px 48px;
    display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 12px 28px rgba(123,45,139,.12);
  }
  .strip-label { font-family: var(--heading); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); white-space: nowrap; }
  .strip-pills { display: flex; gap: 10px; flex-wrap: wrap; }
  .strip-pill {
    background: rgba(255,255,255,.15); color: #fff;
    font-family: var(--heading); font-size: 13px; font-weight: 700;
    padding: 5px 16px; border-radius: 99px;
    border: 1px solid rgba(255,255,255,.25);
  }

  /* SECTION BASE */
  section { padding: 100px 80px; }
  section:not(.hero) {
    scroll-margin-top: 88px;
  }
  .eyebrow {
    font-family: var(--heading); font-size: 12px; font-weight: 800;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--pink); margin-bottom: 12px;
  }
  .section-title {
    font-family: var(--heading); font-weight: 900;
    font-size: clamp(28px, 3.5vw, 44px); line-height: 1.1;
    color: var(--dark2); margin-bottom: 14px;
  }
  .section-title .pink { color: var(--pink); }
  .section-title .purple { color: var(--purple); }
  .section-desc { font-size: 16px; color: var(--gray); max-width: 560px; line-height: 1.7; }
  .section-header { margin-bottom: 60px; }
  .section-header::after {
    content: '';
    display: block;
    width: 72px;
    height: 4px;
    border-radius: 999px;
    margin-top: 18px;
    background: linear-gradient(90deg, var(--purple), var(--pink));
  }

  /* ── SERVIÇOS HEADER ── */
  #servicos { background: var(--white); }
  .svc-header-band {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    border-radius: 20px; padding: 40px 48px;
    text-align: center; margin-bottom: 48px;
    box-shadow: 0 18px 40px rgba(74,16,96,.16);
  }
  .svc-header-band h2 {
    font-family: var(--heading); font-weight: 900;
    font-size: clamp(32px, 4vw, 50px); color: #fff;
  }
  .svc-header-band p { font-size: 16px; color: rgba(255,255,255,.65); margin-top: 8px; }

  /* GRID 4 PILARES */
  .pilares-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

  .pilar {
    background: var(--bg);
    border: 1.5px solid rgba(123,45,139,.1);
    border-radius: 20px; overflow: hidden;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    box-shadow: 0 10px 26px rgba(46,16,64,.05);
  }
  .pilar:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(123,45,139,.14); border-color: rgba(123,45,139,.18); }

  .pilar-header {
    background: linear-gradient(135deg, var(--purple), var(--pink2));
    padding: 22px 28px;
    display: flex; align-items: center; gap: 14px;
  }
  .pilar:nth-child(2) .pilar-header { background: linear-gradient(135deg, #6d1b7b, var(--purple2)); }
  .pilar:nth-child(3) .pilar-header { background: linear-gradient(135deg, var(--pink), #c03090); }
  .pilar:nth-child(4) .pilar-header { background: linear-gradient(135deg, var(--purple-dark), #7B2D8B); }

  .pilar-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
  }
  .pilar-header-text {}
  .pilar-num {
    font-family: var(--heading); font-size: 11px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: rgba(255,255,255,.65); margin-bottom: 2px;
  }
  .pilar-title {
    font-family: var(--heading); font-weight: 900; font-size: 17px; color: #fff;
  }

  .pilar-body { padding: 28px; }
  .pilar-list { list-style: none; }
  .pilar-item {
    font-size: 14px; color: var(--dark2);
    padding: 9px 0;
    border-bottom: 1px solid rgba(123,45,139,.07);
    display: flex; align-items: flex-start; gap: 10px;
    line-height: 1.4;
  }
  .pilar-item:last-child { border-bottom: none; }
  .pilar-dot {
    width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 4px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
  }

  /* PREÇOS */
  #precos { background: var(--bg); }
  .precos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; }
  .preco-card {
    background: var(--white);
    border: 1.5px solid rgba(123,45,139,.1);
    border-radius: 20px; padding: 32px 26px;
    transition: transform .2s, box-shadow .2s;
    position: relative;
    box-shadow: 0 10px 26px rgba(46,16,64,.05);
  }
  .preco-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(123,45,139,.12); }
  .preco-card.featured {
    background: linear-gradient(160deg, var(--purple2), #c03090);
    border-color: transparent;
  }
  .preco-badge {
    display: inline-block; font-family: var(--heading); font-size: 11px; font-weight: 800;
    letter-spacing: .08em; text-transform: uppercase;
    background: var(--gray2); color: var(--purple);
    padding: 4px 14px; border-radius: 99px; margin-bottom: 20px;
  }
  .preco-card.featured .preco-badge { background: rgba(255,255,255,.2); color: #fff; }
  .preco-title { font-family: var(--heading); font-weight: 900; font-size: 20px; margin-bottom: 6px; color: var(--dark2); }
  .preco-card.featured .preco-title { color: #fff; }
  .preco-desc { font-size: 13px; color: var(--gray); margin-bottom: 22px; line-height: 1.5; }
  .preco-card.featured .preco-desc { color: rgba(255,255,255,.7); }
  .preco-list { list-style: none; margin-bottom: 24px; }
  .preco-item {
    font-size: 13px; color: var(--dark2);
    padding: 7px 0; border-bottom: 1px solid rgba(123,45,139,.07);
    display: flex; align-items: flex-start; gap: 8px; line-height: 1.4;
  }
  .preco-card.featured .preco-item { color: rgba(255,255,255,.88); border-bottom-color: rgba(255,255,255,.12); }
  .preco-item::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 5px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
  }
  .preco-card.featured .preco-item::before { background: rgba(255,255,255,.6); }
  .preco-val { font-family: var(--heading); font-weight: 900; font-size: 30px; color: var(--pink); margin-bottom: 2px; }
  .preco-card.featured .preco-val { color: #fff; }
  .preco-lbl { font-size: 12px; color: var(--gray); }
  .preco-card.featured .preco-lbl { color: rgba(255,255,255,.55); }
  .preco-btn {
    display: block; margin-top: 20px; text-align: center;
    /* background: linear-gradient(135deg, var(--purple), var(--pink)); */
    background: var(--purple2);
    color: #fff; padding: 12px 0; border-radius: 99px;
    font-family: var(--heading); font-size: 14px; font-weight: 700;
    text-decoration: none; transition: opacity .2s;
  }
  .preco-btn:hover { opacity: .86; }
  .preco-card.featured .preco-btn { background: rgba(255,255,255,.2); }
  .preco-card.featured .preco-btn:hover { background: rgba(255,255,255,.3); }

  /* Nota final preços */
  .preco-note {
    background: var(--white); border: 1.5px solid rgba(123,45,139,.1);
    border-radius: 16px; padding: 24px 28px;
    display: flex; align-items: center; gap: 20px;
  }
  .preco-note-dot {
    width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
  }
  .preco-note-text { font-size: 14px; color: var(--gray); line-height: 1.6; }
  .preco-note-text strong { color: var(--dark2); }

  /* COMO FUNCIONA */
  #processo { background: var(--white); }
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
  .steps::before {
    content: ''; position: absolute;
    top: 36px; left: calc(12.5% + 18px); right: calc(12.5% + 18px);
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--pink));
    z-index: 0; opacity: .25;
  }
  .step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
  .step-num {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--bg); border: 2px solid rgba(123,45,139,.12);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--heading); font-size: 26px; font-weight: 900; color: var(--gray);
    margin: 0 auto 20px; transition: transform .2s;
  }
  .step:hover .step-num { transform: scale(1.08); }
  .step:first-child .step-num {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: #fff; border-color: transparent;
    box-shadow: 0 6px 20px rgba(233,30,140,.28);
  }
  .step-title { font-family: var(--heading); font-weight: 800; font-size: 15px; margin-bottom: 8px; color: var(--dark2); }
  .step-desc { font-size: 13px; color: var(--gray); line-height: 1.6; }

  /* DEPOIMENTOS */
  #depoimentos { background: var(--bg); }
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .testi {
    background: var(--white); border-radius: 20px; padding: 28px;
    border: 1px solid rgba(123,45,139,.08);
    transition: transform .2s, box-shadow .2s, border-color .2s;
    box-shadow: 0 10px 24px rgba(46,16,64,.05);
  }
  .testi:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(123,45,139,.1); border-color: rgba(123,45,139,.14); }
  .testi-quote {
    font-family: var(--heading); font-weight: 700; font-style: italic;
    font-size: 15px; line-height: 1.6; color: var(--dark2); margin-bottom: 24px;
  }
  .testi-quote span { color: var(--pink); }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-av {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--heading); font-weight: 900; font-size: 16px; color: #fff; flex-shrink: 0;
  }
  .testi-name { font-family: var(--heading); font-weight: 700; font-size: 14px; color: var(--dark2); }
  .testi-role { font-size: 12px; color: var(--gray); }

  /* CEO */
  #ceo { background: var(--white); padding: 100px 80px; }
  .ceo-inner {
    display: grid; grid-template-columns: 320px 1fr;
    gap: 72px; align-items: center;
    max-width: 1100px; margin: 0 auto;
  }
  .ceo-photo-wrap { display: flex; flex-direction: column; align-items: center; gap: 20px; }
  .ceo-photo-ring {
    width: 260px; height: 260px; border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-dark), var(--purple), var(--pink));
    padding: 4px;
    box-shadow: 0 20px 60px rgba(153,92,242,.25);
  }
  .ceo-photo-placeholder {
    width: 100%; height: 100%; border-radius: 50%;
    background: linear-gradient(160deg, var(--purple) 0%, var(--pink) 100%);
    display: flex; align-items: center; justify-content: center; overflow: hidden;
  }
  .ceo-photo-placeholder img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
  .ceo-photo-placeholder svg { width: 80px; height: 80px; }
  .ceo-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gray2); color: var(--purple-dark);
    font-family: var(--heading); font-size: 12px; font-weight: 800;
    letter-spacing: .08em; text-transform: uppercase;
    padding: 7px 18px; border-radius: 99px;
  }
  .ceo-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
  .ceo-title {
    font-family: var(--heading); font-weight: 900;
    font-size: clamp(30px, 3.5vw, 44px); line-height: 1.1;
    color: var(--dark2); margin-bottom: 10px;
  }
  .ceo-tagline {
    font-family: var(--heading); font-style: italic; font-weight: 700;
    font-size: 17px; color: var(--purple); margin-bottom: 20px;
    padding-left: 16px; border-left: 3px solid var(--gold);
  }
  .ceo-bio { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 32px; }
  .ceo-credentials {
    display: flex; gap: 32px; flex-wrap: wrap;
    padding: 24px 0; border-top: 1px solid rgba(153,92,242,.1);
  }
  .ceo-cred-num { font-family: var(--heading); font-weight: 900; font-size: 28px; color: var(--pink); line-height: 1; }
  .ceo-cred-lbl { font-size: 12px; color: var(--gray); margin-top: 4px; }

  /* CTA */
  #contato {
    /* background: linear-gradient(160deg, var(--dark2) 0%, #4a1060 60%, #8b1060 100%); */
    background: var(--dark);
    padding: 120px 80px; text-align: center; position: relative; overflow: hidden;
  }
  #contato::before {
    content: '';
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: 800px; height: 800px; border-radius: 50%;
    background: radial-gradient(circle, rgba(233,30,140,.14) 0%, transparent 65%);
    pointer-events: none;
  }
  .cta-eyebrow { color: var(--lilac); font-family: var(--heading); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
  #contato h2 {
    font-family: var(--heading); font-weight: 900;
    font-size: clamp(30px, 4vw, 50px); line-height: 1.1;
    color: #fff; max-width: 640px; margin: 0 auto 16px;
  }
  #contato h2 .pink { color: var(--pink2); }
  .cta-sub { font-size: 16px; color: rgba(255,255,255,.55); max-width: 460px; margin: 0 auto 48px; }
  .cta-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; max-width: 540px; margin: 0 auto; }
  .cta-input {
    flex: 1; min-width: 180px;
    background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.15);
    border-radius: 99px; padding: 14px 22px;
    font-size: 15px; color: #fff; font-family: var(--body);
    outline: none; transition: border-color .2s;
  }
  .cta-input::placeholder { color: rgba(255,255,255,.3); }
  .cta-input:focus { border-color: var(--pink2); }
  .cta-btn {
    background:  var(--purple2);
    color: #fff; border: none; padding: 14px 32px; border-radius: 99px;
    font-family: var(--heading); font-size: 15px; font-weight: 800;
    cursor: pointer; transition: opacity .2s, transform .15s;
  }
  .cta-btn:hover { opacity: .88; transform: translateY(-1px); }
  .cta-note { font-size: 13px; color: rgba(255,255,255,.3); margin-top: 18px; }

  /* WhatsApp float */
  .wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 300;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,.45);
    text-decoration: none; transition: transform .2s, box-shadow .2s;
  }
  .wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.55); }
  .wa-float svg { width: 28px; height: 28px; fill: #fff; }

  /* FOOTER */
  footer {
    background: var(--dark2);
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 28px 80px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .footer-brand {
    font-family: var(--heading); font-weight: 900; font-size: 17px;
    background: linear-gradient(90deg, var(--lilac), var(--pink2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  .footer-copy { font-size: 13px; color: rgba(255,255,255,.28); }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 960px) {
    nav {
      padding: 14px 20px;
      height: auto;
    }
    .nav-brand { flex: 1 1 auto; font-size: 16px; }
    .nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; }
    .nav-menu {
      display: none;
      position: absolute;
      left: 16px;
      right: 16px;
      top: calc(100% + 10px);
      flex-direction: column;
      align-items: stretch;
      gap: 14px;
      padding: 18px;
      border-radius: 18px;
      background: rgba(245,243,248,.98);
      border: 1px solid rgba(123,45,139,.12);
      box-shadow: 0 18px 40px rgba(46,16,64,.12);
    }
    .nav-menu.is-open { display: flex; }
    .nav-links {
      display: grid;
      gap: 12px;
    }
    .nav-links a {
      display: block;
      padding: 10px 0;
      font-size: 15px;
    }
    .nav-cta { padding: 12px 18px; font-size: 14px; text-align: center; }
    .hero {
      grid-template-columns: 1fr;
      padding: 60px 24px;
      text-align: center;
      gap: 28px;
    }
    .hero-visual { display: none; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-blob, .hero-blob2 { display: none; }
    section { padding: 60px 24px; }
    .strip {
      padding: 16px 24px;
      gap: 14px;
      justify-content: center;
      text-align: center;
    }
    .strip-label { width: 100%; }
    .pilares-grid { grid-template-columns: 1fr; }
    .precos-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr 1fr; }
    .steps::before { display: none; }
    .testi-grid { grid-template-columns: 1fr; }
    .ceo-inner {
      grid-template-columns: 1fr;
      gap: 32px;
      text-align: center;
    }
    #ceo { padding: 60px 24px; }
    .ceo-photo-wrap { margin: 0 auto; width: 100%; }
    .ceo-photo-ring {
      width: min(240px, 72vw);
      height: min(240px, 72vw);
    }
    .ceo-badge,
    .ceo-tagline { margin-left: auto; margin-right: auto; }
    .ceo-tagline { padding-left: 0; border-left: 0; }
    .ceo-credentials { justify-content: center; }
    .preco-note { flex-direction: column; text-align: center; }
    .cta-form { flex-direction: column; }
    .cta-input, .cta-btn { width: 100%; }
    footer { flex-direction: column; gap: 8px; padding: 20px 24px; text-align: center; }
    #contato { padding: 80px 24px; }
    .svc-header-band { padding: 28px 24px; }
  }

  @media (max-width: 640px) {
    nav {
      align-items: center;
    }
    .nav-brand {
      max-width: calc(100% - 70px);
    }
    .hero {
      padding: 52px 20px;
    }
    .hero h1 {
      font-size: clamp(32px, 10vw, 44px);
    }
    .hero-sub {
      font-size: 16px;
      max-width: none;
    }
    .hero-trust {
      font-size: 11px;
      padding: 7px 12px;
      margin-bottom: 22px;
    }
    .hero-actions {
      gap: 10px;
    }
    .strip {
      padding: 14px 16px;
      gap: 10px;
      align-items: center;
      flex-direction: column;
    }
    .strip-label {
      width: auto;
      text-align: center;
      white-space: normal;
      letter-spacing: .08em;
    }
    .strip-pills {
      width: 100%;
      justify-content: center;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }
    .strip-pill {
      width: 100%;
      text-align: center;
      padding: 7px 8px;
      font-size: 11px;
    }
    .hero-actions a,
    .preco-btn,
    .cta-btn {
      width: 100%;
      text-align: center;
    }
    .hero-actions a {
      padding-left: 18px;
      padding-right: 18px;
    }
    section {
      padding: 52px 20px;
    }
    .section-header {
      margin-bottom: 40px;
    }
    #ceo {
      padding: 52px 20px;
    }
    .svc-header-band,
    .pilar-body,
    .preco-card,
    .testi,
    #ceo,
    #contato {
      border-radius: 16px;
    }
    .pilar-header {
      padding: 18px 20px;
      align-items: flex-start;
    }
    .pilar-body {
      padding: 22px 20px;
    }
    .ceo-inner {
      gap: 24px;
    }
    .ceo-photo-ring {
      width: min(210px, 68vw);
      height: min(210px, 68vw);
    }
    .ceo-title {
      font-size: clamp(28px, 8vw, 36px);
    }
    .ceo-bio {
      font-size: 15px;
      line-height: 1.7;
    }
    .ceo-credentials {
      gap: 18px;
      padding-top: 18px;
    }
    .steps {
      grid-template-columns: 1fr;
    }
    .step {
      padding: 0;
    }
    .step-num {
      width: 64px;
      height: 64px;
      font-size: 24px;
      margin-bottom: 14px;
    }
    .preco-note {
      padding: 20px;
    }
    .wa-float {
      width: 52px;
      height: 52px;
      bottom: 18px;
      right: 18px;
    }
  }