/* ==========================================================================
   ATELIER MONVERT — Folha de estilo principal
   Convertido de Next.js/Tailwind para CSS puro
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens de design
   -------------------------------------------------------------------------- */
   :root {
    /* ======================================================================
       PALETA DA MARCA — Marcos Nascimento
       Extraida da identidade visual (logo verde oliva + simbolo marrom) e
       das referencias de layout escura/clara.

       Verde oliva  #4C4936  (institucional, estrutura)
       Verde musgo  #414C3B  (secoes de apoio)
       Terracota    #8A5635  (acento / cobre)
       Camelo       #A17D63  (acento claro / madeira)
       Creme        #F8EFE6  (fundo claro / texto sobre escuro)
       ====================================================================== */

    /* --- Cores brutas da marca (invariantes entre os temas) --- */
    --brand-olive: #4c4936;
    --brand-olive-deep: #322e22;
    --brand-moss: #414c3b;
    --brand-moss-deep: #333e2d;
    --brand-terracotta: #8a5635;
    --brand-camel: #a17d63;
    --brand-cream: #f8efe6;
    --brand-sand: #d9c9b6;

    /* --- Tema ESCURO (padrao) --- */
    color-scheme: dark;

    --background: #2c2c20; /* verde oliva profundo */
    --foreground: #f2ebe1; /* creme */
    --card: #201f17; /* oliva elevado */
    --card-foreground: #f2ebe1;
    --muted: #322e22;
    --muted-foreground: #b3ab97; /* creme dessaturado */
    --accent: #a1663f; /* terracota luminoso (contraste AA sobre o fundo) */
    --accent-foreground: #22200f;
    --stone: #d9c9b6; /* areia */
    --surface-alt: #4c4936; /* faixas em oliva */
    --surface-alt-foreground: #f2ebe1;
    --surface-brand: #8a5635; /* blocos terracota do hero */
    --surface-brand-foreground: #f8efe6;
    --border: rgba(242, 235, 225, 0.14);
    --border-soft: rgba(242, 235, 225, 0.08);
    --overlay: 34, 32, 22;
    --shadow-color: 0, 0, 0;

    /* Vidro / vinhetas / realces derivados */
    --glass: rgba(58, 55, 41, 0.42);
    --glass-strong: rgba(34, 32, 22, 0.94);
    --scrim: rgba(34, 32, 22, 0.35);
    --scrim-strong: rgba(34, 32, 22, 0.62);
    --accent-tint: rgba(161, 102, 63, 0.14);
    --accent-tint-strong: rgba(161, 102, 63, 0.26);
    --stone-tint: rgba(217, 201, 182, 0.2);
    --on-media: #f8efe6;

    /* Tipografia */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;

    /* Layout */
    --max-width: 1600px;
    --gutter: 1.5rem;
    --gutter-lg: 3rem;
  }

  /* --- Tema CLARO --- */
  :root[data-theme='light'] {
    color-scheme: light;

    --background: #f8efe6; /* creme */
    --foreground: #2f2c20; /* oliva quase preto */
    --card: #f2e9e0;
    --card-foreground: #2f2c20;
    --muted: #ece2d6;
    --muted-foreground: #6f6a56; /* oliva dessaturado */
    --accent: #8a5635; /* terracota */
    --accent-foreground: #f8efe6;
    --stone: #4c4936; /* no claro o "stone" vira oliva p/ contorno legivel */
    --surface-alt: #414c3b; /* secoes verde escuro */
    --surface-alt-foreground: #f8efe6;
    --surface-brand: #a17d63; /* blocos camelo do hero */
    --surface-brand-foreground: #f8efe6;
    --border: rgba(47, 44, 32, 0.16);
    --border-soft: rgba(47, 44, 32, 0.1);
    --overlay: 47, 44, 32;
    --shadow-color: 76, 73, 54;

    --glass: rgba(248, 239, 230, 0.72);
    --glass-strong: rgba(248, 239, 230, 0.96);
    --scrim: rgba(47, 44, 32, 0.28);
    --scrim-strong: rgba(47, 44, 32, 0.55);
    --accent-tint: rgba(138, 86, 53, 0.12);
    --accent-tint-strong: rgba(138, 86, 53, 0.2);
    --stone-tint: rgba(76, 73, 54, 0.12);
    --on-media: #f8efe6;
  }
  
  /* --------------------------------------------------------------------------
     2. Reset e base
     -------------------------------------------------------------------------- */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    border-color: var(--border);
  }
  
  * {
    margin: 0;
    padding: 0;
  }
  
  html {
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  /* --- Lenis (scroll suave): CSS obrigatorio --------------------------------
     Sem estas regras o scroll do mouse trava/luta com o scroll nativo. */
  html.lenis,
  html.lenis body {
    height: auto;
  }
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  /* elementos com rolagem propria (modal, menu, carrossel) */
  [data-lenis-prevent] {
    -webkit-overflow-scrolling: touch;
  }
  
  body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  img,
  picture,
  canvas,
  svg {
    display: block;
    max-width: 100%;
  }
  
  button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  ul,
  ol {
    list-style: none;
  }
  
  ::selection {
    background: var(--accent);
    color: var(--accent-foreground);
  }
  
  .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;
  }
  
  /* --------------------------------------------------------------------------
     3. Utilitários compartilhados
     -------------------------------------------------------------------------- */
  .shell {
    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: var(--gutter);
  }
  
  .section {
    position: relative;
    padding-block: 6rem;
  }

  /* --------------------------------------------------------------------------
     Superficies da marca
     Recolorem um bloco inteiro redefinindo os tokens locais, de modo que todo
     texto, borda e botao interno herdam o contraste correto automaticamente.
     -------------------------------------------------------------------------- */
  .surface-olive,
  .surface-terracotta {
    position: relative;
    isolation: isolate;
  }

  .surface-olive {
    background-color: var(--surface-alt);
    --background: var(--surface-alt);
    --foreground: var(--surface-alt-foreground);
    --card: color-mix(in oklab, var(--surface-alt) 82%, #000);
    --card-foreground: var(--surface-alt-foreground);
    --muted-foreground: color-mix(in oklab, var(--surface-alt-foreground) 72%, transparent);
    --accent: var(--brand-camel);
    --accent-foreground: #241a10;
    --stone: var(--brand-sand);
    --border: color-mix(in oklab, var(--surface-alt-foreground) 20%, transparent);
    --border-soft: color-mix(in oklab, var(--surface-alt-foreground) 12%, transparent);
    color: var(--surface-alt-foreground);
  }

  .surface-terracotta {
    background-color: var(--surface-brand);
    --background: var(--surface-brand);
    --foreground: var(--surface-brand-foreground);
    --card: color-mix(in oklab, var(--surface-brand) 84%, #000);
    --card-foreground: var(--surface-brand-foreground);
    --muted-foreground: color-mix(in oklab, var(--surface-brand-foreground) 76%, transparent);
    --accent: var(--brand-cream);
    --accent-foreground: #4a2c17;
    --stone: var(--brand-cream);
    --border: color-mix(in oklab, var(--surface-brand-foreground) 26%, transparent);
    --border-soft: color-mix(in oklab, var(--surface-brand-foreground) 14%, transparent);
    color: var(--surface-brand-foreground);
  }
  
  .eyebrow {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.7rem;
    line-height: 1.4;
    color: var(--muted-foreground);
  }
  
  .display {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.01em;
  }
  
  .serif {
    font-family: var(--font-serif);
    font-weight: 300;
  }
  
  .balance {
    text-wrap: balance;
  }
  
  .pretty {
    text-wrap: pretty;
  }
  
  .glass {
    background: var(--glass);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid var(--border-soft);
  }
  
  .no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .no-scrollbar::-webkit-scrollbar {
    display: none;
  }
  
  .hairline {
    border-top: 1px solid var(--border);
  }
  
  /* Botão em pílula com contorno */
  .pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: 1px solid color-mix(in oklab, var(--stone) 40%, transparent);
    border-radius: 999px;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--foreground);
    overflow: hidden;
    transition: border-color 0.5s ease;
    isolation: isolate;
  }
  .pill::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 999px;
    background: var(--accent-tint);
    transform: scale(0);
    transition: transform 0.5s ease;
  }
  .pill:hover {
    border-color: var(--accent);
  }
  .pill:hover::before {
    transform: scale(1);
  }
  .pill .arrow {
    display: inline-block;
    transition: transform 0.5s ease;
  }
  .pill:hover .arrow {
    transform: translateX(4px);
  }
  
  /* Rótulo em cápsula de vidro */
  .chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 999px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--stone);
  }
  .chip .dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 999px;
    background: var(--accent);
  }
  .chip.is-muted {
    color: var(--muted-foreground);
  }
  .chip.is-muted .dot {
    background: var(--muted-foreground);
  }
  
  /* --------------------------------------------------------------------------
     4. Grão de filme e cursor
     -------------------------------------------------------------------------- */
  .grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 90;
    pointer-events: none;
    opacity: 0.05;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: grain 0.6s steps(2) infinite;
  }
  
  @keyframes grain {
    0%,
    100% {
      transform: translate(0, 0);
    }
    25% {
      transform: translate(-2%, 1%);
    }
    50% {
      transform: translate(1%, -2%);
    }
    75% {
      transform: translate(-1%, 2%);
    }
  }
  
  .cursor-layer {
    position: fixed;
    inset: 0;
    z-index: 100;
    pointer-events: none;
    display: none;
  }
  
  .cursor-dot,
  .cursor-ring {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    will-change: transform;
  }
  
  .cursor-dot {
    width: 0.375rem;
    height: 0.375rem;
    margin: -3px 0 0 -3px;
    border-radius: 999px;
    background: var(--stone);
    transition: opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  }
  .cursor-dot[data-boost='true'] {
    background: var(--accent);
    box-shadow: 0 0 8px 1px var(--accent);
  }
  
  .cursor-ring {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: -20px 0 0 -20px;
    border: 1px solid color-mix(in oklab, var(--stone) 50%, transparent);
    border-radius: 999px;
    transition: background 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  }
  .cursor-ring[data-boost='true'],
  .cursor-ring[data-hover='true'] {
    border-color: var(--accent);
    background: var(--accent-tint);
  }
  .cursor-label {
    font-size: 6px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--stone);
  }
  
  @media (min-width: 768px) {
    .cursor-layer {
      display: block;
    }
  }
  
  /* Esconde o cursor nativo quando o cursor customizado está ativo */
  @media (hover: hover) and (pointer: fine) {
    .custom-cursor-active,
    .custom-cursor-active a,
    .custom-cursor-active button {
      cursor: none;
    }
  }
  
  /* --------------------------------------------------------------------------
     5. Navbar
     -------------------------------------------------------------------------- */
  .site-header {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 80;
    padding-block: 1.5rem;
    background: transparent;
    transition: padding 0.5s ease, background 0.5s ease, backdrop-filter 0.5s ease;
  }
  .site-header.is-scrolled:not(.is-open) {
    padding-block: 1rem;
    background: var(--glass);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid var(--border-soft);
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
  
  .wordmark {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    color: var(--foreground);
    transition: opacity 0.3s ease;
  }
  .wordmark span {
    color: var(--accent);
  }
  
  .site-header.is-open .wordmark,
  .site-header.is-open .primary-nav {
    opacity: 0;
    pointer-events: none;
  }

  /* --- Alternador de tema claro/escuro --- */
  .theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    padding: 0.55rem 0.95rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: transparent;
    color: var(--foreground);
    font-family: var(--font-sans);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
  }
  .theme-toggle:hover {
    border-color: var(--accent);
    background: var(--accent-tint);
    color: var(--accent);
  }
  .theme-toggle:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
  }
  .theme-toggle-icon {
    display: grid;
    place-items: center;
    width: 16px;
    height: 16px;
  }
  .theme-toggle-icon svg {
    grid-area: 1 / 1;
    transition: opacity 0.3s ease, transform 0.4s ease;
  }
  /* No tema escuro o botao oferece o tema claro (sol); no claro, oferece a lua */
  .icon-moon {
    opacity: 0;
    transform: rotate(-45deg) scale(0.6);
  }
  :root[data-theme='light'] .icon-sun {
    opacity: 0;
    transform: rotate(45deg) scale(0.6);
  }
  :root[data-theme='light'] .icon-moon {
    opacity: 1;
    transform: none;
  }
  .theme-toggle-label {
    display: none;
  }
  @media (min-width: 1024px) {
    .theme-toggle-label {
      display: inline;
    }
  }
  .site-header.is-open .theme-toggle {
    opacity: 0;
    pointer-events: none;
  }
  
  .primary-nav {
    display: none;
    align-items: center;
    gap: 2.5rem;
    transition: opacity 0.3s ease;
  }
  @media (min-width: 768px) {
    .primary-nav {
      display: flex;
    }
  }
  
  .nav-link {
    position: relative;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.5s ease;
  }
  .nav-link:hover {
    color: var(--foreground);
  }
  .nav-link:hover::after {
    width: 100%;
  }
  
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--foreground);
  }
  .menu-toggle .label {
    display: none;
  }
  @media (min-width: 640px) {
    .menu-toggle .label {
      display: inline;
    }
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 1.5rem;
    height: 1rem;
  }
  .burger span {
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .site-header.is-open .burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .site-header.is-open .burger span:nth-child(2) {
    opacity: 0;
  }
  .site-header.is-open .burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  /* Menu em tela cheia */
  .menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 75;
    display: none;
    flex-direction: column;
    justify-content: center;
    padding: 6rem var(--gutter);
    background: var(--card);
    clip-path: inset(0 0 100% 0);
  }
  
  .menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 4rem;
    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
  }
  @media (min-width: 1024px) {
    .menu-grid {
      grid-template-columns: 1.4fr 1fr;
      gap: 6rem;
    }
  }
  
  .menu-nav {
    display: flex;
    flex-direction: column;
  }
  .menu-line {
    overflow: hidden;
  }
  .menu-item {
    display: flex;
    align-items: baseline;
    gap: 1.25rem;
    padding-block: 0.25rem;
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(2.25rem, 7vw, 5.5rem);
    line-height: 1.05;
    color: var(--foreground);
    transition: color 0.3s ease;
  }
  .menu-item .num {
    width: 2rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
  }
  .menu-item .text {
    position: relative;
  }
  .menu-item .text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.5s ease;
  }
  .menu-item:hover,
  .menu-item:hover .num {
    color: var(--accent);
  }
  .menu-item:hover .text::after {
    width: 100%;
  }
  
  .menu-aside {
    display: none;
    flex-direction: column;
  }
  @media (min-width: 1024px) {
    .menu-aside {
      display: flex;
    }
  }
  .menu-feature {
    position: relative;
    aspect-ratio: 4 / 5;
    width: 100%;
    overflow: hidden;
  }
  .menu-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 0.7s ease, transform 0.7s ease;
  }
  .menu-feature:hover img {
    filter: grayscale(0);
  }
  .menu-feature .frame {
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px var(--border);
  }
  .menu-feature .caption {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(var(--overlay), 0.7), transparent);
  }
  .menu-feature .caption p:first-child {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--foreground);
  }
  .menu-feature .caption p:last-child {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted-foreground);
  }
  
  .menu-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
  }
  .menu-meta a,
  .menu-meta p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }
  .menu-meta a.mail {
    display: block;
    font-size: 1rem;
    color: var(--stone);
    transition: color 0.3s ease;
  }
  .menu-meta a:hover {
    color: var(--accent);
  }
  .menu-meta .social a {
    display: block;
    transition: color 0.3s ease;
  }
  .menu-meta .social a:hover {
    color: var(--foreground);
  }
  
  .menu-contact-mobile {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-width: var(--max-width);
    margin: 4rem auto 0;
  }
  @media (min-width: 1024px) {
    .menu-contact-mobile {
      display: none;
    }
  }
  
  /* --------------------------------------------------------------------------
     6. Hero
     -------------------------------------------------------------------------- */
  .hero {
    position: relative;
    height: 100svh;
    width: 100%;
    overflow: hidden;
  }
  .hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }
  .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 20s ease-in-out infinite alternate;
  }
  /* Slideshow do hero — crossfade a cada 3s */
  .hero-media .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    pointer-events: none;
  }
  .hero-media .hero-slide.is-active {
    opacity: 1;
  }
  @keyframes heroZoom {
    from {
      transform: scale(1);
    }
    to {
      transform: scale(1.12);
    }
  }
  
  .hero-veil,
  .hero-vignette,
  .hero-fade {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  /* Sem véu colorido no hero — a foto fica limpa atrás do título
     (antes: verde oliva no escuro / creme no claro). */
  .hero-veil {
    background: none;
  }
  :root[data-theme='light'] .hero-veil {
    background: none;
  }
  /* No celular: filtro preto leve + gradiente na área do texto */
  @media (max-width: 999999999px) {
    .hero-veil {
      background: rgba(0, 0, 0, 0.664);
    }
    :root[data-theme='light'] .hero-veil {
      background: rgba(0, 0, 0, 0.42);
    }
    .hero-fade {
      height: 70%;
      background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        transparent 100%
      );
    }
  }
  .hero-vignette {
    background: radial-gradient(ellipse at center, transparent 0%, rgba(var(--overlay), 0.55) 100%);
  }
  .hero-fade {
    top: auto;
    height: 50%;
    background: none;
  }
  
  /* O conteudo do hero fica sobre a foto nos dois temas, entao trava tokens
     "sobre midia" para o contraste nunca inverter junto com o tema. */
  .hero-content {
    --foreground: var(--on-media);
    --muted-foreground: color-mix(in oklab, var(--on-media) 78%, transparent);
    --stone: var(--brand-sand);
    --accent: var(--brand-camel);
    --border: color-mix(in oklab, var(--on-media) 30%, transparent);
    --stone-tint: color-mix(in oklab, var(--on-media) 22%, transparent);
    color: var(--on-media);
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 6rem var(--gutter);
  }
  .hero-spacer {
    flex: 1;
  }
  .hero-title {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.01em;
    font-size: clamp(2.75rem, 11vw, 10rem);
    color: var(--foreground);
    max-width: 64rem;
  }
  .hero-title .mask {
    display: block;
    overflow: hidden;
  }
  .hero-title .mask > span {
    display: block;
  }
  .hero-title .italic {
    font-style: italic;
    color: var(--stone);
  }
  
  .hero-foot {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2.5rem;
  }
  .hero-foot p {
    max-width: 28rem;
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--muted-foreground);
    text-wrap: pretty;
  }
  @media (min-width: 768px) {
    .hero-foot {
      flex-direction: row;
      align-items: flex-end;
    }
    .hero-foot p {
      font-size: 1rem;
    }
  }
  
  .scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
  }
  @media (min-width: 768px) {
    .scroll-hint {
      display: flex;
    }
  }
  .scroll-hint .eyebrow {
    font-size: 0.6rem;
  }
  .scroll-rail {
    position: relative;
    width: 1px;
    height: 3.5rem;
    overflow: hidden;
    background: var(--stone-tint);
  }
  .scroll-rail span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--stone);
    animation: scrollLine 2s ease-in-out infinite;
  }
  @keyframes scrollLine {
    0% {
      transform: translateY(-100%);
    }
    50% {
      transform: translateY(100%);
    }
    100% {
      transform: translateY(200%);
    }
  }
  
  /* --------------------------------------------------------------------------
     7. Marquee
     -------------------------------------------------------------------------- */
  .marquee {
    position: relative;
    border-block: 1px solid var(--border);
    padding-block: 2rem;
  }
  .marquee-mask {
    display: flex;
    overflow: hidden;
  }
  .marquee-track {
    display: inline-flex;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 32s linear infinite;
  }
  @keyframes marquee {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }
  .marquee-track span {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-inline: 2rem;
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    line-height: 1;
    color: var(--muted-foreground);
  }
  .marquee-track span em {
    font-style: normal;
    color: var(--accent);
  }
  
  /* --------------------------------------------------------------------------
     8. Cabeçalho de seção
     -------------------------------------------------------------------------- */
  .section-head {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 4rem;
  }
  @media (min-width: 768px) {
    .section-head {
      flex-direction: row;
      align-items: flex-end;
      margin-bottom: 6rem;
    }
  }
  .section-head .eyebrow {
    margin-bottom: 1.25rem;
  }
  .section-head > *:first-child {
    flex: 1 1 auto;
    min-width: 0;
  }
  .section-title {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.01em;
    font-size: clamp(2.5rem, 7vw, 8rem);
    color: var(--foreground);
    max-width: 100%;
    overflow-wrap: break-word;
  }
  /* Evita que o efeito de máscara corte o título (ex: "Projetos") */
  .section-title.mask-text {
    overflow: visible;
  }
  .section-title .mask-word {
    max-width: 100%;
  }

  .section-lede {
    max-width: 24rem;
    line-height: 1.7;
    color: var(--muted-foreground);
    text-wrap: pretty;
  }
  
  /* --------------------------------------------------------------------------
     9. Projetos — carrossel 3D (coverflow)
     -------------------------------------------------------------------------- */
  .projects-section {
    overflow: hidden;
  }

  .projects-carousel {
    position: relative;
    width: 100%;
    max-width: 56rem;
    margin-inline: auto;
    user-select: none;
    touch-action: pan-y;
    /* Único controle de tamanho do card — mude só este valor */
    --slide-w: 300px;
  }

  .projects-stage {
    position: relative;
    /* Altura acompanha a largura do card (proporção 9:16) */
    height: calc(var(--slide-w) * 16 / 9 + 2rem);
    perspective: 1200px;
    perspective-origin: 50% 50%;
    transform-style: preserve-3d;
  }

  .projects-stage .project-slide {
    transform-style: preserve-3d;
    backface-visibility: hidden;
  }

  .project-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--slide-w);
    aspect-ratio: 9 / 16;
    height: auto;
    padding: 0;
    border: 0;
    border-radius: 1.35rem;
    overflow: hidden;
    background: #111;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    cursor: pointer;
    transform-origin: center center;
    transform: translate(-50%, -50%);
    transition:
      transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.45s ease,
      box-shadow 0.45s ease;
    will-change: transform, opacity;
  }

  .project-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
  }

  .project-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 1;
    transition: opacity 0.45s ease;
    pointer-events: none;
  }

  .project-slide.is-active::after {
    opacity: 0;
  }

  .project-slide.is-active {
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
  }

  .project-slide-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 1.25rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
    color: #fff;
    text-align: left;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
  }

  .project-slide.is-active .project-slide-meta {
    opacity: 1;
    transform: translateY(0);
  }

  .project-slide-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.2;
  }

  .project-slide-cat {
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.7;
  }

  .projects-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
  }

  .projects-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    border: 1px solid color-mix(in oklab, var(--foreground) 45%, transparent);
    background: transparent;
    color: var(--foreground);
    font-size: 1rem;
    line-height: 1;
    transition: border-color 0.35s ease, background-color 0.35s ease, color 0.35s ease;
  }

  .projects-nav-btn:hover {
    border-color: var(--accent);
    background: color-mix(in oklab, var(--accent) 18%, transparent);
  }

  .projects-counter {
    min-width: 5.5rem;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    font-variant-numeric: tabular-nums;
    color: var(--foreground);
  }

  @media (min-width: 768px) {
    .projects-carousel {
      --slide-w: 340px; /* desktop — aumente aqui para cards maiores */
    }
    .project-slide {
      border-radius: 1.5rem;
    }
  }

  @media (max-width: 640px) {
    .projects-carousel {
      --slide-w: min(72vw, 290px);
    }
    .project-slide {
      aspect-ratio: 9 / 16; /* mais alto no celular */
      border-radius: 1.15rem;
    }
    .projects-stage {
      height: calc(var(--slide-w) * 16 / 9 + 2rem);
    }
    .projects-nav {
      margin-top: 1.75rem;
      gap: 1rem;
    }
    .projects-nav-btn {
      width: 2.5rem;
      height: 2.5rem;
    }
  }

  /* Estilos legados do card (usados se alguma página ainda referenciar) */
  .projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 2rem;
    row-gap: 4rem;
  }
  @media (min-width: 768px) {
    .projects-grid {
      grid-template-columns: repeat(12, minmax(0, 1fr));
    }
    .span-5 {
      grid-column: span 5;
    }
    .span-6 {
      grid-column: span 6;
    }
    .span-7 {
      grid-column: span 7;
    }
  }
  
  .project-card {
    display: block;
    width: 100%;
    text-align: left;
    position: relative;
  }
  .project-card:hover {
    z-index: 5;
  }
  .project-figure {
    position: relative;
    aspect-ratio: 4 / 5;
    width: 100%;
    overflow: visible;
    background: var(--card);
  }
  @media (min-width: 768px) {
    .project-figure {
      aspect-ratio: 16 / 11;
    }
  }
  .project-figure img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease-out;
  }
  .project-card:hover .project-figure img {
    transform: scale(1.05);
  }
  .project-figure canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .project-overlaybits {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.5rem;
    pointer-events: none;
  }
  .project-arrow {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--stone);
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  .project-card:hover .project-arrow {
    opacity: 1;
  }
  .project-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }
  .project-meta h3 {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--foreground);
  }
  @media (min-width: 768px) {
    .project-meta h3 {
      font-size: 1.875rem;
    }
  }
  .project-meta span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted-foreground);
    white-space: nowrap;
  }
  
  /* Overlay de projeto */
  .project-modal {
    position: fixed;
    inset: 0;
    z-index: 95;
    overflow-y: auto;
    background: var(--background);
    clip-path: inset(100% 0 0 0);
    display: none;
  }
  .project-modal.is-open {
    display: block;
  }
  .modal-bar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 2px;
    background: var(--border);
  }
  .modal-bar span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transform-origin: left;
    transform: scaleX(0);
  }
  .modal-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    color: var(--foreground);
  }
  .modal-hero {
    position: relative;
    height: 70svh;
    width: 100%;
    overflow: hidden;
  }
  .modal-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .modal-hero .veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--background), transparent 60%);
  }
  .modal-hero .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.5rem;
  }
  .modal-hero .caption .eyebrow {
    margin-bottom: 1rem;
  }
  .modal-hero h2 {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 0.95;
    font-size: clamp(2.5rem, 8vw, 7rem);
    color: var(--foreground);
  }
  .modal-body {
    display: grid;
    gap: 2.5rem;
    max-width: var(--max-width);
    margin-inline: auto;
    padding: 4rem var(--gutter);
  }
  @media (min-width: 768px) {
    .modal-body {
      grid-template-columns: repeat(12, minmax(0, 1fr));
    }
    .modal-body .col-4 {
      grid-column: span 4;
    }
    .modal-body .col-8 {
      grid-column: span 8;
    }
  }
  .modal-body .lead {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--foreground);
  }
  @media (min-width: 768px) {
    .modal-body .lead {
      font-size: 2.25rem;
    }
  }
  .modal-body .body {
    max-width: 42rem;
    margin-top: 2rem;
    line-height: 1.7;
    color: var(--muted-foreground);
  }
  .modal-body .place {
    font-size: 1.125rem;
    color: var(--stone);
  }
  
  /* --------------------------------------------------------------------------
     10. Faixa parallax
     -------------------------------------------------------------------------- */
  .band {
    position: relative;
    height: 70svh;
    width: 100%;
    overflow: hidden;
  }
  .band img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 130%;
    object-fit: cover;
    will-change: transform;
  }
  .band .veil {
    position: absolute;
    inset: 0;
    background: rgba(var(--overlay), 0.55);
  }
  .band .quote-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: var(--gutter);
  }
  .band .quote-inner {
    max-width: 56rem;
    margin-inline: auto;
    text-align: center;
  }
  .band blockquote {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.15;
    font-size: clamp(1.75rem, 4.5vw, 4rem);
    color: var(--foreground);
    text-wrap: balance;
  }
  .band .eyebrow {
    margin-top: 2rem;
  }
  
  /* --------------------------------------------------------------------------
     11. Sobre
     -------------------------------------------------------------------------- */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 3rem;
    max-width: var(--max-width);
    margin-inline: auto;
  }
  @media (min-width: 768px) {
    .about-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 5rem;
    }
  }
  .about-title {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.01em;
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    color: var(--foreground);
    margin-bottom: 2rem;
  }
  .about-copy {
    max-width: 36rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--muted-foreground);
    text-wrap: pretty;
  }
  .about-copy strong {
    color: var(--foreground);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-decoration-thickness: 2px;
    text-underline-offset: 0.22em;
  }
  @media (min-width: 768px) {
    .about-copy {
      font-size: 1.125rem;
    }
  }
  .about-copy.last {
    margin-bottom: 3rem;
  }
  .stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
  }
  .stats > div {
    text-align: center;
  }
  .stats .value {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--stone);
  }
  .stats .label {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    line-height: 1.4;
    color: var(--muted-foreground);
  }
  .scene {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
  }
  @media (min-width: 768px) {
    .scene {
      aspect-ratio: auto;
      height: 70vh;
    }
  }
  .scene canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .scene-hint {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    pointer-events: none;
  }
  .scene-hint .dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 999px;
    background: var(--accent);
  }
  .scene-hint span:last-child {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted-foreground);
  }
  
  /* --------------------------------------------------------------------------
     12. Fundador e prêmios
     -------------------------------------------------------------------------- */
  .founder-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: clamp(2rem, 6vw, 3rem);
  }
  @media (min-width: 1024px) {
    .founder-grid {
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      align-items: stretch;
      gap: clamp(2.5rem, 5vw, 5rem);
    }
    /* Coluna da foto acompanha a altura do texto + prêmios */
    .founder-grid > .reveal:first-child {
      display: flex;
      flex-direction: column;
      height: 100%;
      min-height: 0;
    }
    .founder-grid > .reveal:first-child .portrait {
      flex: 1 1 auto;
      aspect-ratio: auto;
      min-height: clamp(28rem, 40vw, 42rem);
    }
  }
  .portrait {
    position: relative;
    aspect-ratio: 4 / 5;
    width: 100%;
    overflow: hidden;
  }
  .portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  /* Abaixo de 1024px, mostra a foto inteira sem cortar */
  @media (max-width: 1023px) {
    .portrait {
      aspect-ratio: auto;
      height: auto;
      max-width: 32rem;
      margin-inline: auto;
    }
    .portrait img {
      height: auto;
      max-height: 70vh;
      object-fit: contain;
      object-position: center;
    }
    .portrait-caption {
      text-align: center;
    }
  }
  .portrait .frame {
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px var(--border);
  }
  .portrait-caption {
    margin-top: 1rem;
    flex-shrink: 0;
    font-size: clamp(0.6875rem, 2.2vw, 0.75rem);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted-foreground);
    overflow-wrap: break-word;
  }
  .founder-title {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.01em;
    font-size: clamp(1.75rem, 5.2vw, 3.5rem);
    color: var(--foreground);
    margin-bottom: clamp(1.25rem, 4vw, 2rem);
    overflow-wrap: break-word;
    text-wrap: balance;
  }
  @media (min-width: 1024px) {
    .founder-title {
      line-height: 0.95;
    }
  }
  .founder-quote {
    max-width: 36rem;
    margin-bottom: clamp(2rem, 6vw, 3rem);
    padding-left: clamp(1rem, 3vw, 1.5rem);
    border-left: 1px solid var(--accent);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--stone);
    text-wrap: pretty;
  }
  @media (min-width: 768px) {
    .founder-quote {
      font-size: 1.5rem;
    }
  }
  
  /* Carrossel de certificados (mobile + desktop) */
  .awards-carousel {
    display: block;
  }

  .awards-track {
    display: flex;
    gap: 1rem;
    margin-inline: calc(var(--gutter) * -1);
    padding: 0 var(--gutter) 0.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
  }

  .awards-track > * {
    flex: 0 0 100%;
    scroll-snap-align: center;
  }

  .awards-controls {
    display: none;
  }

  @media (min-width: 640px) {
    .awards-track {
      margin-inline: 0;
      padding: 0;
      overflow-x: hidden;
      scroll-snap-type: none;
    }

    .awards-track > * {
      flex: 0 0 calc((100% - 2rem) / 3);
      scroll-snap-align: none;
    }

    .awards-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.25rem;
      margin-top: 2rem;
    }

    .awards-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.75rem;
      height: 2.75rem;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: var(--glass);
      color: var(--foreground);
      font-size: 1rem;
      transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    }

    .awards-btn:hover {
      background: var(--accent-tint);
      border-color: var(--accent);
    }

    .awards-btn:active {
      transform: scale(0.95);
    }
  }

  .awards-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  @media (min-width: 640px) {
    .awards-dots {
      margin-top: 0;
    }
  }

  .awards-dots button {
    height: 0.375rem;
    width: 0.625rem;
    border-radius: 999px;
    background: var(--border);
    transition: all 0.3s ease;
  }

  .awards-dots button[aria-current='true'] {
    width: 2rem;
    background: var(--accent);
  }

  .award {
    display: block;
    cursor: pointer;
  }

  .award-figure {
    position: relative;
    aspect-ratio: 4 / 3;
    width: 100%;
    overflow: hidden;
    background: var(--card);
  }

  .award-figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: clamp(0.5rem, 2vw, 1rem);
    transition: transform 0.7s ease;
  }


  .award:hover .award-figure img,
  .award:focus-visible .award-figure img {
    transform: scale(1.05);
  }

  .award-figure .frame {
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px var(--border);
  }

  .award-title {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--foreground);
  }

  .award-org {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--muted-foreground);
  }

  /* Modal de zoom dos certificados */
  .award-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(var(--overlay), 0.9);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .award-modal:not([hidden]) {
    opacity: 1;
    visibility: visible;
  }

  .award-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--glass);
    color: var(--foreground);
    font-size: 1.25rem;
    z-index: 10;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .award-modal-close:hover {
    background: var(--accent-tint);
    transform: rotate(90deg);
  }

  .award-modal-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    overflow: auto;
    border-radius: 0.5rem;
    background: var(--card);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.35s ease;
  }

  .award-modal:not([hidden]) .award-modal-content {
    transform: translateY(0) scale(1);
  }

  .award-modal-content img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .award-modal-title {
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-align: center;
    border-top: 1px solid var(--border);
  }

  /* ---- Responsividade da seção "O Fundador" ------------------------------ */

  /* O grid nunca estoura a viewport */
  #fundador .shell,
  .founder-grid {
    max-width: 100%;
    min-width: 0;
  }
  .founder-grid > * {
    min-width: 0;
  }

  /* Tablet: duas colunas mais equilibradas antes do layout de desktop */
  @media (min-width: 768px) and (max-width: 1023px) {
    .founder-grid {
      grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
      align-items: start;
      gap: clamp(2rem, 4vw, 3rem);
    }
    .portrait {
      max-width: 100%;
      margin-inline: 0;
    }
    .portrait img {
      max-height: 60vh;
    }
    .portrait-caption {
      text-align: left;
    }
  }

  /* Certificados: 2 por vez em tablets, 3 em telas grandes */
  @media (min-width: 640px) and (max-width: 1023px) {
    .awards-track > * {
      flex: 0 0 calc((100% - 1rem) / 2);
    }
  }

  /* Mobile: cartões com "peek" do próximo certificado */
  @media (max-width: 639px) {
    .awards-track {
      gap: 0.75rem;
    }
    .awards-track > * {
      flex: 0 0 100%;
      scroll-snap-align: center;
    }
    .award-title {
      font-size: 0.8125rem;
    }
  }

  /* Texto confortável em telas estreitas */
  @media (max-width: 767px) {
    #fundador .about-copy {
      font-size: clamp(0.95rem, 3.6vw, 1.05rem);
      line-height: 1.7;
    }
    .founder-quote {
      font-size: clamp(1.05rem, 4.5vw, 1.25rem);
    }
  }

  /* Modal do certificado adaptado ao celular */
  @media (max-width: 639px) {
    .award-modal {
      padding: 1rem;
    }
    .award-modal-close {
      top: 0.75rem;
      right: 0.75rem;
      width: 2.5rem;
      height: 2.5rem;
    }
    .award-modal-content {
      max-height: 80vh;
    }
    .award-modal-title {
      padding: 0.75rem 1rem;
      font-size: 0.8125rem;
    }
  }

  /* Telas muito pequenas */
  @media (max-width: 380px) {
    .founder-title {
      font-size: clamp(1.5rem, 8vw, 2rem);
    }
    .awards-track > * {
      flex: 0 0 92%;
    }
  }

  /* ---- Certificados: refinamento responsivo ------------------------------ */

  /* Cartões com altura uniforme e figura que respira */
  .award {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .award-figure {
    background: var(--card);
    border-radius: 0.25rem;
  }
  .award-title {
    overflow-wrap: break-word;
    text-wrap: pretty;
  }

  /* Controles visíveis também no celular */
  .awards-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
  }
  .awards-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    flex: 0 0 auto;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--glass);
    color: var(--foreground);
    font-size: 1rem;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  }
  .awards-btn:active {
    transform: scale(0.95);
  }
  .awards-dots {
    margin-top: 0;
    flex-wrap: wrap;
  }
  .awards-dots button {
    min-height: 0.75rem;
  }

  /* Sem paginação quando tudo cabe na tela */
  .awards-carousel[data-single-page='true'] .awards-controls {
    display: none;
  }

  /* Celular: 1 certificado por vez, ocupando a largura útil */
  @media (max-width: 639px) {
    .awards-track {
      gap: 1rem;
      scroll-padding-inline: var(--gutter);
    }
    .awards-track > * {
      flex: 0 0 100%;
      scroll-snap-align: center;
    }
    .award-figure {
      aspect-ratio: 4 / 3;
      max-height: 45vh;
    }
    .award-title {
      font-size: 0.875rem;
      line-height: 1.4;
    }
    .awards-controls {
      gap: 0.75rem;
      margin-top: 1rem;
    }
  }

  @media (max-width: 380px) {
    .awards-track > * {
      flex: 0 0 100%;
    }
    .award-figure {
      aspect-ratio: 4 / 3;
    }
  }

  /* Tablet: 2 por página com proporção mais alta */
  @media (min-width: 640px) and (max-width: 1023px) {
    .award-figure {
      aspect-ratio: 4 / 3;
    }
  }

  /* Toque: sem efeito de zoom no hover */
  @media (hover: none) {
    .award:hover .award-figure img {
      transform: none;
    }
  }




  
  /* --------------------------------------------------------------------------
     13. À venda
     -------------------------------------------------------------------------- */
  .listings-grid {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 2rem;
    row-gap: 4rem;
  }
  @media (min-width: 768px) {
    .listings-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  .listing-figure {
    position: relative;
    aspect-ratio: 4 / 5;
    width: 100%;
    overflow: hidden;
    background: var(--card);
  }
  .listing-figure img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s ease-out;
  }
  .listing-card:hover .listing-figure img {
    transform: scale(1.05);
  }
  .listing-figure .veil {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(var(--overlay), 0.65), transparent 55%);
  }
  .listing-figure .status {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
  }
  .listing-figure .caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
  }
  .listing-figure .caption .eyebrow {
    margin-bottom: 0.25rem;
    font-size: 0.6rem;
  }
  .listing-figure .caption h3,
  .listing-figure .caption h2 {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 1.875rem;
    color: var(--foreground);
  }
  .listing-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }
  .listing-specs {
    display: flex;
    gap: 1.25rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted-foreground);
  }
  .listing-price {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--accent);
    white-space: nowrap;
  }
  .listing-desc {
    margin-top: 1rem;
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--muted-foreground);
    text-wrap: pretty;
  }
  
  .cta-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
  }
  .cta-row p {
    max-width: 28rem;
    line-height: 1.7;
    color: var(--muted-foreground);
    text-wrap: pretty;
  }
  @media (min-width: 768px) {
    .cta-row {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }
  }
  
  /* --------------------------------------------------------------------------
     14. Depoimentos
     -------------------------------------------------------------------------- */
  .testimonials-head {
    max-width: 48rem;
    margin-bottom: 4rem;
  }
  @media (min-width: 768px) {
    .testimonials-head {
      margin-bottom: 6rem;
    }
  }
  .testimonials-title {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.01em;
    font-size: clamp(2rem, 5vw, 4.5rem);
    color: var(--foreground);
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  @media (min-width: 768px) {
    .testimonials-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  .testimonial {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
  }
  .testimonial blockquote {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--stone);
    text-wrap: pretty;
  }
  .testimonial blockquote strong {
    color: var(--foreground);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-decoration-thickness: 2px;
    text-underline-offset: 0.22em;
  }
  @media (min-width: 768px) {
    .testimonial blockquote {
      font-size: 1.45rem;
      line-height: 1.55;
    }
  }
  .testimonial figcaption {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
  }
  .testimonial img {
    flex: none;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    object-fit: cover;
  }
  .testimonial .name {
    font-size: 0.875rem;
    color: var(--foreground);
  }
  .testimonial .role {
    margin-top: 0.125rem;
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--muted-foreground);
  }
  
  /* --------------------------------------------------------------------------
     15. Serviços
     -------------------------------------------------------------------------- */
  .services-grid {
    display: none;
    gap: 1.5rem;
  }
  /* Desktop / tablet: 3 em cima, 2 centralizados embaixo */
  @media (min-width: 768px) {
    .services-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
    }
    .services-grid > * {
      grid-column: span 2;
    }
    .services-grid > :nth-child(4) {
      grid-column: 2 / 4;
    }
    .services-grid > :nth-child(5) {
      grid-column: 4 / 6;
    }
  }

  /* Celular: carrossel */
  .services-carousel {
    display: block;
  }
  @media (min-width: 768px) {
    .services-carousel {
      display: none;
    }
  }
  .services-track {
    display: flex;
    gap: 1rem;
    margin-inline: calc(var(--gutter) * -1);
    padding: 0 var(--gutter) 0.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  .services-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    min-width: 0;
  }
  .services-slide .service {
    height: 100%;
  }
  .services-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  .services-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: 1px solid color-mix(in oklab, var(--foreground) 40%, transparent);
    background: transparent;
    color: var(--foreground);
    font-size: 0.95rem;
    line-height: 1;
    flex-shrink: 0;
  }
  .services-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
  }
  .services-dots button {
    height: 0.375rem;
    width: 0.625rem;
    border-radius: 999px;
    background: var(--border);
    transition: all 0.3s ease;
  }
  .services-dots button[aria-current='true'] {
    width: 2rem;
    background: var(--accent);
  }

  .service {
    position: relative;
    height: 100%;
    padding: 2rem;
    border-radius: 2px;
    overflow: hidden;
  }
  @media (min-width: 768px) {
    .service {
      padding: 2.5rem;
    }
  }
  .service .glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 12rem;
    height: 12rem;
    margin: -6rem 0 0 -6rem;
    border-radius: 999px;
    background: var(--accent);
    filter: blur(60px);
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity;
  }
  .service .ring {
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    border-radius: 2px;
    pointer-events: none;
    transition: border-color 0.5s ease;
  }
  .service:hover .ring {
    border-color: color-mix(in oklab, var(--accent) 45%, transparent);
  }
  .service-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 18rem;
  }
  .service .num {
    font-family: var(--font-serif);
    font-size: 0.875rem;
    color: var(--accent);
  }
  .service h3 {
    margin-top: 1.5rem;
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--foreground);
  }
  @media (min-width: 768px) {
    .service h3 {
      font-size: 1.875rem;
    }
  }
  .service p {
    margin-top: 1rem;
    line-height: 1.7;
    color: var(--muted-foreground);
  }
  .service .more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 2rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--stone);
    opacity: 0.6;
    transition: opacity 0.5s ease;
    text-decoration: none;
  }
  .service:hover .more {
    opacity: 1;
  }
  .service .more span {
    transition: transform 0.5s ease;
  }
  .service:hover .more span {
    transform: translateX(4px);
  }
  
  /* --------------------------------------------------------------------------
     16. Footer
     -------------------------------------------------------------------------- */
  /* Rodape sempre no verde profundo da marca, como nas referencias */
  .site-footer {
    position: relative;
    padding: 6rem var(--gutter) 2.5rem;
    background-color: var(--brand-moss-deep);
    --background: var(--brand-moss-deep);
    --foreground: var(--brand-cream);
    --muted-foreground: color-mix(in oklab, var(--brand-cream) 68%, transparent);
    --accent: var(--brand-camel);
    --stone: var(--brand-sand);
    --border: color-mix(in oklab, var(--brand-cream) 18%, transparent);
    --border-soft: color-mix(in oklab, var(--brand-cream) 10%, transparent);
    --accent-tint: color-mix(in oklab, var(--brand-camel) 16%, transparent);
    color: var(--brand-cream);
    border-top: 1px solid color-mix(in oklab, var(--brand-cream) 14%, transparent);
  }
  .footer-top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2.5rem;
    margin-bottom: 5rem;
    min-width: 0;
  }
  .footer-cta {
    min-width: 0;
    max-width: 100%;
  }
  @media (min-width: 768px) {
    .footer-top {
      flex-direction: row;
      align-items: flex-end;
    }
  }
  .footer-title {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.01em;
    font-size: clamp(1.75rem, 5.5vw, 5.5rem);
    color: var(--foreground);
    white-space: normal;
    overflow-wrap: break-word;
    max-width: 100%;
    min-width: 0;
  }
  .footer-title.mask-text {
    overflow: visible;
  }
  .footer-top > .magnetic {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .footer-mail {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
    justify-content: center;
    word-break: break-word;
    overflow-wrap: anywhere;
    padding: 0.9rem 1.25rem;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
  }

  /* Botão de contato do footer: maior e posicionado à direita/center */
  .footer-contact-magnetic {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .footer-contact-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 1.1rem 2.25rem;
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    text-align: center;
    text-indent: 0.18em;
    line-height: 1;
    border-radius: 999px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.5s ease,
                background-color 0.5s ease,
                box-shadow 0.5s ease;
  }
  .footer-contact-btn.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  .footer-contact-btn::before {
    background: var(--accent-tint-strong);
  }
  .footer-contact-btn:hover {
    transform: scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  }
  .footer-contact-spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: radial-gradient(
      circle at var(--x, 50%) var(--y, 50%),
      rgba(242, 235, 225, 0.18) 0%,
      transparent 50%
    );
  }

  @media (min-width: 768px) {
    .footer-top {
      align-items: center;
      min-height: 260px;
    }
    .footer-top > .magnetic {
      display: inline-flex;
      width: auto;
    }
    .footer-contact-magnetic {
      width: auto;
      margin-left: auto;
    }
    .footer-mail {
      width: auto;
      white-space: nowrap;
      text-align: center;
      justify-content: center;
      padding: 1rem 2rem;
      letter-spacing: 0.18em;
      font-size: 0.875rem;
      overflow-wrap: normal;
      word-break: normal;
    }
    .footer-contact-btn {
      min-width: 240px;
      padding: 1.5rem 2.75rem;
      font-size: 0.95rem;
    }
  }
  @media (min-width: 1200px) {
    .footer-contact-btn {
      min-width: 280px;
      padding: 1.75rem 3.25rem;
      font-size: 1rem;
    }
  }
  .footer-cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    padding-block: 3.5rem;
    border-top: 1px solid var(--border);
  }
  @media (min-width: 768px) {
    .footer-cols {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }
  .footer-cols .eyebrow {
    margin-bottom: 1rem;
  }
  .footer-cols p {
    line-height: 1.7;
    color: var(--stone);
  }
  .footer-cols li + li {
    margin-top: 0.5rem;
  }
  .footer-cols li a {
    color: var(--muted-foreground);
    transition: color 0.3s ease;
  }
  .footer-cols li a:hover {
    color: var(--foreground);
  }
  .footer-cols .social a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  .footer-cols .social a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.5s ease;
  }
  .footer-cols .social a:hover::before {
    width: 1rem;
  }
  .footer-wordmark {
    overflow: hidden;
    padding-block: 2rem;
  }
  .footer-wordmark p {
    font-family: var(--font-serif);
    font-weight: 300;
    white-space: nowrap;
    text-align: center;
    line-height: 1;
    font-size: clamp(3rem, 20vw, 18rem);
    color: var(--card);
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-align: center;
  }
  @media (min-width: 768px) {
    .footer-bottom {
      flex-direction: row;
      text-align: left;
    }
  }
  .footer-bottom .tag {
    text-transform: uppercase;
    letter-spacing: 0.2em;
  }
  
  /* --------------------------------------------------------------------------
     17. Página de imóvel
     -------------------------------------------------------------------------- */
  .listing-hero {
    position: relative;
    height: 80svh;
    width: 100%;
    overflow: hidden;
  }
  .listing-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .listing-hero .veil {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
      to top,
      rgba(var(--overlay), 0.9),
      rgba(var(--overlay), 0.15) 55%,
      rgba(var(--overlay), 0.35)
    );
  }
  .listing-hero .caption {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: 0 var(--gutter) 3.5rem;
  }
  .listing-hero .badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
  }
  .listing-hero h1 {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.01em;
    font-size: clamp(2.5rem, 10vw, 9rem);
    color: var(--foreground);
  }
  
  .listing-overview {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: var(--max-width);
    margin-inline: auto;
  }
  @media (min-width: 768px) {
    .listing-overview {
      grid-template-columns: repeat(12, minmax(0, 1fr));
    }
    .listing-overview .col-7 {
      grid-column: span 7;
    }
    .listing-overview .col-5 {
      grid-column: span 5;
      padding-left: 2rem;
    }
  }
  .listing-overview .para {
    max-width: 42rem;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--stone);
    text-wrap: pretty;
  }
  .price-block {
    margin-bottom: 2.5rem;
  }
  .price-block .eyebrow {
    margin-bottom: 0.5rem;
    font-size: 0.6rem;
  }
  .price-block .value {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 2.25rem;
    color: var(--accent);
  }
  @media (min-width: 768px) {
    .price-block .value {
      font-size: 3rem;
    }
  }
  .specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2rem;
    row-gap: 2rem;
  }
  .spec {
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }
  .spec .eyebrow {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
  .spec .value {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 1.25rem;
    color: var(--foreground);
  }
  
  .gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: var(--max-width);
    margin-inline: auto;
  }
  @media (min-width: 768px) {
    .gallery {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  .data-hero-line{
    font-size: 2.5rem;
    color: var(--foreground);
  }
  .gallery-item {
    position: relative;
    aspect-ratio: 3 / 4;
    width: 100%;
    overflow: hidden;
    background: var(--card);
  }
  .gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s ease-out;
  }
  .gallery-item:hover img {
    transform: scale(1.05);
  }
  
  .features {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 3rem;
    row-gap: 1.5rem;
  }
  @media (min-width: 768px) {
    .features {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  .features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    font-size: 1.125rem;
    color: var(--foreground);
  }
  .features li .dot {
    flex: none;
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 999px;
    background: var(--accent);
  }
  
  .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--foreground);
  }
  .back-link .arrow {
    display: inline-block;
    transition: transform 0.5s ease;
  }
  .back-link:hover .arrow {
    transform: translateX(-4px);
  }
  
  /* --------------------------------------------------------------------------
     18. Animações de entrada (GSAP + fallback)
     -------------------------------------------------------------------------- */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .mask-text {
    display: block;
    overflow: hidden;
  }
  .mask-text > span {
    display: inline-block;
    will-change: transform;
  }
  
  .magnetic {
    display: inline-block;
    will-change: transform;
  }
  
  /* --------------------------------------------------------------------------
     19. Breakpoints de gutter
     -------------------------------------------------------------------------- */
  @media (min-width: 768px) {
    :root {
      --gutter: 3rem;
    }
    .section {
      padding-block: 10rem;
    }
    .hero-content {
      padding: 4rem var(--gutter);
    }
    .site-footer {
      padding-top: 10rem;
    }
    .modal-close {
      right: 3rem;
    }
    .modal-hero .caption {
      padding: 3rem;
    }
    .marquee {
      padding-block: 2.5rem;
    }
  }
  
  /* --------------------------------------------------------------------------
     20. Movimento reduzido
     -------------------------------------------------------------------------- */
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
    .grain-overlay,
    .marquee-track,
    .hero-media img,
    .scroll-rail span {
      animation: none;
    }
    .reveal {
      opacity: 1;
      transform: none;
    }
    .scroll-hint {
      opacity: 1;
    }
    * {
      transition-duration: 0.01ms !important;
    }
  }
  
  /* ========================= HERO STATS ========================= */
  .hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2.25rem;
    margin-bottom: 1.75rem;
  }
  
  .hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    position: relative;
    padding-left: 1.25rem;
  }
  
  .hero-stat::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35rem;
    bottom: 0.35rem;
    width: 1px;
    background: currentColor;
    opacity: 0.25;
  }
  
  .hero-stat-value {
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    line-height: 1;
    letter-spacing: -0.02em;
    font-weight: 500;
  }
  
  .hero-stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.65;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
  }
  
  @media (max-width: 640px) {
    .hero-stats {
      gap: 1.25rem;
    }
  }
  .project-gallery {
    position: relative;
    margin-top: 4rem;
  }
  
  .gallery-track {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
  
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .gallery-track::-webkit-scrollbar {
    display: none;
  }
  
  .gallery-track img {
    flex: 0 0 auto;
    width: auto;
    max-width: 88%;
    height: 520px;
    object-fit: contain;
    scroll-snap-align: center;
  
    border-radius: 4px;
    border: 1px solid var(--border);
    background: var(--card);
  
    transition: transform .6s ease, opacity .4s ease;
  }
  
  .gallery-track img:hover {
    transform: scale(1.02);
  }

  .gallery-track img {
    cursor: zoom-in;
  }

  /* Bolinhas indicadoras (centro, abaixo das imagens) */
  .gallery-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
  }
  .gallery-dots .gallery-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  }
  .gallery-dots .gallery-dot.is-active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.4);
  }

  /* Lightbox — imagem ampliada */
  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem 4.5rem;
    background: var(--glass-strong);
    backdrop-filter: blur(14px);
  }
  .lightbox.is-open {
    display: flex;
  }
  .lightbox .lightbox-img {
    max-width: 92vw;
    max-height: 84vh;
    object-fit: contain;
    border-radius: 4px;
    animation: lightboxIn 0.35s ease;
  }
  @keyframes lightboxIn {
    from {
      opacity: 0;
      transform: scale(0.94);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  .lightbox .lightbox-close,
  .lightbox .lightbox-nav {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--on-media);
    background: var(--glass);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: 0.3s;
  }
  .lightbox .lightbox-close:hover,
  .lightbox .lightbox-nav:hover {
    background: var(--accent-tint-strong);
  }
  .lightbox .lightbox-close {
    top: 1.25rem;
    right: 1.25rem;
  }
  .lightbox .lightbox-nav.prev {
    left: 1.25rem;
  }
  .lightbox .lightbox-nav.next {
    right: 1.25rem;
  }
  .lightbox .lightbox-dots {
    position: absolute;
    bottom: 1.75rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }
  .lightbox .lightbox-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid color-mix(in oklab, var(--on-media) 55%, transparent);
    background: transparent;
    cursor: pointer;
  }
  .lightbox .lightbox-dots button.is-active {
    background: var(--on-media);
    transform: scale(1.4);
  }
  
  .gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    border-radius: 50%;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
  
    z-index: 2;
    transition: .3s;
  }
  
  .gallery-btn:hover {
    background: var(--accent-tint);
    border-color: var(--accent);
  }
  
  .gallery-btn.prev {
    left: -24px;
  }
  
  .gallery-btn.next {
    right: -24px;
  }
  
  @media (max-width:768px){
    .gallery-track img{
      flex: 0 0 auto;
      width: auto;
      max-width: 92%;
      height: 300px;
    }
  
    .gallery-btn{
      display:none;
    }
  }
  
  /* --------------------------------------------------------------------------
     21. Footer — bloco "Vamos conversar / Iniciar um projeto"
     -------------------------------------------------------------------------- */
  .footer-cta {
    min-width: 0;
    max-width: 46rem;
  }
  .footer-cta-lede {
    margin-top: 1.75rem;
    max-width: 34rem;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--muted-foreground);
  }
  .footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.75rem;
    margin-top: 2.25rem;
  }
  .footer-cta-pill {
    white-space: nowrap;
  }
  .footer-cta-link {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.25rem;
    transition: color 0.3s ease, border-color 0.3s ease;
  }
  .footer-cta-link:hover {
    color: var(--foreground);
    border-color: var(--accent);
  }

  /* --------------------------------------------------------------------------
     22. Página "À venda"
     -------------------------------------------------------------------------- */
  .sale-hero {
    padding: 8rem 0 3rem;
  }
  @media (min-width: 768px) {
    .sale-hero {
      padding: 12rem 0 4rem;
    }
  }
  .sale-hero-title {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.01em;
    margin-top: 1rem;
    font-size: clamp(3rem, 13vw, 9rem);
    color: var(--foreground);
  }
  .sale-hero-lede {
    margin-top: 2rem;
    max-width: 44rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted-foreground);
  }
  .sale-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
    gap: 1.75rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
  }
  .sale-hero-stats .value {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    color: var(--foreground);
    line-height: 1.1;
  }
  .sale-hero-stats .label {
    margin-top: 0.5rem;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted-foreground);
  }
  .sale-section {
    padding-top: 2rem;
  }
  .sale-toolbar {
    display: grid;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  @media (min-width: 768px) {
    .sale-toolbar {
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
    }
  }
  .sale-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    min-width: 0;
  }
  .filter-chip {
    padding: 0.55rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: transparent;
    color: var(--muted-foreground);
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  }
  .filter-chip:hover {
    color: var(--foreground);
    border-color: var(--stone);
  }
  .filter-chip.is-active {
    color: var(--foreground);
    border-color: var(--accent);
    background: var(--accent-tint);
  }
  .sale-sort {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted-foreground);
  }
  .sale-sort select {
    appearance: none;
    padding: 0.55rem 2rem 0.55rem 1rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: transparent;
    color: var(--foreground);
    font-family: inherit;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    cursor: pointer;
  }
  .sale-sort select option {
    background: var(--card);
    color: var(--card-foreground);
  }
  .sale-count {
    margin: 1.75rem 0 2.5rem;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted-foreground);
  }
  .sale-empty {
    max-width: 34rem;
    margin: 2rem 0 0;
    line-height: 1.8;
    color: var(--muted-foreground);
  }
  .listing-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone);
  }
  .listing-more .arrow {
    transition: transform 0.5s ease;
  }
  .listing-card:hover .listing-more .arrow {
    transform: translateX(4px);
  }
  .nav-link.is-current {
    color: var(--foreground);
  }

  /* --------------------------------------------------------------------------
     23. Ajustes finais de responsividade
     -------------------------------------------------------------------------- */
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
  img,
  svg,
  video,
  canvas {
    max-width: 100%;
  }
  @media (max-width: 767px) {
    .footer-cta-actions {
      gap: 1rem 1.25rem;
    }
    .footer-cta-pill,
    .cta-row .pill,
    .footer-mail {
      white-space: normal;
      text-align: center;
    }
    .footer-wordmark p {
      font-size: 22vw;
    }
    .listing-specs {
      flex-wrap: wrap;
      gap: 0.75rem 1rem;
    }
    .sale-sort {
      justify-content: space-between;
    }
    .sale-sort select {
      flex: 1;
      min-width: 0;
    }
  }
  @media (max-width: 400px) {
    .hero-stats {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      row-gap: 1rem;
    }
    .filter-chip {
      padding: 0.5rem 0.85rem;
      letter-spacing: 0.12em;
    }
  }

  /* Impede que contatos longos estourem as colunas do rodapé no mobile */
  .footer-columns,
  .footer-columns > * {
    min-width: 0;
  }
  .footer-columns a,
  .footer-columns p,
  .footer-columns li {
    overflow-wrap: anywhere;
  }

  /* ---------- rodapé: empilhado no celular + ícones ---------- */
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .site-footer .eyebrow,
  .footer-cols li a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .footer-cols li + li {
    margin-top: 0.65rem;
  }
  .ftr-ico {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
    color: var(--accent);
    opacity: 0.9;
  }
  .footer-cols li a .ftr-ico {
    transition: transform 0.3s ease;
  }
  .footer-cols li a:hover .ftr-ico {
    transform: translateX(2px);
  }
  .footer-cols .social a::before {
    display: none;
  }
  @media (min-width: 768px) {
    .footer-cols {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 2.5rem;
    }
  }

  .footer-cols a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    vertical-align: middle;
  }
  .footer-cols p a {
    margin-block: 0.2rem;
  }
