html, body {
      scroll-behavior: smooth;
      overflow-x: hidden;
      width: 100%;
      position: relative;
    }
    :root {
      /* Palette: Identidade Visual Pedras no Caminho */
      --bg:          #FBF7F2;      /* Off-white fundo */
      --bg-2:        #EADEC8;      /* Bege — fundo alternativo */
      --bg-dark:     #4B4930;      /* Verde oliva escuro (cor principal) */
      --bg-footer:   #5C3C1E;      /* Castanho escuro — rodapé */
      --accent:      #B89F77;      /* Dourado/Bege acentuado */
      --accent-dim:  rgba(184,159,119,0.15);
      --accent-line: rgba(184,159,119,0.25);
      --accent-2:    #9B9772;      /* Sage/olive — cor secundária da paleta */
      --text:        #2E2C1F;
      --text-light:  #FBF7F2;
      --text-muted:  rgba(46,44,31,0.65);
      --px:          24px;
      --radius:      0; /* Luxury editorial = sharp corners */
      --transition:  0.4s cubic-bezier(0.16, 1, 0.3, 1);
      
      /* Z-Index Scale */
      --z-bg:        0;
      --z-pattern:   1;
      --z-content:   10;
      --z-overlay:   40;
      --z-nav:       50;
      --z-progress:  60;
    }

    /* ============================================================
       RESET + BASE
       ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Outfit', 'Montserrat', sans-serif;
      font-weight: 400;
      color: var(--text);
      background: var(--bg);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Grain texture — película subtil sobre toda a página */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 100;
      pointer-events: none;
      opacity: 0.02;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 200px;
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    h1, h2, h3 {
      font-family: 'Josefin Sans', 'Quiche Sans', sans-serif;
      line-height: 1.1;
      letter-spacing: 0.02em;
    }

    /* ============================================================
       PROGRESS BAR
       ============================================================ */
    #progress-bar {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      width: 0%;
      background: var(--accent);
      z-index: 1000;
      transition: width 0.1s linear;
    }

    /* ============================================================
       UTILITÁRIOS
       ============================================================ */
    /* ============================================================
       UTILITÁRIOS (Apple-level foundations)
       ============================================================ */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--px);
    }

    .section-header {
      text-align: center;
      margin-bottom: clamp(60px, 10vw, 100px);
    }

    .text-eyebrow {
      display: block;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 0.65rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 20px;
    }

    .text-h2 {
      font-family: 'Josefin Sans', 'Quiche Sans', sans-serif;
      font-size: clamp(2.5rem, 6vw, 4rem);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    .text-muted {
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.6;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: 1fr;
      gap: 80px;
    }
    @media (min-width: 900px) {
      .grid-2 { grid-template-columns: repeat(2, 1fr); align-items: start; }
    }

    .section-footer {
      margin-top: 60px;
      text-align: center;
    }

    .text-center { text-align: center; }

    /* Accessibility: SEO-only content */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border-width: 0;
    }

    /* ============================================================
       REVEAL ON SCROLL
       ============================================================ */
    /* Por defeito, tudo visível (segurança se o JS falhar) */
    .rv {
      opacity: 1;
      transform: none;
      transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: transform, opacity;
    }
    
    /* Apenas se o JS carregar é que escondemos para animar */
    .js-loaded .rv {
      opacity: 0;
      transform: translateY(40px);
    }
    
    .js-loaded .rv.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* FOOTER POLISH */
    #footer {
      background: var(--bg-dark);
      color: var(--text-light);
      padding: 100px 0 60px;
      margin-top: 100px;
    }
    .footer-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
    }
    .footer-links {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .footer-links a {
      font-family: 'Quiche Sans', sans-serif;
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      opacity: 0.6;
      transition: opacity 0.3s ease;
    }
    .footer-links a:hover { opacity: 1; }
    .sep { opacity: 0.2; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      min-height: 56px;
      padding: 0 40px;
      border-radius: 0;
      font-family: 'Quiche Sans', sans-serif;
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      cursor: pointer;
      border: 1px solid transparent;
      transition: all var(--transition);
    }

    .btn-primary {
      background: var(--accent);
      color: #fff;
      border-color: var(--accent);
      box-shadow: 0 10px 30px -10px rgba(184,159,119,0.3);
    }
    .btn-primary:hover { 
      background: #9B9772; 
      border-color: #9B9772; 
      transform: translateY(-4px);
      box-shadow: 0 20px 40px -10px rgba(184,159,119,0.5);
    }

    .btn-outline {
      background: transparent;
      color: var(--text-light);
      border-color: rgba(245,245,245,0.3);
    }
    .btn-outline:hover { 
      border-color: var(--text-light); 
      background: rgba(245,245,245,0.05); 
      transform: translateY(-4px);
    }

    /* ============================================================
       SCROLL REVEAL (RV) — Advanced Blur Reveal
       ============================================================ */
    .rv {
      opacity: 0;
      transform: translateY(30px);
      filter: blur(10px);
      transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                  transform 1s cubic-bezier(0.16, 1, 0.3, 1), 
                  filter 1s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: transform, opacity, filter;
    }
    .rv.visible {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    }
    /* Fallback if JS is slow or fails */
    .no-js .rv { opacity: 1; transform: none; filter: none; }
    /* Group delays */
    .rg .rv:nth-child(1) { transition-delay: 0.0s; }
    .rg .rv:nth-child(2) { transition-delay: 0.1s; }
    .rg .rv:nth-child(3) { transition-delay: 0.2s; }
    .rg .rv:nth-child(4) { transition-delay: 0.3s; }
    .rg .rv:nth-child(5) { transition-delay: 0.4s; }
    .rg .rv:nth-child(6) { transition-delay: 0.5s; }

    /* ============================================================
       [1] NAVBAR — Glassmorphism
       ============================================================ */
    #navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: var(--z-nav);
      background: transparent;
      height: 80px;
      display: flex;
      align-items: center;
      transition: all 0.4s ease;
    }

    #navbar .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 var(--px);
    }

    #navbar.scrolled {
      height: 70px;
      backdrop-filter: blur(15px) saturate(160%);
      -webkit-backdrop-filter: blur(15px) saturate(160%);
      background: rgba(46,44,31,0.85);
      border-bottom: 1px solid rgba(184,159,119,0.1);
    }

    .nav-logo img {
      height: 50px;
      width: 50px;
      border-radius: 50%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    #navbar.scrolled .nav-logo img { transform: scale(0.9); }

    .nav-links {
      display: none;
      gap: 48px;
      align-items: center;
    }

    .nav-links a {
      color: rgba(242,240,236,0.6);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      transition: color 0.3s ease;
    }
    .nav-links a:hover { color: var(--accent); }

    .nav-cta {
      display: none;
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    .nav-cta.show { opacity: 1; }

    .menu-btn {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      z-index: var(--z-nav);
    }
    .menu-btn span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: rgba(245,242,236,0.85);
      transition: all 0.3s ease;
    }
    .menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    @media (min-width: 900px) { .menu-btn { display: none; } }

    /* Mobile overlay fullscreen */
    #mobile-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--bg-dark);
      z-index: 200;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
    }
    #mobile-overlay.open { display: flex; }
    #mobile-overlay a {
      font-family: 'Josefin Sans', sans-serif;
      font-size: clamp(1.8rem, 7vw, 2.5rem);
      font-weight: 700;
      color: var(--text-light);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      opacity: 0.85;
      transition: color 0.2s, opacity 0.2s;
    }
    #mobile-overlay a:hover { color: var(--accent); opacity: 1; }

    /* ============================================================
       [2] HERO — Editorial Layout
       ============================================================ */
    #hero {
      min-height: 100vh;
      background: var(--bg-dark);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      position: relative;
      text-align: center;
      padding: 60px 0 50px;
    }

    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('../assets/pattern.png') center / 160px repeat;
      opacity: 0.04;
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1000px;
      padding: 0 var(--px);
    }

    .hero-stamp {
      width: 120px;
      height: 120px;
      margin: 0 auto 40px;
      animation: float 6s ease-in-out infinite;
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }
    .hero-stamp img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
    }

    .hero-eyebrow {
      display: block;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 24px;
      animation: anim-reveal-up 1s 0.2s cubic-bezier(.16,1,.3,1) both;
    }

    .hero-h1 {
      margin-bottom: 16px;
      line-height: 0.85;
    }
    .hw-pedras, .hw-caminho {
      display: block;
      font-size: clamp(3rem, 12vw, 10rem);
      font-weight: 700;
      color: var(--text-light);
      letter-spacing: -0.03em;
    }
    .hw-no {
      display: block;
      font-size: clamp(0.8rem, 3vw, 1.5rem);
      font-weight: 300;
      color: var(--accent);
      letter-spacing: 0.7em;
      margin: 6px 0 16px;
      opacity: 0.6;
    }

    .hw-pedras { animation: anim-reveal-up 1.2s 0.4s cubic-bezier(.16,1,.3,1) both; }
    .hw-no { animation: anim-reveal-up 1.2s 0.6s cubic-bezier(.16,1,.3,1) both; }
    .hw-caminho { animation: anim-reveal-up 1.2s 0.8s cubic-bezier(.16,1,.3,1) both; }

    @keyframes anim-reveal-up {
      from { opacity: 0; transform: translateY(60px); filter: blur(20px); }
      to   { opacity: 1; transform: translateY(0); filter: blur(0); }
    }

    .hero-value {
      max-width: 600px;
      margin: 0 auto 40px;
      font-size: clamp(1.1rem, 2.5vw, 1.35rem);
      line-height: 1.6;
      color: rgba(251,247,242,0.85);
      animation: anim-reveal-up 1.2s 1s cubic-bezier(.16,1,.3,1) both;
    }

    .hero-ctas {
      display: flex;
      flex-direction: row;
      gap: 16px;
      align-items: center;
      justify-content: center;
      animation: anim-reveal-up 1.2s 1.2s cubic-bezier(.16,1,.3,1) both;
    }

    .hero-marquee-wrap {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      border-top: 1px solid rgba(184,159,119,0.2);
      border-bottom: 1px solid rgba(184,159,119,0.08);
      padding: 14px 0;
      background: rgba(30,28,18,0.55);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      overflow: hidden;
      /* Fade nas bordas — efeito premium */
      mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    }
    .hero-marquee-track {
      display: flex;
      width: max-content;
      animation: marquee 32s linear infinite;
      gap: 0;
      align-items: center;
    }
    .hero-marquee-item {
      white-space: nowrap;
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(251,247,242,0.65);
      display: flex;
      align-items: center;
      gap: 40px;
      padding: 0 40px;
    }
    .hero-marquee-item span {
      font-size: 1rem;
      opacity: 0.7;
      letter-spacing: 0;
      filter: saturate(0.6) brightness(0.9);
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .hero-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin: 40px 0;
      opacity: 0.6;
    }
    .hero-divider-line { width: 40px; height: 1px; background: var(--accent); }
    .hero-divider-text { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }

    .hero-highlights {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 24px;
    }
    .hero-highlight {
      border: 1px solid rgba(184,159,119,0.2);
      padding: 8px 20px;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.8);
    }

    .hero-social-proof {
      margin-top: 24px;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
    }
    .hero-stars { color: var(--accent); letter-spacing: 4px; }

    .hero-status {
      margin-top: 24px;
      font-size: 0.7rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      text-transform: uppercase;
      letter-spacing: 0.2em;
    }
    .status-dot { width: 8px; height: 8px; border-radius: 50%; display: block; }
    .status-open { color: #2ecc71; }
    .status-open .status-dot { background: #2ecc71; box-shadow: 0 0 10px #2ecc71; }

    .hero-phone {
      margin-top: 16px;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.4);
    }
    .hero-phone a { color: var(--accent); font-weight: 700; text-decoration: underline; }

    /* ── Subtítulo SEO — desktop ── */
    .hero-subtitle {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.4);
      letter-spacing: 0.05em;
      margin-bottom: 20px;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }

    /* ── Mobile hero — redesign editorial ── */
    @media (max-width: 559px) {
      #hero { padding: 80px 0 64px; }
      .hero-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      /* Eyebrow */
      #hero .text-eyebrow { margin-bottom: 20px; font-size: 0.6rem; }

      /* Título */
      .hero-h1 { margin-bottom: 20px; }
      .hw-no { margin: 2px 0 10px; }

      /* Subtítulo SEO */
      .hero-subtitle {
        font-size: 0.75rem;
        margin-bottom: 28px;
        padding: 0 8px;
        color: rgba(255,255,255,0.35);
      }

      /* Social proof — no fundo */
      .hero-social-proof {
        order: 10;
        margin-top: 28px;
        margin-bottom: 0;
        font-size: 0.62rem;
      }

      /* Highlights — 2 por linha em grid */
      .hero-highlights {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 40px;
        width: 100%;
        padding: 0 4px;
      }
      .hero-highlight {
        border: 1px solid rgba(184,159,119,0.15);
        padding: 10px 8px;
        font-size: 0.58rem;
        letter-spacing: 0.08em;
        color: rgba(255,255,255,0.55);
        text-align: center;
        white-space: normal;
      }

      /* CTAs — primary full width, secondary como texto */
      .hero-ctas { width: 100%; gap: 16px; }
      .hero-ctas .btn-primary { width: 100%; }
      .hero-ctas .btn-outline {
        background: transparent;
        border: none;
        min-height: 36px;
        font-size: 0.7rem;
        opacity: 0.45;
        letter-spacing: 0.12em;
        text-decoration: underline;
        text-underline-offset: 4px;
        box-shadow: none;
        transform: none !important;
      }
      .hero-ctas .btn-outline:hover { opacity: 0.8; }

      /* Status e WhatsApp */
      .hero-status { margin-top: 28px; font-size: 0.7rem; }
      .hero-phone { margin-top: 14px; font-size: 0.8rem; }
    }

    /* ── Social proof ── */
    .hero-social-proof {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.64rem;
      color: rgba(242,240,236,0.42);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      animation: anim-fade-up 0.7s 1.24s ease both;
    }
    .hero-social-proof .hero-stars {
      color: var(--accent);
      letter-spacing: 3px;
      margin-right: 4px;
    }

    /* ── Seta de scroll ── */
    .scroll-arrow {
      position: absolute;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      opacity: 0.40;
      animation: bounce 2.5s 2.2s ease-in-out infinite;
    }
    .scroll-arrow svg {
      width: 18px;
      height: 18px;
      stroke: var(--accent);
    }

    @keyframes anim-fade-up {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(7px); }
    }

    /* ============================================================
       [3] CONCEITO — Editorial Luxury Layout
       ============================================================ */
    #conceito {
      background: var(--bg-dark);
      padding: clamp(80px, 12vw, 160px) 0;
      overflow: hidden;
      position: relative;
    }

    #conceito::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('../assets/pattern.png') center / 160px repeat;
      opacity: 0.025;
      pointer-events: none;
    }

    .conceito-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--px);
      position: relative;
      z-index: 1;
    }

    .conceito-eyebrow {
      display: flex;
      align-items: center;
      gap: 24px;
      margin-bottom: clamp(48px, 8vw, 80px);
    }

    .conceito-line {
      flex: 1;
      height: 1px;
      background: rgba(184,159,119,0.2);
    }

    .conceito-body {
      display: grid;
      grid-template-columns: 1fr;
      gap: 60px;
    }

    @media (min-width: 900px) {
      .conceito-body {
        grid-template-columns: 1fr 1.2fr;
        gap: 100px;
        align-items: start;
      }
    }

    .conceito-heading {
      font-family: 'Josefin Sans', sans-serif;
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--text-light);
      margin-bottom: 56px;
    }

    .conceito-stats {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .conceito-stat {
      display: flex;
      align-items: center;
      gap: 20px;
      padding-top: 24px;
      border-top: 1px solid rgba(184,159,119,0.15);
    }

    .conceito-stat-num {
      font-family: 'Josefin Sans', sans-serif;
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 700;
      color: var(--accent);
      line-height: 1;
      min-width: 70px;
    }

    .conceito-stat-label {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: rgba(251,247,242,0.45);
      line-height: 1.6;
    }

    .conceito-col-text {
      padding-top: 8px;
    }

    .conceito-p {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(0.95rem, 1.8vw, 1.05rem);
      line-height: 1.8;
      color: rgba(251,247,242,0.7);
      margin-bottom: 28px;
    }

    .conceito-p--lead {
      font-size: clamp(1.05rem, 2vw, 1.2rem);
      color: rgba(251,247,242,0.9);
      font-weight: 400;
    }

    .conceito-p strong {
      color: var(--accent);
      font-weight: 600;
    }

    .conceito-cta {
      display: inline-flex;
      margin-top: 16px;
    }

    /* ============================================================
       [4] SERVIÇOS — Museum Spec Aesthetic (Apple Level)
       ============================================================ */
    .premium-services-spec {
      background: var(--bg-dark);
      padding: 80px 0;
      color: var(--text-light);
      position: relative;
    }

    /* ============================================================
       [4] SERVIÇOS — Apple Product Spec
       ============================================================ */
    #servicos {
      background: var(--bg-dark);
      padding: 140px 0;
    }

    .spec-header {
      margin-bottom: 80px;
      text-align: center;
    }

    .spec-label {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      color: var(--accent);
      margin-bottom: 20px;
      display: block;
    }

    .spec-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .spec-item {
      background: #2E2C1F;
      border: 1px solid rgba(255,255,255,0.05);
      padding: 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
    }

    .spec-item:hover {
      border-color: rgba(255,255,255,0.2);
      background: #3a3520;
      transform: scale(1.005);
    }

    /* Neuromarketing Highlight */
    .spec-item.combo-highlight {
      border: 1px solid rgba(184,159,119,0.3);
      background: linear-gradient(90deg, #2E2C1F 0%, #362e1c 100%);
    }
    .spec-item.combo-highlight:hover {
      border-color: var(--accent);
    }

    .spec-badge {
      position: absolute;
      top: -10px;
      right: 40px;
      background: var(--accent);
      color: #000;
      padding: 4px 12px;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      border-radius: 2px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    }

    .spec-main {
      display: flex;
      align-items: center;
      gap: 30px;
      flex: 1;
    }

    .spec-id {
      font-size: 0.7rem;
      color: var(--accent);
      font-weight: 700;
      opacity: 0.5;
      font-family: 'Montserrat', sans-serif;
    }

    .spec-info {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .spec-title {
      font-size: clamp(1.4rem, 4vw, 1.8rem);
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.01em;
    }

    .spec-desc-lux {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.5);
      line-height: 1.5;
      max-width: 500px;
    }

    .spec-right-wrap {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .spec-price {
      font-size: 2rem;
      font-weight: 600;
      color: #fff;
      font-family: 'Josefin Sans', sans-serif;
    }

    .btn-apple-book {
      background: #fff;
      color: #000;
      border: none;
      padding: 18px 40px;
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      cursor: pointer;
      transition: all 0.3s;
    }

    .btn-apple-book:hover {
      background: var(--accent);
      transform: translateY(-2px);
    }

    @media (max-width: 900px) {
      .spec-item {
        flex-direction: column;
        gap: 12px;
        padding: 24px 20px;
        margin-bottom: 8px;
        min-height: auto;
      }
      .spec-main { 
        flex-direction: row; 
        align-items: center; 
        gap: 15px; 
        width: 100%;
      }
      .spec-id {
        opacity: 0.3;
        font-size: 0.6rem;
      }
      .spec-title {
        font-size: 1.2rem;
        flex: 1;
      }
      .spec-desc-lux {
        font-size: 0.85rem;
        margin-top: -5px;
        opacity: 0.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
      .spec-right-wrap { 
        width: 100%; 
        justify-content: space-between; 
        align-items: center;
        border-top: 1px solid rgba(255,255,255,0.03);
        padding-top: 15px;
        margin-top: 5px;
      }
      .spec-price {
        font-size: 1.4rem;
      }
      .btn-apple-book {
        padding: 12px 20px;
        font-size: 0.7rem;
      }
      .spec-badge { 
        right: 15px;
        top: -8px;
        font-size: 0.55rem;
        padding: 3px 8px;
      }
    }

    /* ============================================================
       [5] GALERIA — Editorial Bento Grid
       ============================================================ */
    #galeria {
      background: var(--bg-dark);
      padding: 120px 0;
    }

    .galeria-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px;
      margin-bottom: 60px;
    }

    .galeria-item {
      overflow: hidden;
      position: relative;
      cursor: pointer;
      background: rgba(255,255,255,0.03);
    }

    .galeria-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
      display: block;
    }

    .galeria-item:hover img { transform: scale(1.08); }

    /* Bento Spans */
    .g-span-2 { grid-column: span 2; aspect-ratio: 1; }
    .g-span-3 { grid-column: span 3; aspect-ratio: 4/3; }
    .g-span-6 { grid-column: span 6; aspect-ratio: 21/9; }
    .g-row-2 { grid-row: span 2; aspect-ratio: auto; }
    .g-row-1 { grid-row: span 1; }

    @media (max-width: 900px) {
      .galeria-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
      .g-span-2, .g-span-3, .g-span-6 { grid-column: span 1; aspect-ratio: 1; }
      .g-row-2 { grid-row: span 1; }
    }

    /* ============================================================
       [6] COMO FUNCIONA
       ============================================================ */
    #plano {
      background: var(--bg-2);
      padding: 120px 0;
    }

    .plano-step {
      display: flex;
      gap: 40px;
      margin-bottom: 80px;
      align-items: center;
    }
    .step-number {
      font-size: 5rem;
      font-weight: 700;
      color: var(--accent);
      opacity: 0.2;
      line-height: 1;
      font-family: 'Quiche Sans', sans-serif;
    }
    .step-content h3 { font-size: 1.8rem; margin-bottom: 12px; }
    .step-content p { font-size: 1.1rem; color: var(--text-muted); max-width: 500px; }

    /* ============================================================
       [7] TESTEMUNHOS & METRICS
       ============================================================ */
    #testemunhos {
      background: var(--bg);
      padding: 140px 0;
    }

    .metrics-bar {
      display: flex;
      justify-content: center;
      gap: 80px;
      margin-bottom: 100px;
      padding: 60px;
      background: rgba(184,159,119,0.03);
      border-top: 1px solid rgba(184,159,119,0.1);
      border-bottom: 1px solid rgba(184,159,119,0.1);
      flex-wrap: wrap;
    }
    .metric { display: flex; flex-direction: column; gap: 8px; }
    .metric-value {
      font-size: 4rem;
      font-weight: 700;
      color: var(--accent);
      line-height: 1;
    }
    .metric-label {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: rgba(46,44,31,0.4);
    }

    .testemunhos-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .testemunho-card {
      background: #fff;
      padding: 60px 48px;
      border: 1px solid rgba(184,159,119,0.08);
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 10px 30px -15px rgba(0,0,0,0.05);
    }
    .testemunho-card:hover {
      transform: translateY(-15px);
      box-shadow: 0 40px 80px -20px rgba(46,44,31,0.12);
      border-color: var(--accent);
    }    /* ============================================================
       [8] AGENDAMENTO — Premium Booking Flow
       ============================================================ */
    #agendamento {
      background: var(--bg-dark);
      padding: 120px 0;
      position: relative;
    }

    .agendamento-header { text-align: center; margin-bottom: 60px; }
    .agendamento-sub { color: rgba(255,255,255,0.6); max-width: 500px; margin: 20px auto 0; }

    /* Live Availability Preview */
    .avail-preview { margin: 44px auto 0; max-width: 480px; }
    .avail-status-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 24px;
    }
    .avail-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.15);
      flex-shrink: 0;
      transition: background 0.6s, box-shadow 0.6s;
    }
    .avail-dot.green {
      background: #4ade80;
      box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4);
      animation: pulse-avail 2.5s infinite;
    }
    @keyframes pulse-avail {
      0%   { box-shadow: 0 0 0 0   rgba(74, 222, 128, 0.4); }
      60%  { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
      100% { box-shadow: 0 0 0 0   rgba(74, 222, 128, 0); }
    }
    .avail-status-text {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: rgba(255,255,255,0.35);
    }
    .avail-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }
    .avail-chip {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.1);
      color: rgba(255,255,255,0.75);
      padding: 14px 22px;
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: border-color 0.3s, color 0.3s, background 0.3s;
      letter-spacing: 0.05em;
      white-space: nowrap;
      line-height: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }
    .avail-chip:hover {
      border-color: var(--accent);
      color: #fff;
      background: rgba(184,159,119,0.07);
    }
    .avail-chip-label {
      font-size: 0.6rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--accent);
      opacity: 0.8;
    }

    .booking-container {
      max-width: 800px;
      margin: 0 auto;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(184,159,119,0.1);
      padding: 60px;
      min-height: 400px;
      position: relative;
    }

    .steps-indicator {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 60px;
    }
    .step-ind {
      flex: 1;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      color: rgba(255,255,255,0.3);
      text-transform: uppercase;
      padding-bottom: 20px;
      border-bottom: 2px solid rgba(255,255,255,0.05);
      transition: all 0.4s ease;
      text-align: center;
    }
    .step-ind.active { color: var(--accent); border-bottom-color: var(--accent); }

    .booking-step { display: none; animation: anim-reveal-up 0.6s ease both; }
    .booking-step.active { display: block; }

    #booking-success { display: none; text-align: center; padding: 40px 0; animation: anim-reveal-up 0.6s ease both; }
    #booking-success.active { display: block; }
    .success-icon { width: 80px; height: 80px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 30px; color: #fff; }
    .success-icon svg { width: 40px; height: 40px; }
    .success-title { font-size: 2rem; color: #fff; margin-bottom: 15px; }
    .success-sub { color: rgba(255,255,255,0.6); margin-bottom: 40px; }

    .servico-btn-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
    @media (min-width: 600px) { .servico-btn-grid { grid-template-columns: repeat(2, 1fr); } }

    .servico-btn {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 30px;
      transition: all 0.4s ease;
      text-align: left;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .servico-btn:hover, .servico-btn.selected { border-color: var(--accent); background: rgba(184,159,119,0.1); }
    .servico-btn-nome { font-size: 1.2rem; font-weight: 700; color: #fff; }
    .servico-btn-preco { font-size: 1.4rem; color: var(--accent); font-weight: 600; }

    /* Calendar */
    .calendar-nav { display: flex; align-items: center; justify-content: center; gap: 30px; margin-bottom: 30px; color: #fff; }
    .calendar-month { font-family: 'Josefin Sans', sans-serif; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.1em; }
    .calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; }
    .cal-day-name { text-align: center; font-size: 0.7rem; color: rgba(255,255,255,0.3); padding-bottom: 10px; }
    .cal-day {
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.03);
      color: rgba(255,255,255,0.6);
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.3s ease;
      border: 1px solid transparent;
    }
    .cal-day:hover:not(.disabled) { background: rgba(184,159,119,0.2); border-color: var(--accent); color: #fff; }
    .cal-day.selected { background: var(--accent); color: #fff; border-color: var(--accent); }
    .cal-day.disabled { opacity: 0.1; cursor: not-allowed; }
    .cal-day.today { color: var(--accent); font-weight: 700; }

    /* Slots */
    .slots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
    @media (min-width: 600px) { .slots-grid { grid-template-columns: repeat(4, 1fr); } }
    .slot-btn {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 15px;
      color: #fff;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .slot-btn:hover { border-color: var(--accent); background: rgba(184,159,119,0.1); }
    .slot-btn.selected { background: var(--accent); border-color: var(--accent); }

    /* Form */
    .booking-form { display: flex; flex-direction: column; gap: 24px; }
    .form-group { display: flex; flex-direction: column; gap: 10px; }
    .form-group label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); }
    .form-group input {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 16px;
      color: #fff;
      font-family: 'Outfit', sans-serif;
      font-size: 1rem;
      transition: border-color 0.3s ease;
    }
    .form-group input:focus { outline: none; border-color: var(--accent); }

    .step-nav { display: flex; gap: 20px; margin-top: 40px; }
    .btn-back { background: transparent; border: none; color: rgba(255,255,255,0.4); cursor: pointer; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; }
    .btn-back:hover { color: #fff; }

    /* FAQ */
    .faq-section { margin-top: 100px; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 80px; }
    .faq-list { display: flex; flex-direction: column; gap: 20px; }
    .faq-item { background: #fff; border: 1px solid rgba(0,0,0,0.05); overflow: hidden; }
    .faq-question {
      width: 100%;
      padding: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: transparent;
      border: none;
      font-family: 'Josefin Sans', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      text-align: left;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    .faq-question:hover { background: var(--bg-2); }
    .faq-icon { font-size: 1.4rem; color: var(--accent); transition: transform 0.3s ease; }
    .faq-item.active .faq-icon { transform: rotate(45deg); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
    .faq-item.active .faq-answer { max-height: 400px; }
    .faq-answer-inner { padding: 0 30px 30px; color: var(--text-muted); line-height: 1.6; }

    /* Info Bloco */
    .info-wrap { display: flex; flex-direction: column; gap: 40px; }
    .info-bloco h3 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 15px; }
    .info-bloco p { font-size: 1.1rem; }
    .horario-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
    .horario-table td { padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.03); font-size: 0.95rem; }
    .horario-table td:last-child { text-align: right; font-weight: 600; }
    .fechado td { color: rgba(0,0,0,0.2); }

    .map-wrap iframe { width: 100%; height: 100%; min-height: 400px; border: none; filter: grayscale(1) contrast(1.1); transition: filter 0.4s ease; }
    .map-wrap:hover iframe { filter: grayscale(0) contrast(1); }

    /* ============================================================
       [10] EDITORIAL FOOTER
       ============================================================ */
    .editorial-footer {
      background: #5C3C1E;
      padding: 100px 0 40px;
      color: #fff;
      border-top: 1px solid rgba(184,159,119,0.1);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 80px;
    }
    @media (max-width: 900px) {
      .editorial-footer { padding: 56px 0 28px; }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        margin-bottom: 32px;
        text-align: center;
      }
      .footer-brand { grid-column: 1 / -1; padding-bottom: 32px; }
      .footer-nav, .footer-contact {
        padding: 24px 16px;
        border-top: 1px solid rgba(255,255,255,0.06);
      }
      .footer-hours {
        grid-column: 1 / -1;
        padding: 24px 0;
        border-top: 1px solid rgba(255,255,255,0.06);
      }
      .footer-nav a { padding: 0; border-right: none; }
      .footer-contact p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
      .footer-phone { font-size: 1rem; }
      .footer-hours p { font-size: 0.9rem; }
    }
    .footer-logo {
      width: 140px;
      margin-bottom: 28px;
      border-radius: 50%;
      opacity: 0.92;
      transition: opacity 0.3s ease;
    }
    .footer-logo:hover { opacity: 1; }
    .footer-desc { color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 300px; font-size: 0.95rem; }
    @media (max-width: 900px) {
      .footer-desc { margin: 0 auto 24px; }
      .footer-nav, .footer-contact, .footer-hours { align-items: center; }
      .footer-logo { margin: 0 auto 24px; }
    }
    
    .footer-title {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--accent);
      margin-bottom: 30px;
    }
    .footer-nav, .footer-contact, .footer-hours { display: flex; flex-direction: column; gap: 12px; }
    .footer-nav a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
    .footer-nav a:hover { color: var(--accent); }
    
    .footer-phone { font-size: 1.2rem; font-weight: 700; color: #fff; margin-top: 10px; }
    .footer-hours p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

    .footer-social-new { display: flex; gap: 15px; margin-top: 30px; }
    @media (max-width: 900px) { .footer-social-new { justify-content: center; } }
    .footer-social-new a {
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      color: rgba(255,255,255,0.6);
    }
    .footer-social-new a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }

    .footer-bottom {
      padding-top: 40px;
      border-top: 1px solid rgba(255,255,255,0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: rgba(255,255,255,0.3);
      font-size: 0.85rem;
    }
    @media (max-width: 600px) {
      .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    }
    .footer-bottom-links { display: flex; gap: 24px; }
    .footer-bottom-links a { color: inherit; }
    .footer-bottom-links a:hover { color: #fff; }

    /* ============================================================
       [8] AGENDAMENTO — Obsidian & Gold Spec
       ============================================================ */
    #agendamento {
      background: var(--bg-dark);
      padding: 140px 0;
      border-top: 1px solid rgba(255,255,255,0.05);
      position: relative;
      overflow: hidden;
    }

    .agendamento-inner {
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
    }

    .booking-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.95);
      backdrop-filter: blur(40px) saturate(180%);
      -webkit-backdrop-filter: blur(40px) saturate(180%);
      z-index: 5000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .booking-overlay.open { display: flex; animation: fade-in 0.8s cubic-bezier(0.16, 1, 0.3, 1); }

    .booking-modal-content {
      background: #2E2C1F;
      width: 100%;
      max-width: 850px;
      height: 85vh;
      max-height: 700px;
      position: relative;
      border: 1px solid rgba(255,255,255,0.08);
      display: flex;
      flex-direction: column;
      box-shadow: 0 100px 200px rgba(0,0,0,0.9);
    }

    .modal-scroll-area {
      flex: 1;
      overflow-y: auto;
      padding: clamp(40px, 8vw, 80px);
      scrollbar-width: none;
    }
    .modal-scroll-area::-webkit-scrollbar { display: none; }

    .h-line-premium {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(184,159,119,0.3), transparent);
      margin: 60px 0;
      width: 100%;
    }

    .booking-close {
      position: absolute;
      top: 30px;
      right: 30px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.1);
      color: #fff;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      border-radius: 50%;
      z-index: 100;
    }
    .booking-close:hover { background: #fff; color: #000; transform: rotate(90deg); }

    .booking-header-new { 
      margin-bottom: 60px; 
      border-bottom: 1px solid rgba(255,255,255,0.05);
      padding-bottom: 40px;
    }
    .booking-header-new .text-eyebrow { color: var(--accent); font-weight: 700; font-size: 0.75rem; margin-bottom: 15px; display: block; }
    .booking-header-new h2 { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 700; color: #fff; letter-spacing: -0.04em; }

    .b-step { display: none; }
    .b-step.active { display: block; animation: slide-up-premium 1s cubic-bezier(0.16, 1, 0.3, 1); }

    /* Calendar Grid Obsidian */
    .calendar-luxury { max-width: 100%; }
    .cal-nav-luxury {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 50px;
    }
    .cal-nav-luxury span { font-family: 'Josefin Sans', sans-serif; font-size: 1.8rem; font-weight: 700; color: #fff; }
    .cal-nav-luxury button { 
      background: none; 
      border: 1px solid rgba(255,255,255,0.1); 
      color: #fff; 
      width: 44px; 
      height: 44px; 
      border-radius: 50%; 
      cursor: pointer; 
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }
    .cal-nav-luxury button:hover { border-color: var(--accent); color: var(--accent); }

    .cal-grid-luxury {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 1px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.1);
    }
    .cal-day-lux {
      background: #2E2C1F;
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Josefin Sans', sans-serif;
      font-size: 1.2rem;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      color: rgba(255,255,255,0.3);
    }
    .cal-day-lux.available { color: #fff; }
    .cal-day-lux.today { color: var(--accent); font-weight: 700; }
    .cal-day-lux:hover:not(.empty):not(.disabled) { background: #1a1a1a; color: var(--accent); }
    .cal-day-lux.selected { background: var(--accent); color: #000 !important; font-weight: 700; }
    .cal-day-lux.disabled { opacity: 0.05; cursor: not-allowed; }
    .cal-day-lux.header { background: rgba(255,255,255,0.02); color: rgba(255,255,255,0.2); font-size: 0.8rem; font-weight: 700; }

    /* Slots Refined */
    .slots-luxury {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
      gap: 12px;
      margin: 40px 0;
    }
    .slot-lux {
      padding: 14px 10px;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.08);
      text-align: center;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 4px;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      font-family: 'Montserrat', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      color: rgba(255,255,255,0.5);
    }
    .slot-start { font-size: 0.95rem; font-weight: 600; }
    .slot-end   { font-size: 0.65rem; font-weight: 400; opacity: 0.45; letter-spacing: 0.05em; }
    .slot-lux:hover { border-color: var(--accent); color: #fff; background: rgba(184,159,119,0.05); }
    .slot-lux:hover .slot-end { opacity: 0.7; }
    .slot-lux.selected { background: #fff; color: #000; border-color: #fff; transform: scale(1.05); }
    .slot-lux.selected .slot-end { opacity: 0.5; }
    .slot-lux.slot-unavail { opacity: 0.08; cursor: not-allowed; text-decoration: line-through; pointer-events: none; }

    /* Service Selection Cards */
    .service-cards-lux {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 40px;
    }
    .service-card-lux {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 28px 22px 22px;
      text-align: left;
      cursor: pointer;
      transition: border-color 0.3s, background 0.3s;
      position: relative;
    }
    .service-card-lux:hover {
      border-color: var(--accent);
      background: rgba(184,159,119,0.06);
    }
    .scl-name {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
      letter-spacing: 0.02em;
    }
    .scl-meta {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.35);
    }
    .scl-meta strong { color: var(--accent); font-weight: 700; }
    .scl-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.55rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--accent);
      border: 1px solid rgba(184,159,119,0.35);
      padding: 3px 7px;
    }
    @media (max-width: 480px) {
      .service-cards-lux { grid-template-columns: 1fr; }
    }

    /* Form Premium */
    .b-form-luxury { display: grid; gap: 40px; margin-top: 60px; }
    .input-wrap-premium { position: relative; }
    .input-wrap-premium label {
      position: absolute;
      top: -15px;
      left: 0;
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--accent);
      font-weight: 700;
    }
    .b-form-luxury input {
      background: none;
      border: none;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      padding: 20px 0 10px;
      color: #fff;
      font-family: 'Outfit', sans-serif;
      font-size: 1.4rem;
      width: 100%;
      transition: all 0.3s;
    }
    .b-form-luxury input::placeholder { color: rgba(255,255,255,0.05); }
    .b-form-luxury input:focus { outline: none; border-color: var(--accent); }

    .btn-confirm-luxury {
      width: 100%;
      padding: 25px;
      background: #fff;
      color: #000;
      border: none;
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.3em;
      font-size: 0.9rem;
      cursor: pointer;
      margin-top: 60px;
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .btn-confirm-luxury:disabled { background: #3a3520; color: rgba(255,255,255,0.1); cursor: not-allowed; border: 1px solid rgba(255,255,255,0.05); }
    .btn-confirm-luxury:hover:not(:disabled) { background: var(--accent); transform: scale(1.02); box-shadow: 0 30px 60px rgba(0,0,0,0.4); }

    .btn-back-luxury {
      background: none;
      border: none;
      color: rgba(255,255,255,0.3);
      cursor: pointer;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      margin-top: 30px;
      transition: color 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .btn-back-luxury:hover { color: #fff; }

    .summary-card-premium {
      background: #2E2C1F;
      border: 1px solid rgba(255,255,255,0.05);
      padding: 40px;
      margin-bottom: 50px;
      position: relative;
      text-align: left;
    }
    .summary-card-premium::before {
      content: "";
      position: absolute;
      top: 0; left: 0; width: 4px; height: 100%;
      background: var(--accent);
    }

    @keyframes slide-up-premium {
      from { transform: translateY(40px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    @media (max-width: 600px) {
      .booking-overlay {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        align-items: flex-end !important; /* Anchor to bottom */
      }
      .booking-modal-content { 
        height: 92vh !important; /* Leave a small gap at top for "sheet" look */
        width: 100% !important;
        max-width: 100% !important;
        max-height: 92vh !important; 
        border-radius: 24px 24px 0 0 !important; /* Rounded top corners like iOS */
        background: #2E2C1F !important;
        position: relative !important;
        transform: translateY(100%);
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
        display: flex !important;
        flex-direction: column !important;
      }
      .booking-overlay.open .booking-modal-content {
        transform: translateY(0);
      }

      .modal-scroll-area { 
        padding: 60px 12px 40px !important; 
        width: 100% !important;
        box-sizing: border-box !important;
      }

      /* Visual Handle for the sheet */
      .booking-modal-content::after {
        content: "";
        position: absolute;
        top: 12px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background: rgba(255,255,255,0.1);
        border-radius: 10px;
      }

      .booking-close {
        top: 20px !important;
        right: 20px !important;
        background: rgba(255,255,255,0.05) !important;
        color: #fff !important;
        width: 36px !important;
        height: 36px !important;
        font-size: 1rem !important;
      }
      
      .booking-header-new {
        margin-bottom: 30px !important;
      }
      .booking-header-new h2 {
        font-size: 1.5rem !important;
      }

      .cal-grid-luxury {
        grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
        gap: 1px !important;
      }
      .cal-day-lux {
        font-size: 0.85rem !important;
        height: 50px !important;
      }
    }

    /* Responsive Grid */
    @media (min-width: 900px) {
      .problema-cards { grid-template-columns: repeat(3, 1fr); }
      .nav-links { display: flex; }
      .slots-grid { grid-template-columns: repeat(5, 1fr); }
    }

    /* [7] FEEDBACK — título grande editorial */
    #feedback .text-h2 {
      font-size: clamp(3.5rem, 9vw, 8rem);
      letter-spacing: -0.03em;
      line-height: 1;
      color: var(--text-light);
    }
    #feedback .text-eyebrow {
      color: var(--accent);
    }

    /* [7] FEEDBACK LUXURY CAROUSEL */
    .feedback-luxury {
      background: #2E2C1F;
      padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 6vw, 80px);
      overflow: hidden;
      position: relative;
    }
    .feedback-viewport {
      margin-top: clamp(30px, 4vw, 50px);
      position: relative;
    }
    .feedback-track {
      display: flex;
      gap: 30px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding: 20px var(--px) 50px;
      scrollbar-width: none; 
      -ms-overflow-style: none;
      scroll-behavior: smooth;
      cursor: grab; /* Indica que pode ser agarrado */
    }
    .feedback-track.is-dragging {
      cursor: grabbing;
      scroll-behavior: auto !important;
      scroll-snap-type: none !important;
      user-select: none !important; /* Impede seleção de texto ao arrastar */
      -webkit-user-select: none;
    }
    .feedback-track.is-dragging .feedback-card {
      pointer-events: none !important; /* Impede que os cards interceptem o movimento */
    }
    .feedback-track::-webkit-scrollbar { display: none; }

    .author-meta { display: none; }

    /* Navigation Buttons */
    .feedback-nav {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      padding: 0 40px;
      pointer-events: none;
      z-index: 10;
    }
    .nav-btn {
      width: 50px;
      height: 50px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 50%;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      pointer-events: auto;
      transition: all 0.4s var(--transition);
      backdrop-filter: blur(10px);
    }
    .nav-btn:hover {
      background: var(--accent);
      border-color: var(--accent);
      color: #000;
      transform: scale(1.1);
    }
    @media (max-width: 900px) {
      .feedback-nav { display: none; } /* Hide buttons on mobile to focus on swipe */
    }

    .feedback-card {
      flex: 0 0 450px;
      scroll-snap-align: center;
      transition: transform 0.6s var(--transition);
    }
    .card-inner {
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.05);
      padding: 60px 50px;
      height: 100%;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: all 0.5s var(--transition);
    }
    .feedback-card:hover { transform: translateY(-10px); }
    .feedback-card:hover .card-inner {
      border-color: var(--accent);
      background: rgba(184,159,119,0.04);
    }
    .quote-icon { margin-bottom: 30px; color: var(--accent); opacity: 0.4; }
    .rating-gold { color: var(--accent); font-size: 0.85rem; margin-bottom: 25px; letter-spacing: 3px; }
    .feedback-text { 
      font-size: 1.35rem; 
      color: #fff; 
      line-height: 1.5; 
      margin-bottom: 45px;
      font-family: 'Outfit', sans-serif;
      font-weight: 300;
      font-style: italic;
    }
    .feedback-author { 
      margin-top: auto; 
      border-top: 1px solid rgba(255,255,255,0.05); 
      padding-top: 30px; 
    }
    .author-name { 
      display: block; 
      font-family: 'Josefin Sans', sans-serif; 
      font-weight: 700; 
      font-size: 1.2rem; 
      color: #fff; 
      margin-bottom: 5px;
    }
    .author-meta { 
      font-size: 0.7rem; 
      text-transform: uppercase; 
      letter-spacing: 0.15em; 
      color: var(--accent); 
      opacity: 0.8; 
    }

    .feedback-hint {
      display: flex;
      align-items: center;
      gap: 25px;
      margin-top: 20px;
      color: rgba(255,255,255,0.2);
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.25em;
      padding: 0 var(--px);
    }
    .hint-line {
      height: 1px;
      flex: 1;
      background: linear-gradient(90deg, rgba(255,255,255,0.1), transparent);
      position: relative;
      overflow: hidden;
    }
    .hint-line::after {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      animation: hint-slide 3s infinite;
    }
    @keyframes hint-slide {
      0% { left: -100%; }
      50% { left: 100%; }
      100% { left: 100%; }
    }

    @media (max-width: 900px) {
      .feedback-card { flex: 0 0 88vw; }
      .card-inner { padding: 45px 35px; }
      .feedback-text { font-size: 1.15rem; }
      .feedback-track { gap: 20px; }
    }

    /* [9] LOCATION LUXURY */
    .location-luxury {
      padding: clamp(80px, 12vw, 150px) 0;
      background: var(--bg);
    }
    .location-container {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 60px;
      margin-top: 60px;
    }
    .map-premium-wrap {
      position: relative;
      height: 500px;
      background: var(--bg-dark);
      overflow: hidden;
      border: 1px solid rgba(0,0,0,0.05);
    }
    .map-premium-wrap iframe {
      width: 100%;
      height: 100%;
      border: 0;
      filter: grayscale(1) invert(0.92) contrast(1.2); /* Obsidian Map Filter */
      opacity: 0.8;
      transition: all 0.5s var(--transition);
    }
    .map-premium-wrap:hover iframe {
      filter: grayscale(0.5) invert(0) contrast(1);
      opacity: 1;
    }
    .map-overlay {
      position: absolute;
      bottom: 30px;
      left: 30px;
      z-index: 5;
    }
    .btn-gps {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--bg-dark);
      color: #fff;
      padding: 15px 25px;
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 0.75rem;
      border: 1px solid var(--accent);
      transition: all 0.4s var(--transition);
    }
    .btn-gps:hover {
      background: var(--accent);
      color: #000;
    }

    .location-info {
      display: flex;
      flex-direction: column;
      gap: 50px;
    }
    .info-group {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .info-label {
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.25em;
      color: var(--accent);
      font-weight: 700;
    }
    .info-val {
      font-size: 1.1rem;
      font-family: 'Outfit', sans-serif;
      line-height: 1.6;
      color: var(--text);
    }
    .horario-list {
      list-style: none;
      padding: 0;
    }
    .horario-list li {
      display: flex;
      justify-content: space-between;
      padding: 12px 0;
      border-bottom: 1px solid rgba(0,0,0,0.05);
      font-family: 'Outfit', sans-serif;
    }
    .horario-list li span { opacity: 0.7; }
    .horario-list li strong { color: var(--text); font-weight: 600; }
    .horario-list li.closed { opacity: 0.4; }

    .loc-btn.main {
      display: inline-flex;
      align-items: center;
      gap: 15px;
      padding: 20px 40px;
      background: var(--bg-dark);
      color: #fff;
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      font-size: 0.9rem;
      transition: all 0.4s var(--transition);
    }
    .loc-btn.main:hover {
      background: var(--accent);
      color: #000;
      transform: translateY(-5px);
    }

    @media (max-width: 900px) {
      .location-container {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .map-premium-wrap { height: 350px; }
      .loc-btn.main { width: 100%; justify-content: center; }
    }

    /* ============================================================
       MOBILE OVERRIDES — 768px (tablet + mobile)
       ============================================================ */
    @media (max-width: 768px) {

      /* Padding global mais apertado */
      :root { --px: 16px; }

      /* Como Funciona — step number demasiado grande */
      .step-number { font-size: 2.8rem; }
      .step-content h3 { font-size: 1.2rem; }
      .step-content p { font-size: 0.95rem; }
      .plano-step { gap: 20px; }
      .plano-steps { gap: 40px; }

      /* Métricas — gap e padding excessivos */
      .metrics-bar {
        gap: 30px;
        padding: 40px 20px;
        flex-wrap: wrap;
        justify-content: center;
      }
      .metric-value { font-size: 2.4rem; }
      .metric-label { font-size: 0.8rem; }

      /* Testemunhos — grid 3 colunas → 1 coluna */
      .testemunhos-grid { grid-template-columns: 1fr; }
      .testemunho-card { padding: 30px 24px; }

      /* Serviços — padding excessivo */
      .spec-item { padding: 24px 20px; }
      .spec-right-wrap { gap: 20px; }
      .btn-apple-book { padding: 14px 24px; font-size: 0.8rem; }

      /* FAQ — padding excessivo */
      .faq-question { padding: 20px; font-size: 1rem; }
      .faq-answer-inner { padding: 0 20px 20px; }
      .faq-icon { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }

      /* Conceito */
      .conceito-body { gap: 30px; }

      /* Feedback — cards */
      .feedback-card { flex: 0 0 min(450px, 88vw); }
      .card-inner { padding: 36px 28px; }
      .feedback-text { font-size: 1.1rem; line-height: 1.6; }
      .feedback-hint { font-size: 0.8rem; }

      /* Localização */
      .map-premium-wrap { height: 280px; }
      .info-label { font-size: 0.78rem; }
      .btn-gps { font-size: 0.8rem; }

      /* Agendamento chips */
      .avail-chip-label { font-size: 0.72rem; }

      /* Footer */
      .footer-logo { width: 100px; }
    }

    /* ============================================================
       MOBILE OVERRIDES — 480px (phones)
       ============================================================ */
    @media (max-width: 480px) {

      /* Cards feedback full-width em ecrãs muito pequenos */
      .feedback-card { flex: 0 0 92vw; }
      .card-inner { padding: 28px 20px; }
      .feedback-track { gap: 16px; padding: 16px var(--px) 40px; }

      /* Serviços — stack vertical em ecrãs pequenos */
      .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 16px;
      }
      .spec-right-wrap { width: 100%; justify-content: space-between; }
      .btn-apple-book { flex: 1; justify-content: center; }

      /* Métricas — 2 por linha */
      .metric-sep { display: none; }
      .metrics-bar { gap: 20px 40px; }

      /* Galeria — 1 coluna em ecrãs muito pequenos */
      .galeria-grid { grid-template-columns: repeat(2, 1fr); }

      /* Hero — botões em coluna */
      .hero-ctas { flex-direction: column; align-items: center; }
      .hero-ctas .btn { width: 100%; max-width: 320px; justify-content: center; }

      /* Plano step */
      .step-number { font-size: 2rem; }
    }
