:root{
    --agua: #10a6b3;
    --agua-escura: #0a5c66;
    --mata: #142620;
    --mata-suave: #1e352c;
    --areia: #f4efe3;
    --areia-escura: #e8dfc9;
    --sol: #e6a13f;
    --branco: #ffffff;
    --serif: 'Fraunces', serif;
    --sans: 'Inter', sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --radius: 22px;
  }

  *{ box-sizing: border-box; margin:0; padding:0; }
  html{ scroll-behavior: smooth; }
  body{
    font-family: var(--sans);
    background: var(--areia);
    color: var(--mata);
    line-height: 1.5;
    overflow-x: hidden;
  }
  img{ max-width:100%; display:block; }
  a{ color:inherit; text-decoration:none; }

  ::selection{ background: var(--agua); color: var(--branco); }

  :focus-visible{
    outline: 3px solid var(--sol);
    outline-offset: 3px;
  }

  .eyebrow{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--agua-escura);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .eyebrow.on-dark{ color: #8fd6dc; }
  .eyebrow::before{
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--sol);
    display:inline-block;
  }

  h1,h2,h3{ font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; }

  .btn{
    font-family: var(--sans);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .btn:hover{ transform: translateY(-2px); }
  .btn-primary{ background: var(--sol); color: var(--mata); box-shadow: 0 8px 24px -8px rgba(230,161,63,.6); }
  .btn-outline{ background: transparent; color: var(--branco); border: 1.5px solid rgba(255,255,255,.55); }
  .btn-outline.dark{ color: var(--mata); border-color: rgba(20,38,32,.35); }
  .nav-link-quiet{ font-size: 13.5px; color: rgba(255,255,255,.75); border-bottom: 1px solid transparent; transition: border-color .25s ease, color .25s ease; }
  .nav-link-quiet:hover{ color: var(--branco); border-color: rgba(255,255,255,.6); }
  header.scrolled .nav-link-quiet{ color: var(--mata-suave); }
  header.scrolled .nav-link-quiet:hover{ border-color: var(--mata-suave); }

  /* ---------- NAV ---------- */
  header{
    position: fixed; top:0; left:0; right:0; z-index: 100;
    display: flex; align-items:center; justify-content: space-between;
    padding: 22px 5%;
    transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
  }
  header.scrolled{
    background: rgba(244,239,227,.9);
    backdrop-filter: blur(10px);
    padding: 14px 5%;
    box-shadow: 0 4px 24px -12px rgba(20,38,32,.25);
  }
  .logo{
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--branco);
    letter-spacing: -0.02em;
    display:flex; align-items:center; gap:8px;
    transition: color .35s ease;
  }
  header.scrolled .logo{ color: var(--mata); }
  .logo .drop{ color: var(--sol); font-size: 26px; line-height:0; }

  nav.links{ display:flex; gap: 34px; }
  nav.links a{
    font-size: 14px; font-weight: 500;
    color: rgba(255,255,255,.85);
    transition: color .35s ease;
    position: relative;
  }
  header.scrolled nav.links a{ color: var(--mata-suave); }
  nav.links a::after{
    content:""; position:absolute; left:0; bottom:-6px; height:1.5px; width:0;
    background: var(--sol); transition: width .25s ease;
  }
  nav.links a:hover::after{ width: 100%; }
  nav.links a.current::after{ width: 100%; }

  .nav-cta{ display:flex; align-items:center; gap:16px; }
  .nav-cta .btn-primary{ padding: 11px 22px; font-size: 13.5px; }

  .menu-toggle{
    display:none;
    flex-direction: column; justify-content:center; gap: 5px;
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
    cursor: pointer;
  }
  .menu-toggle span{
    display:block; width: 18px; height: 2px; margin: 0 auto;
    background: var(--branco); border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
  }
  header.scrolled .menu-toggle{ background: rgba(20,38,32,.08); border-color: rgba(20,38,32,.2); }
  header.scrolled .menu-toggle span{ background: var(--mata); }
  .menu-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2){ opacity: 0; }
  .menu-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu{
    position: fixed; inset: 0; z-index: 99;
    background: var(--mata);
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap: 30px;
    opacity: 0; visibility: hidden; transform: translateY(-12px);
    transition: opacity .35s ease, transform .35s ease, visibility 0s linear .35s;
  }
  .mobile-menu.open{
    opacity: 1; visibility: visible; transform: translateY(0);
    transition: opacity .35s ease, transform .35s ease, visibility 0s linear 0s;
  }
  .mobile-menu a{
    font-family: var(--serif); font-size: 30px; color: var(--branco);
  }
  .mobile-menu .mobile-cta{
    margin-top: 10px; display:flex; flex-direction:column; align-items:center; gap: 18px;
  }
  .mobile-menu .mobile-cta a.nav-link-quiet{ color: rgba(255,255,255,.75); font-family: var(--sans); font-size: 15px; }
  body.menu-open{ overflow: hidden; }

  /* ---------- HERO ---------- */
  .hero{
    position: relative;
    min-height: 100vh;
    display:flex; align-items:center;
    padding: 0 5%;
    overflow: hidden;
  }
  .hero-bg{
    position:absolute; inset:0; z-index:-2;
    overflow:hidden;
  }
  .hero-bg video, .hero-bg img{
    position:absolute; top:50%; left:50%;
    width:100%; height:100%;
    object-fit: cover;
    transform: translate(-50%,-50%);
  }
  .hero-bg::after{
    content:"";
    position:absolute; inset:0; z-index:1;
    background: linear-gradient(180deg, rgba(10,30,28,.35) 0%, rgba(8,26,26,.6) 55%, var(--mata) 100%);
  }
  .hero-content{ max-width: 640px; padding-top: 90px; }
  .hero .eyebrow{ margin-bottom: 22px; }
  .hero h1{
    color: var(--branco);
    font-size: clamp(48px, 7vw, 84px);
    line-height: 0.98;
  }
  .hero h1 span{ color: var(--agua); font-style: italic; font-weight: 400; }
  .hero p{
    color: rgba(255,255,255,.82);
    font-size: 17px;
    max-width: 460px;
    margin: 24px 0 36px;
  }
  .hero-ctas{ display:flex; gap:16px; flex-wrap: wrap; }

  .hero-coords{
    position:absolute; right:5%; bottom: 110px;
    text-align:right; z-index: 2;
  }
  .hero-coords .eyebrow{ display:block; margin-bottom:6px; }

  /* ---------- WATERLINE DIVIDER (signature element) ---------- */
  .waterline{
    position: relative;
    height: 90px;
    overflow: hidden;
    background: var(--mata);
  }
  .waterline svg{
    position:absolute; top:0; left:0;
    height: 100%; width: 220%;
    animation: drift 22s linear infinite;
  }
  @keyframes drift{
    from{ transform: translateX(0); }
    to{ transform: translateX(-50%); }
  }
  .waterline.flip{ transform: scaleY(-1); }
  .waterline .depth-tag{
    position:absolute; z-index:2; font-family: var(--mono); font-size:11px;
    color: rgba(255,255,255,.4); letter-spacing:.08em;
  }
  @media (prefers-reduced-motion: reduce){
    .waterline svg{ animation: none; }
  }

  /* ---------- REVEAL ON SCROLL ---------- */
  .reveal{
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s cubic-bezier(.16,.8,.32,1), transform .9s cubic-bezier(.16,.8,.32,1);
  }
  .reveal.in{ opacity: 1; transform: translateY(0); }
  .reveal-stagger > *{
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s cubic-bezier(.16,.8,.32,1), transform .8s cubic-bezier(.16,.8,.32,1);
  }
  .reveal-stagger.in > *{ opacity: 1; transform: translateY(0); }
  .reveal-stagger.in > *:nth-child(1){ transition-delay: .05s; }
  .reveal-stagger.in > *:nth-child(2){ transition-delay: .16s; }
  .reveal-stagger.in > *:nth-child(3){ transition-delay: .27s; }
  .reveal-stagger.in > *:nth-child(4){ transition-delay: .38s; }
  @media (prefers-reduced-motion: reduce){
    .reveal, .reveal-stagger > *{ opacity: 1; transform: none; transition: none; }
  }

  /* ---------- HERO ENTRANCE + PARALLAX ---------- */
  .hero-bg{ will-change: transform; }
  .hero .eyebrow, .hero h1, .hero p, .hero-ctas, .hero-coords{
    opacity: 0;
    animation: rise .9s cubic-bezier(.16,.8,.32,1) forwards;
  }
  .hero .eyebrow{ animation-delay: .15s; }
  .hero h1{ animation-delay: .3s; }
  .hero p{ animation-delay: .48s; }
  .hero-ctas{ animation-delay: .64s; }
  .hero-coords{ animation-delay: .8s; }
  @keyframes rise{
    from{ opacity:0; transform: translateY(22px); }
    to{ opacity:1; transform: translateY(0); }
  }
  @media (prefers-reduced-motion: reduce){
    .hero .eyebrow, .hero h1, .hero p, .hero-ctas, .hero-coords{ animation: none; opacity: 1; }
  }

  /* ---------- MAGNETIC / SHEEN BUTTONS ---------- */
  .btn{ position: relative; overflow: hidden; }
  .btn-primary::before{
    content:"";
    position:absolute; top:0; left:-60%;
    width: 40%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
    transform: skewX(-20deg);
    transition: left .7s ease;
  }
  .btn-primary:hover::before{ left: 130%; }

  /* ---------- IMAGE HOVER POLISH ---------- */
  .stay-img img, .pillar-img img{ transition: transform .6s cubic-bezier(.16,.8,.32,1); }
  .stay-card{ transition: transform .4s ease, box-shadow .4s ease; }
  .stay-card:hover{ transform: translateY(-6px); box-shadow: 0 24px 50px -24px rgba(0,0,0,.5); }
  .stay-card:hover .stay-img img{ transform: scale(1.08); }
  .evento-card{ transition: transform .5s ease; }
  .evento-card:hover{ transform: translateY(-6px); }
  .evento-card img{ transition: transform .7s ease; }
  .evento-card:hover img{ transform: scale(1.05); }
  .depo-card{ transition: transform .4s ease, border-color .4s ease; }
  .depo-card:hover{ transform: translateY(-4px); border-color: rgba(16,166,179,.4); }
  .estrutura-card{ transition: transform .4s ease, box-shadow .4s ease; }
  .estrutura-card:hover{ transform: translateY(-6px); }

  /* ---------- SECTION SHELL ---------- */
  section{ padding: 110px 5%; }
  .section-head{ max-width: 620px; margin-bottom: 64px; }
  .section-head .eyebrow{ margin-bottom: 16px; }
  .section-head h2{ font-size: clamp(30px, 4vw, 46px); }
  .section-head p{ margin-top: 16px; color: var(--mata-suave); font-size: 16px; opacity:.8; }

  /* ---------- PILLARS ---------- */
  .pillars{ background: var(--areia); }
  .pillar-grid{
    display:grid; grid-template-columns: repeat(3,1fr); gap: 28px;
  }
  .pillar{
    background: var(--branco);
    border-radius: var(--radius);
    overflow:hidden;
    box-shadow: 0 20px 50px -30px rgba(20,38,32,.35);
    transition: transform .35s ease;
  }
  .pillar:hover{ transform: translateY(-8px); }
  .pillar-img{ aspect-ratio: 4/3; overflow:hidden; }
  .pillar-img img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
  .pillar:hover .pillar-img img{ transform: scale(1.06); }
  .pillar-body{ padding: 26px 24px 30px; }
  .pillar-body .tag{ font-family: var(--mono); font-size: 11px; color: var(--agua-escura); letter-spacing:.08em; }
  .pillar-body h3{ font-size: 22px; margin: 10px 0 8px; }
  .pillar-body p{ font-size: 14.5px; color: var(--mata-suave); opacity: .78; }

  /* ---------- ACOMODAÇÕES (fruit signature) ---------- */
  .stay{ background: var(--mata); color: var(--branco); }
  .stay .section-head .eyebrow{ color:#8fd6dc; }
  .stay .section-head p{ color: rgba(255,255,255,.65); }
  .stay-scroll{
    display:flex; gap: 22px; overflow-x:auto; padding-bottom: 14px;
    scroll-snap-type: x mandatory;
  }
  .stay-scroll::-webkit-scrollbar{ height:6px; }
  .stay-scroll::-webkit-scrollbar-thumb{ background: var(--agua-escura); border-radius:4px; }
  .stay-card{
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--mata-suave);
    border-radius: var(--radius);
    overflow:hidden;
    border: 1px solid rgba(255,255,255,.06);
  }
  .stay-img{ aspect-ratio: 3/4; overflow:hidden; }
  .stay-img img{ width:100%; height:100%; object-fit:cover; }
  .stay-info{ padding: 20px; }
  .stay-info .fruit-label{ font-family: var(--mono); font-size: 10.5px; letter-spacing:.1em; color: var(--sol); text-transform:uppercase; }
  .stay-info h3{ font-size: 20px; margin: 8px 0 10px; }
  .stay-meta{ display:flex; justify-content: space-between; align-items:baseline; font-size: 13px; color: rgba(255,255,255,.6); }
  .stay-meta .price{ font-family: var(--mono); color: var(--branco); font-size: 14px; }
  .stay-note{ margin-top: 28px; font-size: 13.5px; color: rgba(255,255,255,.5); max-width: 460px; }

  /* ---------- ESTRUTURA (same card system as pillars, per critique) ---------- */
  .estrutura{ background: var(--areia-escura); }
  .estrutura-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
  .estrutura-card{
    background: var(--branco); border-radius: var(--radius);
    padding: 30px 26px; box-shadow: 0 20px 50px -30px rgba(20,38,32,.25);
  }
  .estrutura-card .icon{
    width: 48px; height:48px; border-radius: 14px;
    background: var(--agua); color: var(--branco);
    display:flex; align-items:center; justify-content:center;
    font-family: var(--serif); font-size: 20px; margin-bottom: 20px;
  }
  .estrutura-card h3{ font-size: 20px; margin-bottom: 8px; }
  .estrutura-card p{ font-size: 14.5px; color: var(--mata-suave); opacity:.78; }

  /* ---------- EVENTOS ---------- */
  .eventos{ background: var(--areia); }
  .evento-grid{ display:grid; grid-template-columns: 1.2fr 1fr; gap: 28px; }
  .evento-card{
    position:relative; border-radius: var(--radius); overflow:hidden;
    min-height: 380px; display:flex; align-items:flex-end;
  }
  .evento-card img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:-2; }
  .evento-card::after{
    content:""; position:absolute; inset:0;
    background: linear-gradient(180deg, transparent 30%, rgba(10,20,17,.9) 100%);
    z-index:-1;
  }
  .evento-body{ padding: 30px; color: var(--branco); }
  .evento-body .eyebrow{ color: var(--sol); margin-bottom: 10px; }
  .evento-body h3{ font-size: 26px; margin-bottom: 10px; }
  .evento-body p{ font-size: 14px; color: rgba(255,255,255,.78); max-width: 380px; margin-bottom: 18px; }

  /* ---------- DEPOIMENTOS ---------- */
  .depoimentos{ background: var(--mata); color: var(--branco); text-align:center; }
  .depoimentos .section-head{ margin: 0 auto 60px; text-align:center; }
  .depo-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
  .depo-card{
    background: var(--mata-suave); border-radius: var(--radius);
    padding: 34px 28px; text-align:left;
    border: 1px solid rgba(255,255,255,.06);
  }
  .depo-card .quote-mark{ font-family: var(--serif); font-size: 42px; color: var(--agua); line-height: 0; display:block; margin-bottom: 14px;}
  .depo-card p{ font-size: 15px; color: rgba(255,255,255,.85); margin-bottom: 20px; }
  .depo-card .who{ font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,.5); }

  /* ---------- FOOTER CTA ---------- */
  .cta-final{
    background: var(--agua-escura); color: var(--branco);
    text-align:center; padding: 100px 5%;
  }
  .cta-final h2{ font-size: clamp(30px,5vw,52px); max-width: 640px; margin: 0 auto 26px; }
  .cta-final p{ opacity:.8; max-width: 460px; margin: 0 auto 34px; }

  footer{ background: var(--mata); color: rgba(255,255,255,.6); padding: 60px 5% 30px; }
  .footer-grid{ display:flex; justify-content: space-between; flex-wrap:wrap; gap: 40px; margin-bottom: 40px; }
  .footer-logo{ font-family: var(--serif); font-size: 22px; color: var(--branco); }
  .footer-col h4{ font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform:uppercase; color: var(--sol); margin-bottom: 14px; }
  .footer-col a{ display:block; font-size: 14px; margin-bottom: 10px; color: rgba(255,255,255,.65); }
  .footer-bottom{ border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; font-size: 12.5px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; }

  /* ---------- TOUR VIRTUAL ---------- */
  .tour{ background: var(--areia); }
  .tour-filters{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 32px; }
  .tour-filter{
    font-family: var(--mono); font-size: 12px; letter-spacing:.06em; text-transform:uppercase;
    padding: 9px 18px; border-radius: 999px; border: 1.5px solid rgba(20,38,32,.2);
    background: transparent; color: var(--mata-suave); cursor:pointer;
    transition: background .25s ease, color .25s ease, border-color .25s ease;
  }
  .tour-filter:hover{ border-color: var(--agua); }
  .tour-filter.active{ background: var(--mata); color: var(--branco); border-color: var(--mata); }
  .tour-grid{
    display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 160px;
    gap: 14px;
  }
  .tour-item{
    position: relative; border: none; padding:0; border-radius: 16px; overflow:hidden;
    cursor: pointer; background: var(--mata);
  }
  .tour-item img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease, filter .3s ease; }
  .tour-item:hover img{ transform: scale(1.06); }
  .tour-item::after{
    content:""; position:absolute; inset:0;
    background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55) 100%);
  }
  .tour-item-tag{
    position:absolute; left: 12px; bottom: 10px; z-index: 2;
    font-family: var(--mono); font-size: 10.5px; letter-spacing:.08em; text-transform:uppercase;
    color: rgba(255,255,255,.9);
  }
  .tour-item.hidden{ display:none; }
  @media (max-width: 900px){
    .tour-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  }

  .lightbox{
    position: fixed; inset:0; z-index: 200;
    background: rgba(10,20,17,.94); backdrop-filter: blur(6px);
    display:flex; align-items:center; justify-content:center;
    opacity:0; visibility:hidden; transition: opacity .3s ease, visibility 0s linear .3s;
  }
  .lightbox.open{ opacity:1; visibility:visible; transition: opacity .3s ease, visibility 0s linear 0s; }
  .lightbox img{ max-width: 88vw; max-height: 80vh; object-fit:contain; border-radius: 10px; }
  .lightbox-close, .lightbox-prev, .lightbox-next{
    position:absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
    color: var(--branco); border-radius: 50%; width: 44px; height:44px; cursor:pointer;
    display:flex; align-items:center; justify-content:center; font-size: 18px;
    transition: background .25s ease;
  }
  .lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover{ background: rgba(255,255,255,.22); }
  .lightbox-close{ top: 24px; right: 24px; }
  .lightbox-prev{ left: 24px; top: 50%; transform: translateY(-50%); }
  .lightbox-next{ right: 24px; top: 50%; transform: translateY(-50%); }
  .lightbox-caption{
    position:absolute; bottom: 26px; left:0; right:0; text-align:center;
    font-family: var(--mono); font-size: 12px; letter-spacing:.06em; color: rgba(255,255,255,.75);
  }
  @media (max-width: 700px){
    .lightbox-prev, .lightbox-next{ width:38px; height:38px; }
    .lightbox-prev{ left: 10px; } .lightbox-next{ right: 10px; }
    .lightbox-close{ top: 14px; right: 14px; }
  }
  @media (max-width: 900px){
    nav.links, .nav-cta .btn-outline, .nav-cta .nav-link-quiet{ display:none; }
    .menu-toggle{ display:flex; }
    .pillar-grid, .estrutura-grid, .depo-grid{ grid-template-columns: 1fr; }
    .evento-grid{ grid-template-columns: 1fr; }
    .hero-coords{ display:none; }
    section{ padding: 80px 6%; }
    .footer-grid{ flex-direction: column; }
  }

  /* ---------- WHATSAPP FLUTUANTE ---------- */
  .whats-float{
    position: fixed; right: 26px; bottom: 26px; z-index: 150;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366;
    display:flex; align-items:center; justify-content:center;
    box-shadow: 0 10px 30px -8px rgba(0,0,0,.45);
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .whats-float:hover{ transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 34px -8px rgba(0,0,0,.55); }
  .whats-float svg{ width: 30px; height: 30px; }
  .whats-float::before{
    content:""; position:absolute; inset:0; border-radius:50%;
    box-shadow: 0 0 0 0 rgba(37,211,102,.55);
    animation: whats-pulse 2.6s ease-out infinite;
  }
  @keyframes whats-pulse{
    0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
    70%{ box-shadow: 0 0 0 16px rgba(37,211,102,0); }
    100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); }
  }
  @media (prefers-reduced-motion: reduce){
    .whats-float::before{ animation: none; }
  }
  @media (max-width: 900px){
    .whats-float{ right: 18px; bottom: 18px; width: 52px; height:52px; }
    .whats-float svg{ width:26px; height:26px; }
  }

  /* =====================================================
     PÁGINA ACOMODAÇÕES
  ===================================================== */

  /* ---------- Hero interno (imagem estática, não vídeo) ---------- */
  .page-hero{ min-height: 62vh; }
  .page-hero .hero-content{ padding-top: 60px; }
  .breadcrumb{
    display:flex; align-items:center; gap: 8px;
    font-family: var(--mono); font-size: 12px; letter-spacing:.06em; text-transform:uppercase;
    color: rgba(255,255,255,.55); margin-bottom: 20px;
  }
  .breadcrumb a{ color: rgba(255,255,255,.85); transition: color .2s ease; }
  .breadcrumb a:hover{ color: var(--sol); }
  .breadcrumb .sep{ color: rgba(255,255,255,.35); }
  .page-hero h1{ color: var(--branco); font-size: clamp(38px, 5.5vw, 62px); line-height: 1.02; }
  .page-hero h1 span{ color: var(--agua); font-style: italic; font-weight: 400; }
  .page-hero p{ color: rgba(255,255,255,.82); font-size: 16.5px; max-width: 520px; margin-top: 20px; }

  /* ---------- Barra de filtros (reaproveita .tour-filter) ---------- */
  .filter-bar{ display:flex; flex-wrap:wrap; align-items:center; gap: 22px; margin-bottom: 44px; }
  .filter-group{ display:flex; flex-wrap:wrap; gap: 10px; align-items:center; }
  .filter-group .filter-label{
    font-family: var(--mono); font-size: 11px; letter-spacing:.1em; text-transform:uppercase;
    color: var(--mata-suave); opacity:.55; margin-right: 2px;
  }
  .filter-divider{ width:1px; height: 26px; background: rgba(20,38,32,.15); }
  @media (max-width: 700px){ .filter-divider{ display:none; } }

  /* ---------- Grade de acomodações ---------- */
  .accom-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
  @media (max-width: 1080px){ .accom-grid{ grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 640px){ .accom-grid{ grid-template-columns: 1fr; } }

  .accom-card{
    background: var(--branco); border-radius: var(--radius); overflow: hidden;
    box-shadow: 0 20px 50px -32px rgba(20,38,32,.35);
    transition: transform .35s ease, box-shadow .35s ease, opacity .3s ease, transform .3s ease;
    display:flex; flex-direction:column;
  }
  .accom-card:hover{ transform: translateY(-6px); box-shadow: 0 26px 56px -28px rgba(20,38,32,.45); }
  .accom-card.hidden{ display:none; }

  .accom-media{ position:relative; aspect-ratio: 4/3; overflow:hidden; background: var(--mata); }
  .accom-media img{ width:100%; height:100%; object-fit:cover; transition: transform .6s cubic-bezier(.16,.8,.32,1); }
  .accom-card:hover .accom-media img{ transform: scale(1.07); }

  /* Placeholder para unidades sem foto ainda */
  .accom-media.placeholder{
    display:flex; align-items:center; justify-content:center;
    background: linear-gradient(150deg, var(--mata) 0%, var(--agua-escura) 100%);
  }
  .accom-media.placeholder .initial{
    font-family: var(--serif); font-style: italic; font-weight: 500;
    font-size: 56px; color: rgba(255,255,255,.85);
  }
  .accom-media.placeholder .soon{
    position:absolute; left: 14px; bottom: 12px;
    font-family: var(--mono); font-size: 10px; letter-spacing:.08em; text-transform:uppercase;
    color: rgba(255,255,255,.55);
  }

  .accom-type-tag{
    position:absolute; top: 14px; left: 14px; z-index: 2;
    font-family: var(--mono); font-size: 10.5px; letter-spacing:.08em; text-transform:uppercase;
    color: var(--mata); background: rgba(244,239,227,.92);
    padding: 6px 12px; border-radius: 999px;
  }

  .accom-body{ padding: 22px 22px 24px; display:flex; flex-direction:column; gap: 12px; flex: 1; }
  .accom-body h3{ font-size: 21px; }
  .accom-body .accom-desc{ font-size: 14px; color: var(--mata-suave); opacity: .78; line-height: 1.55; }

  .accom-amenities{ display:flex; flex-wrap:wrap; gap: 8px; }
  .accom-amenities span{
    font-family: var(--mono); font-size: 10.5px; letter-spacing:.03em;
    color: var(--agua-escura); background: rgba(16,166,179,.1);
    padding: 5px 10px; border-radius: 999px;
  }

  .accom-footer{
    margin-top: auto; padding-top: 14px; border-top: 1px dashed rgba(20,38,32,.14);
    display:flex; align-items:center; justify-content: space-between; gap: 12px;
  }
  .accom-footer .price{ font-family: var(--mono); font-size: 15px; color: var(--mata); }
  .accom-footer .price small{ display:block; font-size: 10.5px; opacity:.55; font-weight: 400; }
  .accom-footer .btn{ padding: 10px 18px; font-size: 13px; }

  .accom-empty{
    display:none; text-align:center; padding: 60px 20px; color: var(--mata-suave); opacity:.7;
    font-size: 15px; grid-column: 1 / -1;
  }
  .accom-empty.show{ display:block; }

  /* ---------- Inclui / política ---------- */
  .policy-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 28px; }
  @media (max-width: 900px){ .policy-grid{ grid-template-columns: 1fr; } }
  .policy-list{ display:flex; flex-direction:column; gap: 0; }
  .policy-item{
    display:flex; justify-content: space-between; gap: 16px;
    padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .policy-item .k{ font-size: 14.5px; color: rgba(255,255,255,.6); }
  .policy-item .v{ font-size: 14.5px; color: var(--branco); font-weight: 500; text-align:right; }