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

    :root {
      --black: #000000;
      --surface: #181818;
      --surface2: #141414;
      --border: #080808;
      --gold: oklch(72% 0.12 48);
      --gold-dim: oklch(55% 0.09 48);
      --silver: #a8a8b8;
      --white: #f2efe9;
      --text: #d4d0c8;
      --muted: #7a7880;
      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body: 'Barlow', sans-serif;
      --font-cond: 'Barlow Condensed', sans-serif;
      --font-number: 'Playfair Display', Georgia, serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--black);
      color: var(--text);
      font-family: var(--font-body);
      font-weight: 300;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 4rem;
      height: 80px;
      background: rgba(9, 9, 11, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s;
    }

    nav.scrolled {
      border-bottom-color: var(--border);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
    }

    .nav-logo img {
      height: 52px;
      width: auto;
      object-fit: contain;
    }

    .nav-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }

    .nav-logo-text strong {
      font-family: var(--font-cond);
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: var(--white);
    }

    .nav-logo-text span {
      font-family: var(--font-cond);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.3em;
      color: var(--silver);
      text-transform: uppercase;
      margin-top: 2px;
    }

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

    .nav-links a {
      font-family: var(--font-cond);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--silver);
      text-decoration: none;
      transition: color 0.2s;
    }

    .nav-links a:hover {
      color: var(--white);
    }

    .btn-nav {
      background: var(--gold);
      color: #000;
      font-family: var(--font-cond);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 10px 24px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: opacity 0.2s, transform 0.2s;
      display: inline-block;
    }

    .btn-nav:hover {
      opacity: 0.85;
      transform: translateY(-1px);
    }

    /* HERO */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 120px 4rem 80px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-bg-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 40%;
      filter: brightness(0.68) saturate(1.05);
      image-rendering: auto;
      transform: scale(1.02);
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.15) 100%),
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(180, 140, 60, 0.08) 0%, transparent 60%);
      z-index: 1;
    }

    /* House illustration SVG - hidden when bg image loads */
    .hero-visual {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 52%;
      height: 100%;
      z-index: 1;
      display: none;
    }

    .house-illustration {
      width: 100%;
      height: 80%;
      position: relative;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 560px;
    }

    .hero-eyebrow {
      font-family: var(--font-cond);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--gold);
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(48px, 5.5vw, 76px);
      font-weight: 300;
      line-height: 1.08;
      color: var(--white);
      margin-bottom: 28px;
      letter-spacing: -0.01em;
    }

    .hero-title em {
      font-style: italic;
      color: var(--gold);
    }

    .hero-sub {
      font-size: 16px;
      font-weight: 300;
      color: var(--silver);
      line-height: 1.7;
      margin-bottom: 48px;
      max-width: 420px;
    }

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

    .btn-primary {
      background: var(--gold);
      color: #000;
      font-family: var(--font-cond);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 16px 36px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: opacity 0.2s, transform 0.2s;
    }

    .btn-primary:hover {
      opacity: 0.85;
      transform: translateY(-2px);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      font-family: var(--font-cond);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 15px 36px;
      border: 1px solid var(--border);
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: border-color 0.2s, color 0.2s;
    }

    .btn-outline:hover {
      border-color: var(--silver);
      color: var(--white);
    }

    .hero-stats {
      display: flex;
      gap: 48px;
      margin-top: 64px;
      padding-top: 40px;
      border-top: 1px solid var(--border);
    }

    .stat-item {}

    .stat-num {
      font-family: var(--font-number);
      font-size: 38px;
      font-weight: 400;
      color: var(--white);
      line-height: 1;
    }

    .stat-num span {
      color: var(--gold);
    }

    .stat-label {
      font-family: var(--font-cond);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 6px;
    }

    /* SECTIONS GENERIC */
    section {
      padding: 100px 4rem;
    }

    .section-eyebrow {
      font-family: var(--font-cond);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .section-eyebrow::before {
      content: '';
      display: block;
      width: 24px;
      height: 1px;
      background: var(--gold);
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(36px, 4vw, 56px);
      font-weight: 300;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 24px;
    }

    .section-title em {
      font-style: italic;
      color: var(--gold);
    }

    .section-sub {
      font-size: 16px;
      font-weight: 300;
      color: var(--silver);
      line-height: 1.7;
      max-width: 520px;
    }

    /* SOBRE */
    #sobre {
      background: var(--surface);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      padding-bottom: 120px;
    }

    .sobre-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-self: center;
      min-height: 690px;
    }

    .sobre-img-main {
      width: 90%;
      max-width: 520px;
      aspect-ratio: 4/5;
      background: var(--surface2);
      border: 1px solid var(--border);
      position: relative;
      overflow: visible;
    }

    .sobre-img-main-wrap {
      width: 100%;
      height: 100%;
      overflow: hidden;
      position: absolute;
      inset: 0;
    }

    .sobre-img-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      image-rendering: auto;
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .sobre-img-accent img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      image-rendering: auto;
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .sobre-img-main-wrap:hover img {
      transform: scale(1.05);
    }

    .sobre-img-accent:hover img {
      transform: scale(1.05);
    }

    .sobre-img-accent {
      position: absolute;
      bottom: -10%;
      right: -10%;
      width: 58%;
      aspect-ratio: 3/4;
      background: var(--surface2);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      z-index: 2;
    }

    .img-label {
      font-family: var(--font-cond);
      font-size: 11px;
      letter-spacing: 0.15em;
      color: var(--muted);
      text-transform: uppercase;
      text-align: center;
      padding: 16px;
    }

    .gold-badge {
      position: absolute;
      top: -24px;
      right: -24px;
      width: 100px;
      height: 100px;
      background: var(--gold);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 3;
    }

    .gold-badge .num {
      font-family: var(--font-number);
      font-size: 28px;
      font-weight: 600;
      color: #000;
      line-height: 1;
    }

    .gold-badge .lbl {
      font-family: var(--font-cond);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(0, 0, 0, 0.7);
      text-align: center;
      margin-top: 4px;
    }

    .sobre-content {}

    .sobre-text {
      margin: 24px 0 40px;
    }

    .sobre-text p {
      font-size: 16px;
      font-weight: 300;
      color: var(--silver);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .valores-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      border: 1px solid var(--border);
      margin-top: 40px;
    }

    .valor-item {
      padding: 24px;
      background: var(--black);
      border: 1px solid var(--border);
    }

    .valor-icon {
      width: 36px;
      height: 36px;
      margin-bottom: 12px;
      color: var(--gold);
    }

    .valor-title {
      font-family: var(--font-cond);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 6px;
    }

    .valor-text {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.5;
    }

    /* SERVIÇOS */
    #servicos {
      background: var(--surface);
    }

    .servicos-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 64px;
    }

    .servicos-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
    }

    .servico-card {
      background: var(--black);
      padding: 48px 36px;
      position: relative;
      overflow: hidden;
      cursor: default;
      transition: background 0.3s;
    }

    .servico-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .servico-card:hover {
      background: var(--surface2);
    }

    .servico-card:hover::before {
      transform: scaleX(1);
    }

    .servico-num {
      font-family: var(--font-number);
      font-size: 44px;
      font-weight: 400;
      color: rgba(180, 140, 60, 0.6);
      line-height: 1;
      margin-bottom: 24px;
      transition: color 0.3s;
    }

    .servico-card:hover .servico-num {
      color: var(--gold);
    }

    .servico-icon {
      width: 48px;
      height: 48px;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .servico-title {
      font-family: var(--font-display);
      font-size: 24px;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 14px;
      line-height: 1.2;
    }

    .servico-text {
      font-size: 14px;
      color: var(--silver);
      line-height: 1.7;
      margin-bottom: 24px;
    }

    .servico-items {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .servico-items li {
      font-family: var(--font-cond);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.08em;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .servico-items li::before {
      content: '';
      display: block;
      width: 16px;
      height: 1px;
      background: var(--gold-dim);
      flex-shrink: 0;
    }

    /* DIFERENCIAIS */
    #diferenciais {
      background: var(--black);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }

    .dif-content {
      padding: 100px 60px 100px 0;
      border-right: 1px solid var(--border);
    }

    .dif-content .section-sub {
      margin-bottom: 40px;
    }

    .dif-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-top: 40px;
    }

    .dif-item {
      display: flex;
      gap: 24px;
      padding: 28px 0;
      border-bottom: 1px solid var(--border);
    }

    .dif-item:first-child {
      border-top: 1px solid var(--border);
    }

    .dif-item-num {
      font-family: var(--font-cond);
      font-size: 12px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.1em;
      min-width: 32px;
      padding-top: 3px;
    }

    .dif-item-body {}

    .dif-item-title {
      font-family: var(--font-cond);
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 6px;
    }

    .dif-item-text {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6;
    }

    .dif-visual {
      padding: 100px 0 100px 60px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .dif-stat-card {
      background: var(--surface);
      border: 1px solid var(--border);
      padding: 32px 36px;
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .dif-stat-icon {
      width: 40px;
      height: 40px;
      color: var(--gold);
      flex-shrink: 0;
    }

    .dif-stat-num {
      font-family: var(--font-number);
      font-size: 36px;
      font-weight: 400;
      color: var(--white);
      line-height: 1;
    }

    .dif-stat-num span {
      color: var(--gold);
    }

    .dif-stat-label {
      font-family: var(--font-cond);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 4px;
    }

    /* PROCESSO */
    #processo {
      background: var(--surface);
    }

    .processo-header {
      margin-bottom: 64px;
    }

    .processo-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }

    .processo-steps::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--border);
      z-index: 0;
    }

    .step-card {
      padding: 0 32px 0 0;
      position: relative;
      z-index: 1;
    }

    .step-card:first-child {
      padding-left: 0;
    }

    .step-dot {
      width: 80px;
      height: 80px;
      border: 1px solid var(--border);
      background: var(--black);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 28px;
      position: relative;
      transition: border-color 0.3s, background 0.3s;
    }

    .step-dot:hover {
      border-color: var(--gold);
      background: var(--surface2);
    }

    .step-num {
      font-family: var(--font-number);
      font-size: 24px;
      font-weight: 400;
      color: var(--gold);
    }

    .step-title {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .step-text {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.7;
    }

    /* PROJETOS */
    #projetos {
      background: var(--black);
    }

    .projetos-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 48px;
    }

    .projetos-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
      gap: 1px;
      background: var(--border);
    }

    .projeto-card {
      background: var(--surface2);
      aspect-ratio: 4/3;
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .projeto-card.featured {
      grid-column: span 2;
      aspect-ratio: 16/9;
    }

    @media (min-width: 1025px) {
      .projetos-grid .projeto-card:nth-child(2) {
        aspect-ratio: auto;
        height: 100%;
      }
    }

    .projeto-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      image-rendering: auto;
      transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s ease-in-out;
    }

    .projeto-card:hover img {
      transform: scale(1.08);
    }

    /* CARD NAVIGATION ARROWS */
    .card-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      background: rgba(9, 9, 11, 0.75);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }

    .card-nav.card-prev {
      left: 20px;
    }

    .card-nav.card-next {
      right: 20px;
    }

    @media (hover: hover) {
      .projeto-card:hover .card-nav {
        opacity: 1;
        pointer-events: auto;
      }
    }

    .card-nav.card-prev:hover {
      background: rgba(9, 9, 11, 0.9);
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-50%) scale(1.1);
    }

    .card-nav.card-next:hover {
      background: rgba(9, 9, 11, 0.9);
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-50%) scale(1.1);
    }

    .card-nav svg {
      width: 20px;
      height: 20px;
    }

    .projeto-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    /* House SVG placeholders per card */
    .ph-house {
      color: var(--border);
    }

    .projeto-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(9, 9, 11, 0.95) 0%, rgba(9, 9, 11, 0.3) 50%, transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 28px;
      opacity: 0;
      transition: opacity 0.35s;
    }

    .projeto-card:hover .projeto-overlay {
      opacity: 1;
    }

    .projeto-card.featured .projeto-overlay {
      opacity: 1;
    }

    .proj-tag {
      font-family: var(--font-cond);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }

    .proj-name {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 400;
      color: var(--white);
      line-height: 1.2;
    }

    .proj-meta {
      font-family: var(--font-cond);
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 0.1em;
      margin-top: 8px;
    }

    .proj-gallery-hint {
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: var(--font-cond);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--white);
      margin-top: 12px;
      opacity: 0.7;
    }

    .proj-gallery-hint svg {
      width: 14px;
      height: 14px;
    }

    /* LIGHTBOX */
    .lightbox-overlay {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(0, 0, 0, 0.97);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .lightbox-overlay.active {
      opacity: 1;
      pointer-events: all;
    }

    .lightbox-content {
      position: relative;
      width: 90vw;
      max-width: 1200px;
      height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lightbox-img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      border: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
      transition: opacity 0.3s ease;
      image-rendering: auto;
    }

    .lightbox-close {
      position: absolute;
      top: -50px;
      right: 0;
      background: none;
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: var(--white);
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 20px;
      transition: border-color 0.2s, background 0.2s;
    }

    .lightbox-close:hover {
      border-color: var(--gold);
      background: rgba(255, 255, 255, 0.05);
    }

    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--white);
      width: 52px;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 22px;
      transition: border-color 0.2s, background 0.2s;
    }

    .lightbox-nav:hover {
      border-color: var(--gold);
      background: rgba(255, 255, 255, 0.08);
    }

    .lightbox-prev {
      left: -70px;
    }

    .lightbox-next {
      right: -70px;
    }

    .lightbox-counter {
      position: absolute;
      bottom: -44px;
      left: 50%;
      transform: translateX(-50%);
      font-family: var(--font-cond);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.2em;
      color: var(--muted);
      text-transform: uppercase;
    }

    .lightbox-title {
      position: absolute;
      bottom: -44px;
      left: 0;
      font-family: var(--font-display);
      font-size: 18px;
      color: var(--white);
    }

    @media (max-width: 1024px) {
      .lightbox-prev {
        left: 10px;
      }

      .lightbox-next {
        right: 10px;
      }

      .lightbox-nav {
        width: 42px;
        height: 42px;
        background: rgba(0, 0, 0, 0.8);
      }
    }

    /* DEPOIMENTOS */
    #depoimentos {
      background: var(--black);
    }

    .dep-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      margin-top: 56px;
    }

    .dep-card {
      background: var(--black);
      padding: 40px 36px;
      border-top: 2px solid transparent;
      transition: border-color 0.3s, background 0.3s;
    }

    .dep-card:hover {
      border-top-color: var(--gold);
      background: var(--surface2);
    }

    .dep-quote {
      font-family: var(--font-display);
      font-size: 64px;
      line-height: 0.5;
      color: var(--gold);
      margin-bottom: 20px;
      opacity: 0.5;
    }

    .dep-text {
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 300;
      font-style: italic;
      color: var(--silver);
      line-height: 1.7;
      margin-bottom: 28px;
    }

    .dep-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .dep-avatar {
      width: 44px;
      height: 44px;
      background: var(--surface2);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-cond);
      font-size: 14px;
      font-weight: 600;
      color: var(--gold);
      flex-shrink: 0;
    }

    .dep-name {
      font-family: var(--font-cond);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.08em;
      color: var(--white);
    }

    .dep-city {
      font-size: 12px;
      color: var(--muted);
      margin-top: 2px;
    }

    .dep-stars {
      display: flex;
      gap: 3px;
      margin-top: 4px;
    }

    .dep-stars span {
      color: var(--gold);
      font-size: 12px;
    }

    /* CTA BAND */
    #cta {
      background: var(--gold);
      padding: 80px 4rem;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 48px;
    }

    .cta-title {
      font-family: var(--font-display);
      font-size: clamp(28px, 3.5vw, 48px);
      font-weight: 300;
      color: #000;
      line-height: 1.1;
    }

    .cta-title em {
      font-style: italic;
    }

    .cta-sub {
      font-size: 15px;
      color: rgba(0, 0, 0, 0.6);
      margin-top: 12px;
    }

    .btn-dark {
      background: #000;
      color: var(--white);
      font-family: var(--font-cond);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 18px 40px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      white-space: nowrap;
      transition: opacity 0.2s;
    }

    .btn-dark:hover {
      opacity: 0.8;
    }

    /* CONTATO */
    #contato {
      background: var(--surface);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
    }

    .contato-info {}

    .contato-info .section-sub {
      margin-bottom: 48px;
    }

    .contact-items {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      padding: 24px 0;
      border-bottom: 1px solid var(--border);
    }

    .contact-item:first-child {
      border-top: 1px solid var(--border);
    }

    .contact-icon {
      width: 20px;
      height: 20px;
      color: var(--gold);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .contact-label {
      font-family: var(--font-cond);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 4px;
    }

    .contact-value {
      font-size: 15px;
      color: var(--white);
    }

    .contato-form {}

    .form-group {
      margin-bottom: 20px;
    }

    .form-label {
      font-family: var(--font-cond);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      display: block;
      margin-bottom: 8px;
    }

    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      background: var(--black);
      border: 1px solid var(--border);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 300;
      padding: 14px 18px;
      outline: none;
      transition: border-color 0.2s;
      appearance: none;
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      border-color: var(--gold);
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
      color: var(--muted);
    }

    .form-textarea {
      resize: vertical;
      min-height: 120px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-submit {
      background: var(--gold);
      color: #000;
      font-family: var(--font-cond);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 16px 36px;
      border: none;
      cursor: pointer;
      width: 100%;
      transition: opacity 0.2s;
      margin-top: 8px;
    }

    .form-submit:hover {
      opacity: 0.85;
    }

    .form-success {
      background: var(--surface2);
      border: 1px solid var(--gold);
      padding: 24px;
      text-align: center;
      display: none;
    }

    .form-success.visible {
      display: block;
    }

    .form-success p {
      font-family: var(--font-display);
      font-size: 20px;
      color: var(--gold);
      margin-bottom: 8px;
    }

    .form-success small {
      color: var(--muted);
      font-size: 13px;
    }

    /* FOOTER */
    footer {
      background: var(--black);
      border-top: 1px solid var(--border);
      padding: 48px 4rem 32px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid var(--border);
    }

    .footer-brand img {
      height: 56px;
      margin-bottom: 16px;
    }

    .footer-brand p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 280px;
      margin-bottom: 20px;
    }

    .footer-col-title {
      font-family: var(--font-cond);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }

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

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

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

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-copy {
      font-size: 12px;
      color: var(--muted);
    }

    .footer-legal {
      display: flex;
      gap: 24px;
    }

    .footer-legal a {
      font-size: 12px;
      color: var(--muted);
      text-decoration: none;
    }

    .footer-legal a:hover {
      color: var(--silver);
    }

    /* WHATSAPP FAB */
    .whatsapp-fab {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 200;
      width: 56px;
      height: 56px;
      background: #01c501;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 8px 24px rgba(1, 197, 1, 0.35);
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    }

    .whatsapp-fab:hover {
      transform: scale(1.08) translateY(-3px);
      box-shadow: 0 12px 30px rgba(1, 197, 1, 0.5);
    }

    .whatsapp-fab img {
      width: 100%;
      height: 100%;
      display: block;
      border-radius: 50%;
    }

    /* IMAGE RENDERING QUALITY */
    .projeto-card img,
    .sobre-img-main img,
    .sobre-img-accent img {
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
    }

    /* FADE IN */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fade-up.d1 {
      transition-delay: 0.1s;
    }

    .fade-up.d2 {
      transition-delay: 0.2s;
    }

    .fade-up.d3 {
      transition-delay: 0.3s;
    }

    .fade-up.d4 {
      transition-delay: 0.4s;
    }

    /* MOBILE NAV */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
    }

    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      transition: all 0.3s;
    }

    @media (max-width: 1024px) {
      nav {
        padding: 0 2rem;
      }

      .nav-links {
        display: none;
      }

      .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #09090b;
        padding: 24px 2rem;
        gap: 20px;
        border-bottom: 1px solid #2a2a30;
      }

      .btn-nav {
        display: none;
      }

      .nav-hamburger {
        display: flex;
      }

      section {
        padding: 72px 2rem;
      }

      #hero {
        padding: 120px 2rem 72px;
      }

      #sobre,
      #contato,
      #diferenciais {
        grid-template-columns: 1fr;
      }

      .sobre-visual {
        margin-bottom: 56px;
        justify-content: center;
        min-height: auto;
      }

      .hero-visual {
        display: none;
      }

      .hero-content {
        max-width: 100%;
      }

      #cta {
        grid-template-columns: 1fr;
      }

      .servicos-grid {
        grid-template-columns: 1fr 1fr;
      }

      .dep-grid {
        grid-template-columns: 1fr 1fr;
      }

      .processo-steps {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }

      .processo-steps::before {
        display: none;
      }

      .projetos-grid {
        grid-template-columns: 1fr 1fr;
      }

      .projeto-card.featured {
        grid-column: span 2;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }

      .dif-content {
        padding: 72px 0;
        border-right: none;
        border-bottom: 1px solid var(--border);
      }

      .dif-visual {
        padding: 72px 0;
      }

      .servicos-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }

      .projetos-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }
    }

    @media (max-width: 640px) {
      nav {
        padding: 0 1.5rem;
      }

      .nav-links.active {
        padding: 24px 1.5rem;
      }

      section {
        padding: 56px 1.5rem;
      }

      #hero {
        padding: 100px 1.5rem 56px;
      }

      .hero-stats {
        gap: 32px;
        flex-wrap: wrap;
      }

      .servicos-grid,
      .dep-grid,
      .processo-steps,
      .projetos-grid {
        grid-template-columns: 1fr;
      }

      .projeto-card.featured {
        grid-column: span 1;
      }

      .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      #cta {
        padding: 56px 1.5rem;
      }

      .valores-grid {
        grid-template-columns: 1fr;
      }
    }

    /* PRIVACY MODAL */
    .privacy-modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 9998;
      background: rgba(9, 9, 11, 0.96);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
      padding: 1.5rem;
    }

    .privacy-modal-overlay.active {
      opacity: 1;
      pointer-events: all;
    }

    .privacy-modal {
      background: #111114;
      border: 1px solid #2a2a30;
      max-width: 780px;
      width: 100%;
      max-height: 88vh;
      display: flex;
      flex-direction: column;
      transform: translateY(24px);
      transition: transform 0.35s ease;
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
    }

    .privacy-modal-overlay.active .privacy-modal {
      transform: translateY(0);
    }

    .privacy-modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 32px;
      border-bottom: 1px solid #2a2a30;
      flex-shrink: 0;
    }

    .privacy-modal-header img {
      height: 44px;
      width: auto;
      object-fit: contain;
    }

    .privacy-modal-close {
      background: none;
      border: 1px solid #2a2a30;
      color: #a8a8b8;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 20px;
      transition: border-color 0.2s, color 0.2s;
      flex-shrink: 0;
    }

    .privacy-modal-close:hover {
      border-color: oklch(72% 0.12 48);
      color: #f2efe9;
    }

    .privacy-modal-body {
      overflow-y: auto;
      padding: 36px 32px 48px;
      scrollbar-width: thin;
      scrollbar-color: #2a2a30 transparent;
    }

    .privacy-modal-body::-webkit-scrollbar {
      width: 5px;
    }

    .privacy-modal-body::-webkit-scrollbar-track {
      background: transparent;
    }

    .privacy-modal-body::-webkit-scrollbar-thumb {
      background: #2a2a30;
      border-radius: 4px;
    }

    .privacy-modal-body h1 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 600;
      color: #e9e9ec;
      margin-bottom: 6px;
      line-height: 1.15;
    }

    .privacy-modal-body .updated {
      font-size: 0.85rem;
      color: rgba(233, 233, 236, 0.55);
      font-style: italic;
      margin-bottom: 36px;
      display: block;
    }

    .privacy-modal-body h2 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 1.35rem;
      font-weight: 600;
      color: oklch(72% 0.12 48);
      margin-top: 32px;
      margin-bottom: 10px;
    }

    .privacy-modal-body p {
      font-size: 0.95rem;
      color: rgba(233, 233, 236, 0.82);
      line-height: 1.75;
      margin-bottom: 14px;
    }

    .privacy-modal-body ul {
      padding-left: 1.4rem;
      margin-bottom: 14px;
    }

    .privacy-modal-body li {
      font-size: 0.95rem;
      color: rgba(233, 233, 236, 0.82);
      line-height: 1.7;
      margin-bottom: 6px;
    }

    .privacy-modal-body strong {
      color: #e9e9ec;
      font-weight: 600;
    }

    .privacy-modal-body a {
      color: oklch(72% 0.12 48);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .privacy-modal-body .placeholder {
      background: rgba(201, 163, 106, 0.12);
      border-left: 2px solid oklch(72% 0.12 48);
      padding: 2px 10px;
      font-style: italic;
      color: oklch(72% 0.12 48);
    }

    @media (max-width: 640px) {

      .privacy-modal-header,
      .privacy-modal-body {
        padding-left: 20px;
        padding-right: 20px;
      }
    }