:root {
      --blue-950: #071b31;
      --blue-900: #0d2f57;
      --blue-800: #15477d;
      --blue-700: #1d5f9e;
      --blue-100: #e9f3ff;
      --green: #20b45b;
      --green-dark: #178846;
      --ink: #111827;
      --muted: #5d6675;
      --line: #e6eaf0;
      --soft: #f5f7fb;
      --paper: #fffdf8;
      --white: #ffffff;
      --shadow-sm: 0 10px 30px rgba(11, 31, 55, .08);
      --shadow-md: 0 22px 70px rgba(11, 31, 55, .13);
      --radius-sm: 14px;
      --radius-md: 22px;
      --radius-lg: 32px;
      --max: 1180px;
      --whatsapp-link: "https://api.whatsapp.com/send?phone=551144861943&text=Ol%C3%A1!%20Vim%20pelo%20site%2C%20pode%20me%20ajudar%3F";
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--white);
      color: var(--ink);
      line-height: 1.5;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font: inherit; }
    ::selection { background: var(--blue-100); color: var(--blue-950); }

    .container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border: 1px solid rgba(13, 47, 87, .12);
      border-radius: 999px;
      background: rgba(255, 255, 255, .78);
      color: var(--blue-900);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: -.01em;
      box-shadow: 0 8px 24px rgba(13, 47, 87, .06);
    }
    .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--green); box-shadow: 0 0 0 6px rgba(32, 180, 91, .12); }

    .section { padding: 96px 0; position: relative; }
    .section.soft { background: linear-gradient(180deg, #f7f9fc 0%, #fff 100%); }
    .section-title { max-width: 760px; margin-bottom: 42px; }
    .section-title.center { text-align: center; margin-inline: auto; }
    .section-title h2 {
      margin: 14px 0 14px;
      color: var(--blue-950);
      font-size: clamp(31px, 4vw, 52px);
      line-height: 1.02;
      letter-spacing: -.055em;
    }
    .section-title p {
      margin: 0;
      color: var(--muted);
      font-size: 18px;
      max-width: 680px;
    }
    .section-title.center p { margin-inline: auto; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 13px 18px;
      border: 1px solid transparent;
      border-radius: 999px;
      font-weight: 800;
      font-size: 14px;
      cursor: pointer;
      transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary { background: var(--blue-900); color: white; box-shadow: 0 14px 34px rgba(13, 47, 87, .22); }
    .btn-primary:hover { background: var(--blue-800); box-shadow: 0 18px 42px rgba(13, 47, 87, .28); }
    .btn-whatsapp { background: var(--green); color: white; box-shadow: 0 14px 34px rgba(32, 180, 91, .24); }
    .btn-whatsapp:hover { background: var(--green-dark); }
    .btn-ghost { background: white; color: var(--blue-900); border-color: rgba(13, 47, 87, .14); box-shadow: 0 10px 24px rgba(13, 47, 87, .06); }
    .btn-ghost:hover { border-color: rgba(13, 47, 87, .28); }

    /* Header */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 16px 0;
      transition: background .25s ease, box-shadow .25s ease, padding .25s ease, border .25s ease;
    }
    .site-header.scrolled {
      padding: 10px 0;
      background: rgba(255, 255, 255, .84);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(13, 47, 87, .08);
      box-shadow: 0 12px 36px rgba(11, 31, 55, .06);
    }
    .nav-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: max-content;
    }
    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 13px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
      color: white;
      font-weight: 900;
      letter-spacing: -.08em;
      box-shadow: 0 12px 28px rgba(13, 47, 87, .22);
    }
    .brand-text strong { display: block; color: var(--blue-950); font-size: 16px; line-height: 1; }
    .brand-text span { display: block; color: var(--muted); font-size: 11px; font-weight: 700; margin-top: 4px; letter-spacing: .04em; text-transform: uppercase; }
    .main-nav { display: flex; align-items: center; gap: 4px; }
    .main-nav a {
      padding: 10px 12px;
      border-radius: 999px;
      color: #334155;
      font-size: 14px;
      font-weight: 700;
      transition: background .2s ease, color .2s ease;
    }
    .main-nav a:hover { background: rgba(13, 47, 87, .06); color: var(--blue-900); }
    .nav-actions { display: flex; align-items: center; gap: 10px; }
    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border-radius: 999px;
      border: 1px solid rgba(13, 47, 87, .12);
      background: white;
      cursor: pointer;
      align-items: center;
      justify-content: center;
    }
    .menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
      display: block;
      width: 18px;
      height: 2px;
      background: var(--blue-950);
      border-radius: 999px;
      position: relative;
      transition: transform .2s ease, opacity .2s ease;
    }
    .menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; }
    .menu-toggle span::before { top: -6px; }
    .menu-toggle span::after { top: 6px; }
    body.menu-open .menu-toggle span { background: transparent; }
    body.menu-open .menu-toggle span::before { transform: translateY(6px) rotate(45deg); }
    body.menu-open .menu-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

    /* Hero */
    .hero {
      min-height: 100vh;
      padding: 132px 0 72px;
      display: flex;
      align-items: center;
      overflow: hidden;
      background:
        radial-gradient(circle at 10% 20%, rgba(29, 95, 158, .12), transparent 34%),
        radial-gradient(circle at 82% 26%, rgba(32, 180, 91, .09), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(13, 47, 87, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 47, 87, .035) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(180deg, #000 0%, transparent 72%);
    }
    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      align-items: center;
      gap: 52px;
    }
    .hero-copy h1 {
      margin: 18px 0 18px;
      max-width: 680px;
      color: var(--blue-950);
      font-size: clamp(42px, 6.4vw, 78px);
      line-height: .94;
      letter-spacing: -.075em;
    }
    .hero-copy p {
      margin: 0;
      max-width: 620px;
      color: var(--muted);
      font-size: clamp(17px, 1.7vw, 21px);
    }
    .hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
    .trust-row {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
      margin-top: 34px;
      max-width: 690px;
    }
    .trust-item {
      padding: 14px;
      border: 1px solid rgba(13, 47, 87, .10);
      border-radius: 18px;
      background: rgba(255, 255, 255, .76);
      box-shadow: 0 10px 26px rgba(13, 47, 87, .045);
    }
    .trust-item strong { display: block; color: var(--blue-950); font-size: 16px; letter-spacing: -.03em; }
    .trust-item span { display: block; color: var(--muted); font-size: 12px; font-weight: 650; margin-top: 3px; }

    .hero-visual {
      position: relative;
      min-height: 610px;
      perspective: 1200px;
    }
    .visual-glow {
      position: absolute;
      width: 540px;
      height: 540px;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      border-radius: 50%;
      background: radial-gradient(circle, rgba(29, 95, 158, .16), rgba(29, 95, 158, 0) 66%);
      filter: blur(4px);
    }
    .mockup-board {
      position: absolute;
      right: 5%;
      top: 10%;
      width: min(560px, 96%);
      height: 540px;
      border-radius: 42px;
      background: rgba(255, 255, 255, .72);
      border: 1px solid rgba(13, 47, 87, .10);
      box-shadow: var(--shadow-md);
      transform: rotateX(6deg) rotateY(-8deg) rotateZ(1deg);
      backdrop-filter: blur(16px);
      animation: boardFloat 7s ease-in-out infinite;
    }
    @keyframes boardFloat {
      0%, 100% { transform: rotateX(6deg) rotateY(-8deg) rotateZ(1deg) translateY(0); }
      50% { transform: rotateX(4deg) rotateY(-6deg) rotateZ(0deg) translateY(-12px); }
    }
    .product-mockup { position: absolute; filter: drop-shadow(0 22px 26px rgba(11, 31, 55, .14)); transition: transform .35s ease; }
    .product-mockup:hover { transform: translateY(-8px) scale(1.02); }
    .box-mockup {
      width: 210px;
      height: 180px;
      right: 0;
      top: 58px;
      transform: rotate(-5deg);
    }
    .label-roll {
      width: 185px;
      height: 185px;
      left: 44px;
      top: 74px;
      border-radius: 50%;
      transform: rotate(11deg);
    }
    .label-strip {
      width: 250px;
      height: 94px;
      left: 20px;
      bottom: 190px;
      transform: rotate(-8deg);
    }
    .catalog-mockup {
      width: 260px;
      height: 250px;
      right: 25px;
      bottom: 10px;
      transform: rotate(7deg);
      overflow: hidden;
    }
    .catalog-mockup::before {
      position: absolute;
      left: 28px;
      top: 28px;
      color: var(--blue-900);
      font-size: 22px;
      font-weight: 900;
      letter-spacing: -.05em;
    }
    .catalog-mockup::after {
      position: absolute;
      left: 28px;
      bottom: 30px;
      width: 160px;
      height: 10px;
      border-radius: 999px;
      background: #c7d7ea;
      box-shadow: 0 20px 0 #dbe5f1, 0 40px 0 #ecf2f8;
    }
    .banner-mockup {
      width: 180px;
      height: 290px;
      right: 220px;
      top: 198px;
      color: white;
      transform: rotate(4deg);
      overflow: hidden;
    }
    .banner-mockup::after {
      content: "";
      position: absolute;
      left: 20px;
      bottom: 24px;
      width: 86px;
      height: 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.62);
      box-shadow: 0 22px 0 rgba(255,255,255,.36), 0 44px 0 rgba(255,255,255,.22);
    }
    .floating-note {
      position: absolute;
      left: 20px;
      bottom: 36px;
      display: flex;
      align-items: center;
      gap: 12px;
      max-width: 280px;
      padding: 14px 16px;
      border: 1px solid rgba(13, 47, 87, .10);
      border-radius: 22px;
      background: rgba(255,255,255,.88);
      box-shadow: var(--shadow-sm);
      backdrop-filter: blur(14px);
    }
    .floating-note b { display: block; color: var(--blue-950); font-size: 14px; }
    .floating-note span { display: block; color: var(--muted); font-size: 12px; font-weight: 650; }

    /* Logo strip */
    .logo-strip {
      padding: 34px 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: rgba(255,255,255,.72);
      overflow: hidden;
    }
    .logo-strip .container { display: grid; grid-template-columns: 260px 1fr; gap: 30px; align-items: center; }
    .logo-strip p { margin: 0; color: var(--muted); font-weight: 800; font-size: 14px; }
    .logo-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
    .logo-track { display: flex; gap: 18px; width: max-content; animation: marquee 24s linear infinite; }
    @keyframes marquee { to { transform: translateX(-50%); } }
    .client-logo {
      min-width: 150px;
      height: 52px;
      border: 1px solid rgba(13, 47, 87, .10);
      border-radius: 18px;
      display: grid;
      place-items: center;
      color: #9aa4b2;
      background: #fff;
      font-weight: 900;
      letter-spacing: -.04em;
      filter: grayscale(1);
    }

    /* About */
    .about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: stretch; }
    .about-image {
      min-height: 200px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
      background-image: url('./image/sobre-nos.png');
      background-position: center;
      background-size: cover;
      box-shadow: var(--shadow-md);
    }
    .about-image::before {
      content: "";
      position: absolute;
      inset: 24px;
      border-radius: 26px;
      border: 1px solid rgba(255,255,255,.22);
    }
    .press-card {
      position: absolute;
      left: 44px;
      right: 44px;
      bottom: 44px;
      padding: 24px;
      border-radius: 26px;
      background: rgba(255,255,255,.90);
      backdrop-filter: blur(18px);
      box-shadow: 0 22px 50px rgba(0,0,0,.16);
    }
    .press-card small { display: block; color: var(--blue-800); font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
    .press-card strong { display: block; margin-top: 8px; color: var(--blue-950); font-size: 26px; line-height: 1.05; letter-spacing: -.05em; }
    .press-card p { color: var(--muted); margin: 10px 0 0; }
    .about-content { display: flex; flex-direction: column; justify-content: center; }
    .about-content h2 { margin-bottom: 18px; }
    .feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 26px; }
    .feature-card {
      padding: 22px;
      border: 1px solid rgba(13, 47, 87, .10);
      border-radius: 24px;
      background: #fff;
      box-shadow: 0 14px 36px rgba(11, 31, 55, .05);
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
    .feature-icon {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: var(--blue-100);
      color: var(--blue-900);
      margin-bottom: 16px;
    }
    .feature-card h3 { margin: 0 0 8px; color: var(--blue-950); font-size: 18px; letter-spacing: -.035em; }
    .feature-card p { margin: 0; color: var(--muted); font-size: 14px; }

    /* Solutions */
    .solutions-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
    .solution-card {
      position: relative;
      min-height: 430px;
      border-radius: 30px;
      padding: 22px;
      overflow: hidden;
      background: #fff;
      border: 1px solid rgba(13, 47, 87, .10);
      box-shadow: 0 16px 42px rgba(11, 31, 55, .06);
      transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    }
    .solution-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(13,47,87,.18); }
    .solution-art {
      height: 190px;
      border-radius: 24px;
      overflow: hidden;
      background: linear-gradient(135deg, #eaf3ff, #ffffff);
      position: relative;
      margin-bottom: 22px;
    }
    .solution-card h3 { margin: 0 0 10px; color: var(--blue-950); font-size: 23px; letter-spacing: -.045em; }
    .solution-card p { margin: 0; color: var(--muted); font-size: 15px; }
    .solution-card a { margin-top: 20px; color: var(--blue-900); font-weight: 900; display: inline-flex; align-items: center; gap: 8px; }

    /* Segments */
    .segments-layout { display: grid; grid-template-columns: 360px 1fr; gap: 26px; align-items: start; }
    .segment-tabs { display: grid; gap: 10px; position: sticky; top: 104px; }
    .segment-tab {
      text-align: left;
      padding: 17px 18px;
      border-radius: 20px;
      border: 1px solid rgba(13,47,87,.10);
      background: white;
      color: var(--blue-950);
      font-weight: 850;
      cursor: pointer;
      transition: background .2s ease, transform .2s ease, border-color .2s ease;
    }
    .segment-tab:hover { transform: translateX(4px); }
    .segment-tab.active { background: var(--blue-900); color: white; border-color: var(--blue-900); }
    .segment-panel {
      min-height: 520px;
      display: none;
      border-radius: 34px;
      overflow: hidden;
      border: 1px solid rgba(13,47,87,.10);
      background: white;
      box-shadow: var(--shadow-sm);
    }
    .segment-panel.active { display: grid; grid-template-columns: .96fr 1.04fr; }
    .segment-visual {
      position: relative;
      background: linear-gradient(135deg, #0d2f57, #1d5f9e);
      min-height: 100%;
      overflow: hidden;
    }
    .segment-photo-card {
      position: absolute;
      left: 46px;
      right: 46px;
      bottom: 46px;
      min-height: 220px;
      border-radius: 28px;
      background: rgba(255,255,255,.94);
      box-shadow: 0 24px 60px rgba(0,0,0,.18);
      display: grid;
      place-items: center;
      padding: 28px;
      text-align: center;
    }
    .segment-photo-card strong { color: var(--blue-950); font-size: 30px; letter-spacing: -.06em; line-height: 1; }
    .segment-photo-card span { margin-top: 10px; color: var(--muted); font-weight: 700; }
    .segment-content { padding: 46px; display: flex; flex-direction: column; justify-content: center; }
    .segment-content h3 { margin: 0 0 12px; font-size: 36px; color: var(--blue-950); letter-spacing: -.06em; line-height: 1; }
    .segment-content p { margin: 0 0 24px; color: var(--muted); font-size: 17px; }
    .chip-list { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
    .chip { padding: 9px 12px; border-radius: 999px; background: #f1f5f9; color: #344256; font-size: 13px; font-weight: 800; }

    /* Process */
    .process-track { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; position: relative; }
    .process-step {
      position: relative;
      padding: 24px;
      border-radius: 26px;
      background: white;
      border: 1px solid rgba(13,47,87,.10);
      box-shadow: 0 15px 34px rgba(11, 31, 55, .05);
      min-height: 230px;
    }
    .process-number {
      width: 44px; height: 44px;
      border-radius: 15px;
      display: grid; place-items: center;
      background: var(--blue-900); color: white;
      font-weight: 900;
      margin-bottom: 24px;
    }
    .process-step h3 { margin: 0 0 10px; color: var(--blue-950); letter-spacing: -.035em; }
    .process-step p { margin: 0; color: var(--muted); font-size: 14px; }

    /* Differentials */
    .diff-wrap {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 28px;
      align-items: center;
    }
    .diff-visual {
      min-height: 560px;
      border-radius: 36px;
      background:
        radial-gradient(circle at 72% 24%, rgba(32, 180, 91, .24), transparent 28%),
        linear-gradient(145deg, #08390f, #157d1c);
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }
    .diff-visual::before {
      content: "";
      position: absolute;
      inset: 30px;
      border-radius: 30px;
      border: 1px solid rgba(255,255,255,.18);
      background: linear-gradient(135deg, rgba(255,255,255,.13), transparent);
    }
    .diff-badge {
      position: absolute;
      left: 46px;
      bottom: 46px;
      right: 46px;
      padding: 26px;
      border-radius: 28px;
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(14px);
    }
    .diff-badge strong { display: block; color: var(--blue-950); font-size: 34px; line-height: 1; letter-spacing: -.06em; }
    .diff-badge p { margin: 12px 0 0; color: var(--muted); }
    .diff-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .diff-item {
      display: flex;
      gap: 13px;
      padding: 18px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid rgba(13,47,87,.10);
      box-shadow: 0 12px 30px rgba(11,31,55,.05);
    }
    .check {
      flex: 0 0 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(32, 180, 91, .12);
      color: var(--green-dark);
      display: grid;
      place-items: center;
      font-weight: 900;
    }
    .diff-item strong { display: block; color: var(--blue-950); letter-spacing: -.03em; }
    .diff-item span { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; }

    /* Portfolio */
    .filter-row { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin: -12px 0 34px; }
    .filter-btn {
      border: 1px solid rgba(13,47,87,.12);
      background: white;
      color: #334155;
      border-radius: 999px;
      padding: 10px 14px;
      font-size: 13px;
      font-weight: 850;
      cursor: pointer;
      transition: background .2s ease, color .2s ease, border-color .2s ease;
    }
    .filter-btn.active { background: var(--blue-900); color: white; border-color: var(--blue-900); }
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 16px;
    }
    .portfolio-card {
      grid-column: span 4;
      min-height: 310px;
      border-radius: 30px;
      overflow: hidden;
      border: 1px solid rgba(13,47,87,.10);
      background: #fff;
      box-shadow: 0 16px 38px rgba(11,31,55,.06);
      transition: transform .25s ease, opacity .25s ease;
    }
    .portfolio-card.tall { grid-row: span 2; min-height: 460px; }
    .portfolio-card.wide { grid-column: span 8; }
    .portfolio-card.hide { display: none; }
    .portfolio-card:hover { transform: translateY(-6px); }
    .portfolio-img {
      height: 235px;
      background: linear-gradient(135deg, #eef6ff, #fffdf7);
      position: relative;
      overflow: hidden;
    }
    .portfolio-card.tall .portfolio-img { height: 385px; }
    .portfolio-card.wide .portfolio-img { height: 300px; }
    .portfolio-body { padding: 18px 20px 22px; }
    .portfolio-body span { display: block; color: var(--blue-700); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; font-weight: 900; }
    .portfolio-body h3 { margin: 6px 0 0; color: var(--blue-950); font-size: 18px; letter-spacing: -.035em; }

    /* Reviews */
    .reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
    .review-card {
      padding: 24px;
      border-radius: 28px;
      background: #fff;
      border: 1px solid rgba(13,47,87,.10);
      box-shadow: 0 16px 40px rgba(11,31,55,.055);
    }
    .stars { color: #e8a500; letter-spacing: 1px; font-size: 15px; }
    .review-card p { color: #344256; margin: 16px 0 22px; }
    .review-author { display: flex; align-items: center; gap: 12px; }
    .avatar {
      width: 44px; height: 44px; border-radius: 50%;
      display: grid; place-items: center;
      background: var(--blue-100);
      color: var(--blue-900);
      font-weight: 950;
    }
    .review-author strong { display: block; color: var(--blue-950); }
    .review-author span { display: block; color: var(--muted); font-size: 12px; font-weight: 700; }

    /* CTA */
    .cta-box {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      align-items: center;
      gap: 28px;
      padding: 54px;
      border-radius: 38px;
      background:
        radial-gradient(circle at 82% 18%, rgba(32,180,91,.15), transparent 30%),
        linear-gradient(135deg, #f7fbff, #ffffff);
      border: 1px solid rgba(13,47,87,.10);
      box-shadow: var(--shadow-md);
      overflow: hidden;
    }
    .cta-copy h2 { margin: 0 0 14px; color: var(--blue-950); font-size: clamp(31px, 4vw, 54px); line-height: 1; letter-spacing: -.06em; }
    .cta-copy p { margin: 0 0 26px; color: var(--muted); font-size: 18px; }
    .cta-visual {
      min-height: 320px;
      border-radius: 30px;
      background: #0a9e08;
      background: linear-gradient(90deg, rgba(10, 158, 8, 1) 0%, rgba(49, 99, 20, 1) 100%);
      position: relative;
      overflow: hidden;
    }
    .cta-visual::before {
      content: "ORÇAMENTO";
      position: absolute;
      left: 32px;
      top: 34px;
      color: rgba(255,255,255,.92);
      font-size: 42px;
      font-weight: 950;
      letter-spacing: -.08em;
    }
    .cta-visual::after {
      content: "formatos • materiais • acabamentos • prazos";
      position: absolute;
      left: 34px;
      bottom: 34px;
      color: rgba(255,255,255,.72);
      font-weight: 750;
    }

    /* Contact */
    .contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: stretch; }
    .contact-info, .contact-form {
      padding: 30px;
      border-radius: 32px;
      background: white;
      border: 1px solid rgba(13,47,87,.10);
      box-shadow: 0 16px 40px rgba(11,31,55,.055);
    }
    .contact-info h3, .contact-form h3 { margin: 0 0 18px; color: var(--blue-950); font-size: 28px; letter-spacing: -.05em; }
    .info-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
    .info-list li { display: flex; gap: 12px; align-items: flex-start; color: #344256; }
    .info-list b { color: var(--blue-950); display: block; }
    .map-box {
      margin-top: 24px;
      border-radius: 24px;
      overflow: hidden;
      height: 280px;
      background: var(--soft);
      border: 1px solid rgba(13,47,87,.10);
    }
    .map-box iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.25); }
    .form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .field { display: grid; gap: 7px; }
    .field.full { grid-column: 1 / -1; }
    .field label { color: var(--blue-950); font-weight: 800; font-size: 13px; }
    .field input, .field textarea, .field select {
      width: 100%;
      border: 1px solid rgba(13,47,87,.14);
      border-radius: 16px;
      padding: 14px 15px;
      color: var(--ink);
      background: #f9fbfd;
      outline: none;
      transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
    }
    .field textarea { min-height: 126px; resize: vertical; }
    .field input:focus, .field textarea:focus, .field select:focus {
      border-color: rgba(29,95,158,.54);
      background: white;
      box-shadow: 0 0 0 4px rgba(29,95,158,.08);
    }
    .form-note { margin: 14px 0 0; color: var(--muted); font-size: 13px; }

    /* Footer */
    .footer {
      padding: 64px 0 24px;
      background-color: #164a14;
      color: white;
    }
    .footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: 30px; }
    .footer .brand-text strong, .footer h3 { color: white; }
    .footer .brand-text span, .footer p, .footer a, .footer li { color: rgba(255,255,255,.68); }
    .footer h3 { margin: 0 0 16px; font-size: 15px; letter-spacing: -.02em; }
    .footer p { margin: 18px 0 0; max-width: 340px; }
    .footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
    .footer a:hover { color: white; }
    .footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.10); color: rgba(255,255,255,.60); font-size: 13px; }

    /* Floating WhatsApp */
    .floating-whatsapp {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 1001;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 13px 16px;
      border-radius: 999px;
      background: var(--green);
      color: white;
      font-weight: 900;
      box-shadow: 0 18px 46px rgba(32,180,91,.30);
      transition: transform .25s ease, background .25s ease;
    }
    .floating-whatsapp:hover { transform: translateY(-3px); background: var(--green-dark); }
    .wa-icon { width: 20px; height: 20px; fill: currentColor; }

    /* Reveal */
    .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
      .reveal { opacity: 1; transform: none; }
    }

    @media (max-width: 1080px) {
      .main-nav { display: none; }
      .menu-toggle { display: inline-flex; }
      body.menu-open .main-nav {
        display: grid;
        position: fixed;
        left: 20px; right: 20px; top: 74px;
        padding: 16px;
        background: rgba(255,255,255,.96);
        border: 1px solid rgba(13,47,87,.10);
        border-radius: 24px;
        box-shadow: var(--shadow-md);
        backdrop-filter: blur(18px);
      }
      body.menu-open .main-nav a { padding: 14px; }
      .hero-grid, .about-grid, .diff-wrap, .contact-grid, .cta-box { grid-template-columns: 1fr; }
      .hero { padding-top: 120px; }
      .hero-visual { min-height: 560px; }
      .trust-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .solutions-grid, .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .segments-layout { grid-template-columns: 1fr; }
      .segment-tabs { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .process-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .logo-strip .container { grid-template-columns: 1fr; }
    }

    @media (max-width: 760px) {
      .container { width: min(100% - 28px, var(--max)); }
      .section { padding: 72px 0; }
      .nav-actions .btn { display: none; }
      .brand-text span { display: none; }
      .hero-copy h1 { font-size: 44px; }
      .hero-visual { min-height: 470px; margin-inline: -24px; transform: scale(.86); transform-origin: top center; }
      .mockup-board { right: 0; left: 0; margin: auto; width: 94%; }
      .trust-row, .feature-grid, .solutions-grid, .reviews-grid, .diff-list, .form-grid, .process-track, .footer-grid { grid-template-columns: 1fr; }
      .segment-tabs { grid-template-columns: 1fr; }
      .segment-panel.active { grid-template-columns: 1fr; }
      .segment-visual { min-height: 320px; }
      .segment-content { padding: 28px; }
      .portfolio-card, .portfolio-card.wide, .portfolio-card.tall { grid-column: 1 / -1; min-height: auto; }
      .portfolio-img, .portfolio-card.tall .portfolio-img, .portfolio-card.wide .portfolio-img { height: 260px; }
      .cta-box { padding: 30px; }
      .floating-whatsapp { left: 18px; right: 18px; justify-content: center; bottom: 16px; }
      .footer-bottom { flex-direction: column; padding-bottom: 56px; }
    }