/* --- Marca no header e no rodapé + botão de contato em laranja --- */
.wordmark img {
  display: block;
  height: 2.75rem;
  width: auto;
}
.footer-wordmark img {
  display: block;
  width: min(100%, 60rem);
  margin-inline: auto;
  height: auto;
}
.pill-accent {
  border-color: #e07a1f;
  color: #e07a1f;
}
.pill-accent::before {
  background: #e07a1f;
}
.pill-accent:hover {
  border-color: #e07a1f;
  color: #fff;
}
@media (max-width: 760px) {
  .wordmark img { height: 2rem; }
}

  /* --------------------------------------------------------------------------
     Cabeçalho de seção com botão "Ver todo"
     -------------------------------------------------------------------------- */
  .section-head-aside {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .pill.see-all {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
  }

  /* --------------------------------------------------------------------------
     À venda — carrossel (mesma mecânica dos Projetos)
     -------------------------------------------------------------------------- */
  /* Mesmas medidas do carrossel de Projetos (herda --slide-w de .projects-carousel) */
  .listings-carousel {
    max-width: 56rem;
    margin-inline: auto;
  }
  #a-venda {
    overflow: hidden;
  }
  .listing-slide {
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .listing-slide-status {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .listing-slide-specs {
    margin-top: 0.35rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    opacity: 0.75;
  }
  .listing-slide-price {
    margin-top: 0.15rem;
    font-family: var(--font-serif);
    font-size: 1rem;
  }

  /* Um único imóvel: card centralizado, sem navegação nem cards fantasma */
  .listings-carousel.is-single .projects-nav {
    display: none;
  }
  .listings-carousel.is-single .projects-stage {
    perspective: none;
  }
  .listings-carousel.is-single .listing-slide {
    cursor: pointer;
  }

  /* --------------------------------------------------------------------------
     Catálogo completo (catalogo.html)
     -------------------------------------------------------------------------- */
  /* ---- Cabeçalho do catálogo com carrossel de fundo (igual ao hero do index) ---- */
  .catalog-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
  .catalog-hero .catalog-hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
  }
  .catalog-hero .catalog-hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
    animation: heroZoom 20s ease-in-out infinite alternate;
    pointer-events: none;
  }
  .catalog-hero .catalog-hero-slide.is-active {
    opacity: 1;
  }
  .catalog-hero .catalog-hero-veil {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.72),
      rgba(0, 0, 0, 0.55) 45%,
      var(--background)
    );
  }
  .catalog-hero .eyebrow,
  .catalog-hero .section-title,
  .catalog-hero .catalog-hero-lede,
  .catalog-hero .catalog-stat {
    position: relative;
    color: #fff;
  }
  .catalog-hero .section-title {
    text-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  }

  .catalog-hero-lede {
    max-width: 44rem;
    margin-top: 1.5rem;
  }
  .catalog-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
  }
  .catalog-stat {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }
  .catalog-stat strong {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 300;
    line-height: 1;
  }
  .catalog-stat span {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.7;
  }

  .catalog-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  .catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .catalog-filter {
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    border: 1px solid color-mix(in oklab, var(--foreground) 30%, transparent);
    background: transparent;
    color: var(--foreground);
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  }
  .catalog-filter:hover {
    border-color: var(--accent);
  }
  .catalog-filter.is-active {
    background: var(--foreground);
    border-color: var(--foreground);
    color: var(--background);
  }
  .catalog-search input {
    width: min(20rem, 70vw);
    padding: 0.7rem 1.1rem;
    border-radius: 999px;
    border: 1px solid color-mix(in oklab, var(--foreground) 25%, transparent);
    background: transparent;
    color: var(--foreground);
    font-size: 0.85rem;
  }
  .catalog-search input::placeholder {
    color: color-mix(in oklab, var(--foreground) 55%, transparent);
  }
  .catalog-search input:focus {
    outline: none;
    border-color: var(--accent);
  }

  .catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2.25rem 1.75rem;
  }
  @media (max-width: 640px) {
    .catalog-grid {
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 1.75rem 1.25rem;
    }
  }
  .catalog-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
  }
  /* Mesmo formato dos cards do carrossel de Projetos (9:16, imagem completa) */
  .catalog-figure {
    position: relative;
    display: block;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 1.35rem;
    background: #111;
    padding: 0;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  }
  .catalog-figure img {
    display: block;
    width: 100%;
    height: 100%;
    /* cover: a imagem preenche o card inteiro, igual ao carrossel de Projetos */
    object-fit: cover;
    object-position: center;
    transition: transform 1.2s ease-out;
  }
  .catalog-card:hover .catalog-figure img {
    transform: scale(1.03);
  }
  .catalog-badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: color-mix(in oklab, var(--background) 75%, transparent);
    backdrop-filter: blur(6px);
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  .catalog-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .catalog-card-sub {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.7;
  }
  .catalog-card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.2;
  }
  .catalog-card-meta {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  .catalog-empty {
    margin-top: 3rem;
    text-align: center;
    opacity: 0.7;
  }

  .catalog-modal-head {
    max-width: 44rem;
    margin: 0 auto 3rem;
    text-align: center;
  }
  .catalog-modal-head h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 300;
    margin-top: 0.75rem;
  }
  .catalog-modal-desc {
    margin-top: 1rem;
    opacity: 0.8;
  }
  .catalog-modal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    padding-bottom: 5rem;
  }
  .catalog-modal-gallery img {
    width: 100%;
    max-height: 60vh;
    border-radius: 0.85rem;
    object-fit: contain;
    background: var(--card);
  }
  .project-modal.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
  }