﻿/* ===== RESET & VARIABLES ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --radius: 0.5rem;
      --background: oklch(0.985 0.012 85);
      --foreground: oklch(0.25 0.025 60);
      --card: oklch(1 0 0);
      --card-foreground: oklch(0.25 0.025 60);
      --primary: oklch(0.55 0.085 200);
      --primary-foreground: oklch(0.99 0.005 85);
      --secondary: oklch(0.94 0.018 80);
      --muted: oklch(0.95 0.013 85);
      --muted-foreground: oklch(0.5 0.02 70);
      --accent: oklch(0.78 0.12 75);
      --accent-foreground: oklch(0.25 0.03 60);
      --border: oklch(0.9 0.015 80);
      --sand: oklch(0.92 0.025 80);
      --ocean: oklch(0.55 0.085 200);
      --sun: oklch(0.78 0.12 75);
      --gradient-sun: linear-gradient(135deg, oklch(0.82 0.12 75), oklch(0.7 0.14 50));
      --shadow-soft: 0 20px 60px -20px oklch(0.3 0.05 60 / 0.25);
      --shadow-elegant: 0 30px 80px -30px oklch(0.4 0.08 200 / 0.35);
      --font-display: 'Cormorant Garamond', 'Playfair Display', serif;
      --font-sans: 'Inter', system-ui, sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background-color: var(--background);
      color: var(--foreground);
      font-family: var(--font-sans);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4 {
      font-family: var(--font-display);
      font-weight: 300;
      letter-spacing: -0.01em;
    }

    a { text-decoration: none; color: inherit; }
    a:focus:not(:focus-visible), button:focus:not(:focus-visible) { outline: none; }
    a:focus-visible, button:focus-visible { outline: 2px solid var(--primary); outline-offset: 4px; }
    img { max-width: 100%; display: block; }
    button { background: none; border: none; cursor: pointer; font: inherit; }

    /* ===== UTILITIES ===== */
    .container-x { max-width: 1280px; margin-inline: auto; padding-inline: 1.5rem; }

    .eyebrow {
      font-family: var(--font-sans);
      font-size: 0.7rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--muted-foreground);
    }

    .display-xl {
      font-family: var(--font-display);
      font-size: clamp(2.75rem, 7vw, 6rem);
      line-height: 1;
      font-weight: 300;
    }

    .display-lg {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4.5vw, 3.75rem);
      line-height: 1.05;
      font-weight: 300;
    }

    .text-primary { color: var(--primary); }
    .text-accent  { color: var(--accent); }
    .text-muted   { color: var(--muted-foreground); }
    .text-center  { text-align: center; }

    /* ===== BUTTONS ===== */
    .btn-primary {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.85rem 1.75rem;
      background: var(--primary);
      color: var(--primary-foreground);
      border-radius: 999px;
      font-size: 0.85rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: all 0.3s ease;
      box-shadow: var(--shadow-elegant);
    }
    .btn-primary:hover { transform: translateY(-2px); filter: brightness(1.08); }

    .btn-outline {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.85rem 1.75rem;
      border: 1px solid currentColor;
      border-radius: 999px;
      font-size: 0.8rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      transition: all 0.3s ease;
    }
    .btn-outline:hover { background: var(--foreground); color: var(--background); }
    .btn-outline.white { color: white; }
    .btn-outline.white:hover { background: white; color: var(--foreground); }

    /* ===== HEADER ===== */
    #site-header {
      position: fixed;
      inset-inline: 0;
      top: 0;
      z-index: 50;
      background: oklch(1 0 0 / 0.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid oklch(0.88 0.015 80 / 0.75);
      box-shadow: 0 2px 20px oklch(0.3 0.05 60 / 0.06);
      transition: all 0.5s ease;
    }
    #site-header.scrolled,
    #site-header.menu-open {
      background: oklch(1 0 0 / 0.97);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid oklch(0.88 0.015 80);
      box-shadow: 0 2px 20px oklch(0.3 0.05 60 / 0.08);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 5rem;
    }

    .logo {
      font-family: var(--font-display);
      font-size: 1.25rem;
      letter-spacing: 0.04em;
      color: var(--foreground);
      transition: color 0.4s;
    }
    #site-header.scrolled .logo,
    #site-header.menu-open .logo { color: var(--foreground) !important; }

    .header-cta-transparent {
      display: none;
    }
    @media (min-width: 768px) {
      .header-cta-transparent { display: inline-flex; }
    }
    #site-header:not(.scrolled):not(.menu-open) .header-cta {
      background: var(--primary);
      color: var(--primary-foreground) !important;
      border: none;
      box-shadow: var(--shadow-elegant);
    }
    #site-header:not(.scrolled):not(.menu-open) .header-cta:hover {
      filter: brightness(1.08);
    }
    #site-header.scrolled .header-cta,
    #site-header.menu-open .header-cta {
      background: var(--primary) !important;
      color: var(--primary-foreground) !important;
      border: none !important;
    }

    .nav-desktop {
      display: none;
      align-items: center;
      gap: 2.25rem;
    }
    @media (min-width: 768px) { .nav-desktop { display: flex; } }

    .nav-link {
      font-size: 0.78rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--foreground);
      transition: color 0.4s, opacity 0.3s;
    }
    .nav-link:hover { opacity: 0.6; }
    #site-header.scrolled .nav-link,
    #site-header.menu-open .nav-link { color: var(--foreground) !important; opacity: 1; }
    .nav-link.active { color: var(--accent) !important; }
    #site-header.scrolled .nav-link.active,
    #site-header.menu-open .nav-link.active { color: var(--primary) !important; }

    .header-cta { display: none; }
    @media (min-width: 768px) { .header-cta { display: inline-flex; } }

    .hamburger {
      display: flex;
      align-items: center;
      color: var(--foreground);
      transition: color 0.4s;
    }
    @media (min-width: 768px) { .hamburger { display: none; } }
    #site-header.scrolled .hamburger,
    #site-header.menu-open .hamburger { color: var(--foreground); }

    .hamburger svg { width: 24px; height: 24px; }

    .nav-mobile {
      display: none;
      border-top: 1px solid oklch(0.9 0.015 80 / 0.5);
      background: var(--background);
    }
    .nav-mobile.open { display: block; }
    .nav-mobile-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.25rem;
      padding: 1.5rem;
    }
    .nav-mobile-inner .nav-link { color: var(--foreground); font-size: 0.875rem; }

    /* ===== PAGES ===== */
    .page { display: none; }
    .page.active { display: block; }

    /* ===== HOME  HERO ===== */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 620px;
      overflow: hidden;
      background-color: #403b34;
      background-image: url("img/IMG_5958.JPEG");
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }
    .hero-slides {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      animation: heroSlide 30s infinite;
      background-color: #403b34;
    }
    /* Primeira foto aparece imediatamente sem atraso */
    .hero-slide:nth-child(1) { opacity: 1; animation: heroSlideFirst 30s infinite; animation-delay: 0s; }
    .hero-slide:nth-child(2) { animation-delay: 6s; }
    .hero-slide:nth-child(3) { animation-delay: 12s; }
    .hero-slide:nth-child(4) { animation-delay: 18s; }
    .hero-slide:nth-child(5) { animation-delay: 24s; }
    @keyframes heroSlideFirst {
      0%   { opacity: 1; transform: scale(1.05); }
      20%  { opacity: 1; }
      26%  { opacity: 0; transform: scale(1.12); }
      92%  { opacity: 0; transform: scale(1.05); }
      98%  { opacity: 1; }
      100% { opacity: 1; transform: scale(1.05); }
    }
    @keyframes heroSlide {
      0%   { opacity: 0; transform: scale(1.05); }
      5%   { opacity: 1; }
      22%  { opacity: 1; }
      28%  { opacity: 0; transform: scale(1.12); }
      100% { opacity: 0; transform: scale(1.05); }
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(20, 18, 14, 0.55) 0%,
        rgba(20, 18, 14, 0.35) 45%,
        rgba(20, 18, 14, 0.75) 100%
      );
      background: linear-gradient(
        180deg,
        oklch(0.1 0.02 60 / 0.55) 0%,
        oklch(0.1 0.02 60 / 0.35) 45%,
        oklch(0.1 0.02 60 / 0.75) 100%
      );
    }
    .hero-content {
      position: relative;
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      text-align: center;
      color: white;
      padding: 0 1.5rem;
    }
    .hero-content .eyebrow { color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
    .hero-content h1 { max-width: 56rem; text-shadow: 0 2px 24px rgba(0,0,0,0.55); }
    .hero-content p {
      margin-top: 1.5rem;
      max-width: 36rem;
      font-size: clamp(1rem, 2vw, 1.125rem);
      color: rgba(255,255,255,0.95);
      line-height: 1.7;
      text-shadow: 0 1px 10px rgba(0,0,0,0.5);
    }
    .hero-btns {
      margin-top: 2.5rem;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
    }
    .hero-chevron {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255,255,255,0.8);
      animation: bounce 2s infinite;
    }
    .hero-chevron svg { width: 28px; height: 28px; }

    @media (max-width: 767px) {
      .hero {
        height: 100svh;
        min-height: 580px;
        max-height: 760px;
        background-position: center center;
      }
      .hero-slide {
        object-position: center center;
      }
      .hero-content {
        min-height: 100%;
        justify-content: center;
        align-items: center;
        padding: 6.5rem 1.15rem 5rem;
      }
      .hero-content .eyebrow {
        margin-bottom: 1rem;
        letter-spacing: 0.16em;
        font-size: 0.6rem;
        line-height: 1.4;
        text-align: center;
      }
      .hero-content h1 {
        max-width: 19rem;
        font-size: clamp(2.35rem, 12vw, 3.45rem);
        line-height: 0.98;
        text-align: center;
      }
      .hero-content p {
        max-width: 20rem;
        margin-top: 1.15rem;
        font-size: 0.98rem;
        line-height: 1.65;
        text-align: center;
      }
      .hero-btns {
        width: min(100%, 20rem);
        margin-top: 1.75rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
      }
      .hero-btns .btn-primary,
      .hero-btns .btn-outline {
        width: 100%;
        justify-content: center;
        padding-inline: 1rem;
        text-align: center;
      }
      .hero-chevron {
        bottom: 1rem;
      }
    }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }
    @keyframes heroDrift {
      0% { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
      100% { transform: scale(1.16) translate3d(1.5%, 1%, 0); }
    }

    /* ===== FOTOS POUSADA STRIP ===== */
    .fotos-pousada-section { padding: 5rem 0 4rem; background: var(--bg); }
    .fotos-pousada-section .text-center { margin-bottom: 2.5rem; }
    .fotos-strip {
      display: flex;
      gap: 0.75rem;
      overflow-x: auto;
      padding: 0 var(--container-px, 1.5rem);
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .fotos-strip::-webkit-scrollbar { display: none; }
    .fotos-strip img {
      height: 340px;
      width: auto;
      min-width: 240px;
      max-width: 380px;
      object-fit: cover;
      border-radius: 12px;
      scroll-snap-align: start;
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }
    .fotos-strip img:hover { transform: scale(1.02); }

    @media (prefers-reduced-motion: reduce) {
      .hero-slide,
      .hero-chevron {
        animation: none;
      }
    }

    /* ===== HOME  INTRO ===== */
    .intro { padding: 7rem 0 10rem; }
    @media (min-width: 768px) { .intro { padding: 10rem 0; } }
    .intro-grid {
      display: grid;
      gap: 4rem;
      align-items: center;
    }
    @media (min-width: 768px) { .intro-grid { grid-template-columns: 1fr 1fr; } }
    .intro-text .eyebrow { margin-bottom: 1.25rem; }
    .intro-text h2 { margin-bottom: 2rem; }
    .intro-text .body-copy { display: flex; flex-direction: column; gap: 1.25rem; color: var(--muted-foreground); line-height: 1.75; }
    .intro-text .body-copy em { color: var(--foreground); font-style: italic; }
    .intro-text .btn-outline { margin-top: 2.5rem; }
    .intro-img-wrap { position: relative; }
    .intro-img {
      border-radius: 2px;
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      box-shadow: var(--shadow-soft);
    }
    .intro-orb {
      display: none;
      position: absolute;
      bottom: -2.5rem;
      left: -2.5rem;
      width: 10rem;
      height: 10rem;
      border-radius: 50%;
      background: var(--gradient-sun);
      filter: blur(2px);
      opacity: 0.85;
    }
    @media (min-width: 768px) { .intro-orb { display: block; } }

    /* ===== HOME  FEATURES ===== */
    .features-section {
      background: oklch(0.94 0.018 80 / 0.4);
      padding: 6rem 0;
    }
    .features-section .eyebrow { text-align: center; margin-bottom: 1rem; }
    .features-section h2 { text-align: center; margin-bottom: 4rem; }
    .features-grid {
      display: grid;
      gap: 2.5rem;
    }
    @media (min-width: 640px)  { .features-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }
    .feature-item { text-align: center; }
    .feature-icon {
      margin: 0 auto 1.25rem;
      width: 3.5rem;
      height: 3.5rem;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--gradient-sun);
    }
    .feature-icon svg { width: 24px; height: 24px; color: var(--foreground); }
    .feature-item h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.75rem; }
    .feature-item p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; }

    /* ===== HOME  DESTINATION STRIP ===== */
    .dest-section { padding: 7rem 0 10rem; }
    @media (min-width: 768px) { .dest-section { padding: 10rem 0; } }
    .dest-grid {
      display: grid;
      gap: 4rem;
      align-items: center;
    }
    @media (min-width: 768px) { .dest-grid { grid-template-columns: 1fr 1fr; } }
    .dest-img-wrap { order: 2; }
    @media (min-width: 768px) { .dest-img-wrap { order: 1; } }
    .dest-img { border-radius: 2px; width: 100%; aspect-ratio: 5/4; object-fit: cover; box-shadow: var(--shadow-elegant); }
    .dest-text { order: 1; }
    @media (min-width: 768px) { .dest-text { order: 2; } }
    .dest-text .eyebrow { margin-bottom: 1.25rem; }
    .dest-text h2 { margin-bottom: 2rem; }
    .dest-text p { color: var(--muted-foreground); line-height: 1.75; margin-bottom: 1.25rem; }
    .dest-text .btn-outline { margin-top: 2.5rem; }

    /* ===== HOME  CTA SECTION ===== */
    .cta-section { position: relative; padding: 8rem 0; overflow: hidden; }
    .cta-section img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .cta-overlay { position: absolute; inset: 0; background: oklch(0.2 0.03 60 / 0.55); }
    .cta-inner {
      position: relative;
      text-align: center;
      color: white;
    }
    .cta-inner .eyebrow { color: rgba(255,255,255,0.8); margin-bottom: 1.25rem; }
    .cta-inner h2 { max-width: 48rem; margin: 0 auto 2rem; }

    /* ===== QUARTOS PAGE ===== */
    .page-hero-text { padding-top: 10rem; padding-bottom: 4rem; text-align: center; }
    .page-hero-text .eyebrow { margin-bottom: 1.25rem; }
    .page-hero-text h1 { margin-bottom: 1.5rem; }
    .page-hero-text p { max-width: 42rem; margin: 0 auto; color: var(--muted-foreground); line-height: 1.75; }

    .quartos-list { padding-bottom: 7rem; display: flex; flex-direction: column; gap: 6rem; }

    .quarto-item {
      display: grid;
      gap: 3rem;
      align-items: center;
    }
    @media (min-width: 768px) { .quarto-item { grid-template-columns: 1fr 1fr; } }
    .quarto-item.reverse .quarto-img-wrap { order: 1; }
    .quarto-item.reverse .quarto-detail { order: 2; }
    @media (min-width: 768px) {
      .quarto-item.reverse .quarto-img-wrap { order: 2; }
      .quarto-item.reverse .quarto-detail { order: 1; }
    }
    .quarto-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 2px; box-shadow: var(--shadow-soft); }
    .quarto-detail .eyebrow { margin-bottom: 1rem; }
    .quarto-detail h2 { margin-bottom: 1.5rem; }
    .quarto-detail > p { color: var(--muted-foreground); line-height: 1.75; margin-bottom: 2rem; }
    .quarto-amenities {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      font-size: 0.875rem;
      margin-bottom: 2rem;
    }
    .quarto-amenity { display: flex; align-items: center; gap: 0.5rem; }
    .quarto-amenity svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }

    /* ===== SOBRE PAGE ===== */
    .sobre-hero {
      position: relative;
      height: 70vh;
      overflow: hidden;
    }
    .sobre-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .sobre-hero-overlay { position: absolute; inset: 0; background: oklch(0.25 0.025 60 / 0.4); }
    .sobre-hero-content {
      position: relative;
      z-index: 10;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding-bottom: 5rem;
      color: white;
    }
    .sobre-hero-content .eyebrow { color: rgba(255,255,255,0.8); margin-bottom: 1rem; }

    .sobre-body { padding: 7rem 0; }
    .sobre-grid {
      display: grid;
      gap: 4rem;
    }
    @media (min-width: 768px) { .sobre-grid { grid-template-columns: 1fr 1fr; } }
    .sobre-text .eyebrow { margin-bottom: 1rem; }
    .sobre-text h2 { margin-bottom: 1.5rem; }
    .sobre-text p { color: var(--muted-foreground); line-height: 1.75; margin-bottom: 1.25rem; }
    .sobre-text em { color: var(--foreground); }
    .sobre-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 2px; box-shadow: var(--shadow-soft); }

    .sobre-values { background: oklch(0.94 0.018 80 / 0.4); padding: 6rem 0; }
    .sobre-values .eyebrow { text-align: center; margin-bottom: 1rem; }
    .sobre-values h2 { text-align: center; margin-bottom: 4rem; }
    .values-grid {
      display: grid;
      gap: 2.5rem;
      text-align: center;
    }
    @media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
    .value-item h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--primary); }
    .value-item p { color: var(--muted-foreground); line-height: 1.75; }

    /* ===== JERICOACOARA PAGE ===== */
    .jeri-hero {
      position: relative;
      height: 80vh;
      overflow: hidden;
    }
    .jeri-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .jeri-hero-overlay { position: absolute; inset: 0; background: oklch(0.25 0.025 60 / 0.3); }
    .jeri-hero-content {
      position: relative;
      z-index: 10;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
    }
    .jeri-hero-content .eyebrow { color: rgba(255,255,255,0.8); margin-bottom: 1.25rem; }

    .jeri-intro { padding: 7rem 0; max-width: 48rem; margin: 0 auto; text-align: center; }
    .jeri-intro p { font-size: 1.125rem; color: var(--muted-foreground); line-height: 1.75; }

    .jeri-passeios { padding-bottom: 7rem; }
    .jeri-passeios .eyebrow { text-align: center; margin-bottom: 1rem; }
    .jeri-passeios h2 { text-align: center; margin-bottom: 4rem; }
    .passeios-grid {
      display: grid;
      gap: 1.5rem;
    }
    @media (min-width: 768px)  { .passeios-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .passeios-grid { grid-template-columns: repeat(3, 1fr); } }
    .passeio-card {
      background: var(--card);
      border: 1px solid oklch(0.9 0.015 80 / 0.6);
      padding: 2rem;
      border-radius: 2px;
      box-shadow: var(--shadow-soft);
      transition: transform 0.3s;
    }
    .passeio-card:hover { transform: translateY(-4px); }
    .passeio-card .eyebrow { color: var(--primary); margin-bottom: 0.75rem; }
    .passeio-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.75rem; }
    .passeio-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; }

    .jeri-cta {
      position: relative;
      height: 60vh;
      overflow: hidden;
    }
    .jeri-cta img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .jeri-cta-overlay { position: absolute; inset: 0; background: oklch(0.25 0.025 60 / 0.4); }
    .jeri-cta-content {
      position: relative;
      z-index: 10;
      height: 100%;
      display: grid;
      place-items: center;
      text-align: center;
      color: white;
    }
    .jeri-cta-content h2 { max-width: 32rem; margin-bottom: 2rem; }

    /* ===== CONTATO PAGE ===== */
    .contato-cards {
      padding-bottom: 7rem;
      display: grid;
      gap: 1.5rem;
    }
    @media (min-width: 768px) { .contato-cards { grid-template-columns: repeat(3, 1fr); } }
    .contato-card {
      background: var(--card);
      border: 1px solid oklch(0.9 0.015 80 / 0.6);
      padding: 2.5rem;
      border-radius: 2px;
      box-shadow: var(--shadow-soft);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: transform 0.3s;
      text-decoration: none;
      color: inherit;
    }
    .contato-card:hover { transform: translateY(-4px); }
    .contato-card-icon {
      width: 3.5rem;
      height: 3.5rem;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--gradient-sun);
      margin-bottom: 1.25rem;
    }
    .contato-card-icon svg { width: 24px; height: 24px; }
    .contato-card h2 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.75rem; }
    .contato-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; flex: 1; word-break: break-word; }
    .contato-card .cta-link {
      margin-top: 1.5rem;
      font-size: 0.7rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--primary);
    }
    .contato-card:hover .cta-link { text-decoration: underline; }

    .mapa-wrap { padding-bottom: 8rem; }
    .mapa-wrap .ratio-box {
      aspect-ratio: 16/9;
      overflow: hidden;
      border-radius: 2px;
      box-shadow: var(--shadow-soft);
    }
    .mapa-wrap iframe { width: 100%; height: 100%; border: 0; }

    /* ===== FOOTER ===== */
    #site-footer {
      margin-top: 8rem;
      border-top: 1px solid oklch(0.9 0.015 80 / 0.6);
      background: oklch(0.94 0.018 80 / 0.4);
    }
    .footer-grid {
      padding: 5rem 0;
      display: grid;
      gap: 3rem;
    }
    @media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
    .footer-brand h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1rem; }
    .footer-brand p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; max-width: 18rem; }
    .footer-nav p.eyebrow { margin-bottom: 1rem; }
    .footer-nav a { display: block; font-size: 0.875rem; margin-bottom: 0.75rem; transition: color 0.3s; }
    .footer-nav a:hover { color: var(--primary); }
    .footer-contact p.eyebrow { margin-bottom: 1rem; }
    .footer-contact a, .footer-contact address {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      font-size: 0.875rem;
      font-style: normal;
      color: var(--muted-foreground);
      margin-bottom: 1rem;
      transition: color 0.3s;
    }
    .footer-contact a:hover { color: var(--primary); }
    .footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
    .footer-bottom {
      border-top: 1px solid oklch(0.9 0.015 80 / 0.6);
      padding: 1.5rem;
      text-align: center;
      font-size: 0.75rem;
      color: var(--muted-foreground);
    }

    @media (max-width: 767px) {
      #site-footer {
        margin-top: 5rem;
      }
      .footer-grid {
        padding: 4rem 2rem 3.5rem;
        gap: 3.25rem;
      }
      .footer-brand,
      .footer-nav,
      .footer-contact {
        max-width: 22rem;
      }
      .footer-brand h3 {
        margin-bottom: 1.25rem;
      }
      .footer-brand p {
        max-width: none;
        line-height: 1.85;
      }
      .footer-nav p.eyebrow,
      .footer-contact p.eyebrow {
        margin-bottom: 1.35rem;
      }
      .footer-nav a {
        margin-bottom: 1rem;
        line-height: 1.5;
      }
      .footer-contact a,
      .footer-contact address {
        gap: 0.85rem;
        margin-bottom: 1.25rem;
        line-height: 1.65;
      }
      .footer-contact svg {
        margin-top: 0.25rem;
      }
      .footer-bottom {
        padding: 1.5rem 5.5rem 1.5rem 1.5rem;
        line-height: 1.6;
      }
    }

    /* ===== WHATSAPP FAB ===== */
    .whatsapp-fab {
      position: fixed;
      bottom: 1.5rem;
      right: 1.5rem;
      z-index: 40;
      width: 3.5rem;
      height: 3.5rem;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--primary);
      color: var(--primary-foreground);
      box-shadow: var(--shadow-elegant);
      transition: transform 0.3s;
    }
    .whatsapp-fab:hover { transform: scale(1.08); }
    .whatsapp-fab svg { width: 28px; height: 28px; }

    /* ===== QUARTOS CARDS GRID ===== */
    .quartos-cards-grid {
      display: grid;
      gap: 2rem;
      grid-template-columns: 1fr;
    }
    @media (min-width: 768px)  { .quartos-cards-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1200px) { .quartos-cards-grid { grid-template-columns: repeat(3, 1fr); } }

    .qcard {
      background: var(--card);
      border: 1px solid oklch(0.9 0.015 80 / 0.7);
      border-radius: 4px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      display: flex;
      flex-direction: column;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .qcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-elegant); }
    .qcard--highlight {
      border-color: oklch(0.78 0.12 75 / 0.5);
      box-shadow: 0 0 0 1px oklch(0.78 0.12 75 / 0.25), var(--shadow-soft);
    }

    .qcard-gallery { display: flex; flex-direction: column; gap: 3px; background: oklch(0.9 0.015 80); }
    .qcard-gallery-main img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
    .qcard-gallery-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
    .qcard-gallery-thumbs img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }

    .qcard-body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
    .qcard-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
    .qcard-num { color: var(--primary); }
    .qcard-badge {
      font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
      background: var(--secondary); color: var(--muted-foreground);
      padding: 0.25rem 0.75rem; border-radius: 999px;
    }
    .qcard-badge--gold { background: oklch(0.78 0.12 75 / 0.15); color: oklch(0.55 0.1 65); }
    .qcard-title {
      font-family: var(--font-display);
      font-size: clamp(1.4rem, 2.5vw, 1.75rem);
      font-weight: 300; line-height: 1.15; margin-bottom: 0.875rem;
    }
    .qcard-desc { font-size: 0.84rem; color: var(--muted-foreground); line-height: 1.7; margin-bottom: 1.25rem; }
    .qcard-amenities {
      list-style: none; display: grid; grid-template-columns: 1fr 1fr;
      gap: 0.6rem; font-size: 0.8rem; margin-bottom: 1.5rem; flex: 1;
    }
    .qcard-amenities li { display: flex; align-items: center; gap: 0.4rem; color: var(--muted-foreground); }
    .qcard-amenities li svg { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; }
    .qcard-body .btn-primary {
      align-self: flex-start;
      max-width: 100%;
      justify-content: center;
      text-align: center;
      white-space: normal;
      font-size: 0.75rem;
      padding: 0.7rem 1.4rem;
      margin-top: auto;
    }

    /* ===== HELPERS ===== */
    .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;
    }

    /* ===== GALLERY ===== */
    .gallery-section {
      padding: 7rem 0;
      background: var(--background);
    }

    .gallery-section .eyebrow { margin-bottom: 1rem; }
    .gallery-section h2 { margin-bottom: 2rem; }

    .gallery-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      justify-content: center;
      margin-bottom: 2.5rem;
    }
    .gf-btn {
      font-family: var(--font-sans);
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 0.5rem 1.25rem;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: transparent;
      color: var(--muted-foreground);
      cursor: pointer;
      transition: all 0.25s;
    }
    .gf-btn:hover { border-color: var(--primary); color: var(--primary); }
    .gf-btn.active { background: var(--primary); color: var(--primary-foreground); border-color: var(--primary); }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 6px;
    }
    @media (min-width: 640px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

    .gallery-item {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      border-radius: 2px;
      background: var(--muted);
    }
    .gallery-item img {
      width: 100%;
      aspect-ratio: 1/1;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
    .gallery-item:hover img { transform: scale(1.06); }
    .gallery-item-overlay {
      position: absolute;
      inset: 0;
      background: oklch(0.2 0.03 60 / 0);
      display: flex;
      align-items: flex-end;
      padding: 1rem;
      transition: background 0.3s;
    }
    .gallery-item:hover .gallery-item-overlay { background: oklch(0.2 0.03 60 / 0.45); }
    .gallery-item-label {
      color: white;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      opacity: 0;
      transform: translateY(6px);
      transition: all 0.3s;
    }
    .gallery-item:hover .gallery-item-label { opacity: 1; transform: translateY(0); }

    .gallery-item.hidden { display: none; }

    /* ===== LIGHTBOX ===== */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: oklch(0.08 0.01 60 / 0.97);
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .lightbox.open { display: flex; }

    .lb-stage {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 4rem 5rem 1rem;
      overflow: hidden;
    }
    #lb-img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      border-radius: 2px;
      box-shadow: 0 40px 80px oklch(0 0 0 / 0.6);
      transition: opacity 0.25s ease;
    }
    #lb-img.fade { opacity: 0; }

    .lb-caption {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 1rem 5rem 1.5rem;
      color: white;
    }
    #lb-label {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 300;
      letter-spacing: 0.05em;
    }
    #lb-counter {
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      color: rgba(255,255,255,0.5);
    }

    .lb-close {
      position: fixed;
      top: 1.25rem;
      right: 1.25rem;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: white;
      display: grid;
      place-items: center;
      cursor: pointer;
      transition: background 0.2s;
      z-index: 10;
    }
    .lb-close:hover { background: rgba(255,255,255,0.25); }
    .lb-close svg { width: 18px; height: 18px; }

    .lb-arrow {
      position: fixed;
      top: 50%;
      transform: translateY(-50%);
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: white;
      display: grid;
      place-items: center;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
      z-index: 10;
    }
    .lb-arrow:hover { background: rgba(255,255,255,0.25); }
    .lb-prev { left: 1rem; }
    .lb-prev:hover { transform: translateY(-50%) translateX(-2px); }
    .lb-next { right: 1rem; }
    .lb-next:hover { transform: translateY(-50%) translateX(2px); }
    .lb-arrow svg { width: 22px; height: 22px; }

    @media (max-width: 640px) {
      .lb-stage { padding: 3.5rem 0.5rem 0.5rem; }
      .lb-caption { padding: 0.75rem 1rem 1rem; flex-direction: column; gap: 0.25rem; align-items: flex-start; }
      .lb-prev { left: 0.25rem; }
      .lb-next { right: 0.25rem; }
    }


    /* ===== ROOM CARD SLIDER ===== */
    .qcard-gallery {
      position: relative;
      overflow: hidden;
      background: #f5f0e7;
      aspect-ratio: 16/10;
    }
    .qcard-slides {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    }
    .qcard-slide {
      min-width: 100%;
      height: 100%;
    }
    .qcard-slide img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      display: block;
    }
    @media (max-width: 767px) {
      .qcard-gallery {
        aspect-ratio: 4/3;
      }
      .qcard-body .btn-primary {
        width: 100%;
        font-size: 0.68rem;
        letter-spacing: 0.08em;
        padding-inline: 1rem;
      }
    }
    .qcard-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 2rem;
      height: 2rem;
      border-radius: 50%;
      background: rgba(255,255,255,0.85);
      border: none;
      cursor: pointer;
      display: grid;
      place-items: center;
      z-index: 5;
      transition: background 0.2s, transform 0.2s;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }
    .qcard-arrow:hover { background: white; }
    .qcard-arrow svg { width: 14px; height: 14px; color: var(--foreground); }
    .qcard-arrow-prev { left: 0.5rem; }
    .qcard-arrow-prev:hover { transform: translateY(-50%) translateX(-1px); }
    .qcard-arrow-next { right: 0.5rem; }
    .qcard-arrow-next:hover { transform: translateY(-50%) translateX(1px); }
    .qcard-dots {
      position: absolute;
      bottom: 0.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 4px;
      z-index: 5;
    }
    .qcard-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: background 0.2s, transform 0.2s;
    }
    .qcard-dot.active { background: white; transform: scale(1.3); }


