  /* ================= CATEGORIES (mapa de fundo em tela cheia) ================= */
  .categories-section{
    position:relative;
    padding:0;
    min-height:1500px;
    overflow:hidden;
  }

  /* mapa preenche a seção inteira, de ponta a ponta da tela — atrás de tudo */
  .categories-map-bg{
    position:absolute;
    inset:0;
    z-index:0;
    background:var(--sand);
  }
  .map-canvas-full{ width:100%; height:100%; }

  /* conteúdo flutuante fica alinhado com o resto do site (max-width),
     mas o mapa atrás dele continua esticando até as bordas da tela.
     Vira um contêiner flex em tela cheia, empurrando o painel pra direita
     e esticando ele por toda a altura do mapa. */
  .categories-overlay-content{
    position:absolute;
    inset:0;
    z-index:1;
    display:flex;
    justify-content:flex-start;
    pointer-events:none; /* deixa os cliques passarem direto pro mapa nos espaços vazios */
  }

  /* Componente reutilizável de "espaço de anúncio" — usado nos anúncios
     sidebar reais da página de ponto turístico (Loja C). */
  .ad-slot{
    border:2px dashed rgba(1,124,192,0.35);
    border-radius:20px;
    background:rgba(1,124,192,0.05);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:22px;
    text-align:center;
    color:var(--text-soft);
    transition:border-color .2s ease, background .2s ease;
  }
  .ad-slot:hover{ border-color:var(--sky); background:rgba(1,124,192,0.09); }
  .ad-slot svg{ width:30px; height:30px; color:var(--sky); }
  .ad-slot .ad-label{
    font-size:11.5px;
    font-weight:700;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:var(--sky);
  }
  .ad-slot .ad-size{ font-size:11px; color:var(--text-soft); }
  .ad-slot.square{ aspect-ratio:3/2; }
  .ad-slot.tall{ aspect-ratio:3/2; }

  .categories-main{ min-width:0; }

  /* Menu vertical — encostado tipo barra lateral (igual ao Facebook
     Marketplace): sem cantos arredondados, sem "flutuar" com sombra grande,
     fundo sólido (não mais vidro fosco), só uma linha fina separando do mapa. */
  .categories-panel{
    background:#fff;
    border-right:1px solid rgba(18,43,48,0.1);
    box-shadow:4px 0 16px rgba(18,43,48,0.08);
    padding:24px;
    pointer-events:auto; /* aqui dentro, os cliques voltam a funcionar normalmente */
  }

  /* Menu vertical novo: busca no topo, categorias em emoji, continentes embaixo. */
  .categories-panel-vertical{
    display:flex;
    flex-direction:column;
    gap:18px;
    width:320px;
    height:100%;
    overflow-y:auto;
  }

  .panel-search-box{ position:relative; }
  .panel-search-box .hero-search-icon{
    position:absolute;
    left:16px; top:50%;
    transform:translateY(-50%);
    width:18px; height:18px;
    color:var(--text-soft);
    pointer-events:none;
  }
  .panel-search-box input{
    width:100%;
    background:#fff;
    border:1.5px solid rgba(18,43,48,0.12);
    border-radius:14px;
    padding:13px 16px 13px 44px;
    font-family:'Inter', sans-serif;
    font-size:14px;
    color:var(--ink);
  }
  .panel-search-box input:focus{ outline:none; border-color:var(--sky); }
  .panel-search-box input::placeholder{ color:var(--text-soft); }
  .panel-search-box .hero-search-results{
    display:none;
    position:absolute;
    top:calc(100% + 8px);
    left:0; right:0;
    background:#fff;
    border-radius:14px;
    box-shadow:0 20px 44px rgba(18,43,48,0.22);
    max-height:320px;
    overflow-y:auto;
    padding:8px;
    z-index:20;
  }
  .panel-search-box .hero-search-results.open{ display:block; }

  .panel-divider{ height:1px; background:rgba(18,43,48,0.1); }

  /* Categorias — lista vertical com emoji, no lugar do carrossel de fotos. */
  .category-emoji-list{
    display:flex;
    flex-direction:column;
    gap:2px;
  }
  .category-emoji-list button{
    display:flex;
    align-items:center;
    gap:12px;
    text-align:left;
    font-family:'Inter', sans-serif;
    font-size:14.5px;
    font-weight:600;
    color:var(--text-soft);
    padding:9px 12px;
    border-radius:10px;
    transition:background .18s ease, color .18s ease;
  }
  .category-emoji-list button:hover{ background:var(--sand); color:var(--sky); }
  .category-emoji-list button.active{ background:var(--teal-deep); color:#fff; }
  .category-emoji{ font-size:19px; line-height:1; flex-shrink:0; }

  /* ===== coluna de continentes, dentro do menu vertical ===== */
  .continent-list{
    display:flex;
    flex-direction:column;
    gap:2px;
  }
  .continent-item{ display:flex; flex-direction:column; }
  .continent-item button[data-continent]{
    text-align:left;
    font-family:'Poppins', sans-serif;
    font-size:15px;
    font-weight:600;
    color:var(--text-soft);
    padding:10px 14px;
    border-radius:10px;
    transition:background .18s ease, color .18s ease;
  }
  .continent-item button[data-continent]:hover{ background:var(--sand); color:var(--sky); }
  .continent-item button[data-continent].active{
    background:var(--teal-deep);
    color:#fff;
    border-radius:10px 10px 0 0;
  }

  /* País — aninhado dentro do próprio continente, só visível quando ele
     está aberto (ativo). Sem "Todos": clicar no continente já reseta. */
  .continent-countries{
    display:flex;
    flex-direction:column;
    gap:1px;
    background:var(--sand);
    border-radius:0 0 10px 10px;
    padding:6px;
    margin-bottom:2px;
  }
  .continent-countries button{
    text-align:left;
    font-family:'Inter', sans-serif;
    font-size:13px;
    font-weight:600;
    color:var(--text-soft);
    padding:7px 12px;
    border-radius:8px;
    transition:background .18s ease, color .18s ease;
  }
  .continent-countries button:hover{ background:#fff; color:var(--sky); }
  .continent-countries button.active{
    background:var(--sky);
    color:#fff;
  }

  /* ===== painel de detalhe do ponto turístico ===== */
  #pointDetail{
    max-height:0;
    opacity:0;
    overflow:hidden;
    transition:max-height .5s ease, opacity .4s ease, margin-top .5s ease;
  }
  #pointDetail.open{
    max-height:3000px;
    opacity:1;
    margin-top:32px;
  }

  .point-detail-columns{
    display:grid;
    grid-template-columns:1fr 280px;
    gap:32px;
    align-items:start;
    margin-top:28px;
  }
  .point-detail-text{ padding:0 4px; min-width:0; }

  .point-detail-ads{
    display:flex;
    flex-direction:column;
    gap:20px;
  }
  .point-detail-ads .ad-slot{ width:100%; aspect-ratio:1/1; }
  .ad-slot-real{ padding:0; overflow:hidden; border-style:solid; border-color:transparent; }
  .ad-slot-img{ width:100%; height:100%; object-fit:cover; display:block; }

  @media (max-width: 900px){
    .point-detail-columns{ grid-template-columns:1fr; }
    .point-detail-ads{ flex-direction:row; }
    .point-detail-ads .ad-slot{ flex:1; }
  }

  .point-video{
    position:relative;
    width:100%;
    padding-top:56.25%;
    border-radius:16px;
    overflow:hidden;
    margin:28px 0;
  }
  .point-video iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }

  /* ---- galeria estilo Zillow: foto principal + miniaturas ---- */
  .point-gallery-grid{
    display:grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap:8px;
    height:420px;
    border-radius:16px;
    overflow:hidden;
    margin-bottom:28px;
  }
  .point-gallery-grid.single{ display:block; height:420px; }
  .point-gallery-grid img{
    width:100%; height:100%;
    object-fit:cover;
    cursor:zoom-in;
    display:block;
    transition:transform .3s ease;
  }
  .point-gallery-grid.single img{ border-radius:16px; }
  .gallery-main-cell{ grid-row:1 / 3; grid-column:1; position:relative; overflow:hidden; }
  .gallery-thumb-cell{ position:relative; overflow:hidden; }
  .point-gallery-grid img:hover{ transform:scale(1.04); }

  /* menos de 4 miniaturas disponíveis: distribui o espaço direito de forma equilibrada */
  .point-gallery-grid.count-1 .gallery-thumb-cell{ grid-row:1 / 3; grid-column:2 / 4; }
  .point-gallery-grid.count-2 .gallery-thumb-cell:nth-child(2){ grid-row:1; grid-column:2 / 4; }
  .point-gallery-grid.count-2 .gallery-thumb-cell:nth-child(3){ grid-row:2; grid-column:2 / 4; }
  .point-gallery-grid.count-3 .gallery-thumb-cell:nth-child(3){ grid-row:2; grid-column:3; }

  .gallery-more-badge{
    position:absolute;
    inset:0;
    background:rgba(10,20,25,0.55);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:15px;
    pointer-events:none;
  }

  @media (max-width: 800px){
    .point-gallery-grid{ grid-template-columns:1fr; grid-template-rows:none; height:auto; }
    .point-gallery-grid.single{ height:260px; }
    .gallery-main-cell{ grid-row:auto; grid-column:auto; height:260px; }
    .gallery-thumb-cell{ display:none; }
    .point-gallery-grid.count-1 .gallery-thumb-cell,
    .point-gallery-grid.count-2 .gallery-thumb-cell,
    .point-gallery-grid.count-3 .gallery-thumb-cell{ display:none; }
  }

  .point-subtitle{
    font-size:14.5px;
    font-weight:600;
    color:var(--sky);
    margin-bottom:18px;
  }

  /* ---- fatos rápidos, estilo "beds | baths | sqft" ---- */
  .point-facts-row{
    display:flex;
    flex-wrap:wrap;
    gap:0;
    margin-bottom:22px;
    border-top:1px solid rgba(18,43,48,0.08);
    border-bottom:1px solid rgba(18,43,48,0.08);
    padding:16px 0;
  }
  .point-fact-chip{
    display:flex;
    flex-direction:column;
    padding:0 22px;
    border-right:1px solid rgba(18,43,48,0.08);
  }
  .point-fact-chip:first-child{ padding-left:0; }
  .point-fact-chip:last-child{ border-right:none; }
  .fact-value{
    font-family:'Poppins', sans-serif;
    font-weight:700;
    font-size:16px;
    color:var(--teal-deep);
  }
  .fact-label{
    font-size:11.5px;
    color:var(--text-soft);
    margin-top:2px;
  }

  .point-description{
    font-size:14px;
    line-height:1.7;
    color:var(--text-soft);
    margin:0 0 16px;
    max-width:720px;
  }
  .point-description p{ margin-bottom:10px; }
  .point-description ul, .point-description ol{ margin:0 0 10px 22px; }
  .point-description a{ color:var(--sky); font-weight:600; }
  .point-description strong{ color:var(--teal-deep); }

  /* ---- ponto turístico como "página" sobreposta ---- */
  body.point-overlay-lock{ overflow:hidden; }

  .point-overlay{
    position:fixed;
    inset:0;
    background:rgba(10,20,25,0.72);
    z-index:1050;
    display:none;
    overflow-y:auto;
    padding:0 20px 40px;
  }
  .point-overlay.open{ display:block; animation:pointOverlayFade .2s ease; }
  @keyframes pointOverlayFade{ from{ opacity:0; } to{ opacity:1; } }

  .point-overlay-card{
    max-width:1280px;
    margin:0 auto;
    background:var(--sand);
    border-radius:0 0 20px 20px;
    box-shadow:0 30px 70px rgba(0,0,0,0.4);
  }

  .point-overlay-topbar{
    position:sticky;
    top:0;
    z-index:10;
    background:#fff;
    box-shadow:0 2px 12px rgba(18,43,48,0.08);
  }
  .point-overlay-topbar-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 28px;
  }
  .point-overlay-back{
    display:flex;
    align-items:center;
    gap:6px;
    background:none;
    border:none;
    font-family:'Inter', sans-serif;
    font-weight:600;
    font-size:14px;
    color:var(--teal-deep);
    cursor:pointer;
    padding:8px 10px;
    border-radius:8px;
    transition:background .15s ease;
    flex-shrink:0;
  }
  .point-overlay-back:hover{ background:var(--sand); }
  .point-overlay-back svg{ width:18px; height:18px; }

  .point-overlay-topbar-title{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    flex:1;
    min-width:0;
    padding:0 16px;
  }
  .point-overlay-topbar-logo{ display:flex; align-items:center; flex-shrink:0; }
  .point-overlay-topbar-logo svg,
  .point-overlay-topbar-logo img{ height:26px; width:auto; max-width:120px; object-fit:contain; }
  .point-overlay-topbar-name{
    font-family:'Poppins', sans-serif;
    font-weight:600;
    font-size:15px;
    color:var(--teal-deep);
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }

  .point-overlay-close{
    width:36px; height:36px;
    border-radius:50%;
    background:var(--sand);
    color:var(--teal-deep);
    font-size:22px;
    line-height:1;
    border:none;
    cursor:pointer;
    transition:background .2s ease;
    flex-shrink:0;
  }
  .point-overlay-close:hover{ background:rgba(18,43,48,0.12); }

  .point-overlay-inner{
    padding:32px 32px 56px;
  }

  @media (max-width: 700px){
    .point-overlay{ padding:0; }
    .point-overlay-card{ border-radius:0; }
    .point-overlay-topbar-inner{ padding:12px 16px; }
    .point-overlay-inner{ padding:20px 16px 40px; }
  }

  /* ---- lightbox (ampliar foto) ---- */
  .lightbox-overlay{
    position:fixed;
    inset:0;
    background:rgba(10,20,25,0.92);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:1100;
    padding:40px;
  }
  .lightbox-overlay.open{ display:flex; }
  .lightbox-img{
    max-width:min(90vw, 1000px);
    max-height:85vh;
    border-radius:12px;
    box-shadow:0 30px 60px rgba(0,0,0,0.5);
  }
  .lightbox-close{
    position:absolute;
    top:24px; right:32px;
    font-size:36px;
    line-height:1;
    color:#fff;
    background:none;
    border:none;
    cursor:pointer;
  }
  .lightbox-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:52px; height:52px;
    border-radius:50%;
    background:rgba(255,255,255,0.12);
    color:#fff;
    font-size:28px;
    border:1.5px solid rgba(255,255,255,0.3);
    cursor:pointer;
    transition:background .2s ease;
  }
  .lightbox-nav:hover{ background:rgba(255,255,255,0.25); }
  .lightbox-prev{ left:24px; }
  .lightbox-next{ right:24px; }

  @media (max-width: 700px){
    .lightbox-nav{ width:42px; height:42px; font-size:22px; }
  }

  /* ---- Guia Local, estilo cartão (parecido com Booking.com) ---- */
  .point-guide{ padding-top:24px; border-top:1px solid rgba(18,43,48,0.08); }
  .point-guide h4{
    font-family:'Poppins', sans-serif;
    font-weight:600;
    font-size:18px;
    color:var(--teal-deep);
    margin-bottom:18px;
  }

  .point-guide-layout{
    display:flex;
    gap:28px;
    align-items:flex-start;
  }
  .guide-filter{
    flex:0 0 200px;
    background:#fff;
    border-radius:14px;
    padding:18px;
    position:sticky;
    top:80px;
  }
  .guide-filter h5{
    font-family:'Poppins', sans-serif;
    font-weight:600;
    font-size:13px;
    color:var(--teal-deep);
    margin-bottom:12px;
  }
  .guide-filter-option{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:13px;
    color:var(--text-soft);
    padding:6px 0;
    cursor:pointer;
  }
  .guide-filter-checkbox{ width:15px; height:15px; accent-color:var(--sky); cursor:pointer; }

  .guide-cards-list{ flex:1; min-width:0; }

  @media (max-width: 800px){
    .point-guide-layout{ flex-direction:column; }
    .guide-filter{ flex:0 0 auto; width:100%; position:static; display:flex; flex-wrap:wrap; gap:4px 16px; }
    .guide-filter h5{ width:100%; }
  }

  .guide-card{
    display:flex;
    align-items:center;
    gap:18px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 8px 24px rgba(18,43,48,0.08);
    padding:16px;
    margin-bottom:14px;
    transition:box-shadow .2s ease;
  }
  .guide-card:hover{ box-shadow:0 12px 32px rgba(18,43,48,0.14); }
  .guide-card-link{
    display:flex;
    align-items:center;
    gap:18px;
    flex:1;
    min-width:0;
    color:inherit;
  }
  .guide-card img, .guide-card-noimg{
    width:120px; height:120px;
    border-radius:12px;
    object-fit:cover;
    background:var(--sand);
    flex-shrink:0;
  }
  .guide-card-body{ flex:1; min-width:0; }
  .guide-card-type{
    display:inline-block;
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:0.04em;
    color:var(--sky);
    margin-bottom:4px;
  }
  .guide-card-body h5{
    font-family:'Poppins', sans-serif;
    font-weight:600;
    font-size:16px;
    color:var(--teal-deep);
    margin-bottom:6px;
  }
  .guide-card-body p{ font-size:13px; color:var(--text-soft); line-height:1.5; margin-bottom:8px; }
  .guide-card-contact{ display:flex; flex-wrap:wrap; gap:14px; font-size:12.5px; color:var(--text-soft); }

  /* nível Gratuita: cartão mais simples (só foto, nome, subtítulo), sem link */
  .guide-card-gratuita{ padding:12px 16px; }
  .guide-card-gratuita img, .guide-card-gratuita .guide-card-noimg{ width:64px; height:64px; }
  .guide-card-subtitle{ font-size:12.5px; color:var(--text-soft); }

  /* nível Paga Simples: cartão completo, mas sem virar link (cursor normal) */
  .guide-card-paga{ cursor:default; }

  /* selo de nota média, usado no cartão Superpremium dentro da listagem */
  .guide-card-rating{
    display:inline-block;
    font-size:12.5px;
    font-weight:700;
    color:var(--gold);
    margin-bottom:4px;
  }
  .guide-card-rating span{ font-weight:400; color:var(--text-soft); }

  .guide-card-cta{
    display:inline-block;
    flex-shrink:0;
    background:var(--sky);
    color:#fff;
    font-weight:600;
    font-size:13px;
    padding:10px 18px;
    border-radius:22px;
    white-space:nowrap;
    transition:background .2s ease;
  }
  .guide-card-cta:hover{ background:var(--teal-deep); }

  @media (max-width: 600px){
    .guide-card{ flex-direction:column; align-items:stretch; }
    .guide-card-link{ flex-direction:column; align-items:flex-start; }
    .guide-card img, .guide-card-noimg{ width:100%; height:160px; }
    .guide-card-cta{ align-self:stretch; text-align:center; }
  }


  .map-card{
    margin-top:32px;
    background:#fff;
    border-radius:24px;
    box-shadow:0 24px 50px rgba(18,43,48,0.14);
    padding:24px;
  }
  .map-head{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:16px;
    color:var(--teal-deep);
  }
  .map-head svg{ width:20px; height:20px; color:var(--sky); flex-shrink:0; }
  .map-head span{
    font-family:'Poppins', sans-serif;
    font-weight:600;
    font-size:15px;
  }
  .map-canvas{
    width:100%;
    aspect-ratio:5/4;
    border-radius:16px;
    overflow:hidden;
    background:var(--sand);
  }
  .leaflet-popup-content{
    font-family:'Inter', sans-serif;
    font-size:13px;
    color:var(--teal-deep);
    font-weight:600;
  }
  .leaflet-popup-content-wrapper{ border-radius:12px; }

  .at-map-tooltip{
    background:var(--teal-deep);
    color:#fff;
    border:none;
    border-radius:8px;
    font-family:'Inter', sans-serif;
    font-size:12.5px;
    font-weight:600;
    padding:6px 12px;
    box-shadow:0 6px 16px rgba(18,43,48,0.25);
  }
  .at-map-tooltip::before{ border-top-color:var(--teal-deep); }

  .detail-card{
    display:grid;
    grid-template-columns:220px 1fr;
    gap:36px;
    align-items:center;
    background:#fff;
    border-radius:24px;
    box-shadow:0 24px 50px rgba(18,43,48,0.14);
    padding:36px;
  }
  .detail-visual{
    width:220px; height:220px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
  }
  .detail-visual svg{ width:80px; height:80px; }
  .detail-eyebrow{
    font-size:12px;
    font-weight:700;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:var(--gold);
    margin-bottom:8px;
  }
  .detail-title{
    font-family:'Poppins', sans-serif;
    font-weight:700;
    font-size:26px;
    color:var(--teal-deep);
    margin-bottom:14px;
  }
  .detail-text{
    font-size:14px;
    line-height:1.7;
    color:var(--text-soft);
    max-width:560px;
    margin-bottom:22px;
  }
  .detail-tags{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:26px; }
  .detail-tags span{
    font-size:12px;
    font-weight:600;
    color:var(--teal-deep);
    background:var(--sand);
    padding:7px 14px;
    border-radius:16px;
  }
  .detail-cta{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:var(--sky);
    color:#fff;
    font-weight:600;
    font-size:14px;
    padding:12px 24px;
    border-radius:26px;
    transition:background .2s ease;
  }
  .detail-cta:hover{ background:var(--teal-deep); }
  .detail-cta svg{ width:16px; height:16px; }

  @media (max-width: 900px){
    .categories-panel-vertical{ width:100%; }
  }

  @media (max-width: 700px){
    .detail-card{ grid-template-columns:1fr; text-align:center; }
    .detail-visual{ margin:0 auto; }
    .detail-tags{ justify-content:center; }
  }
  @media (max-width: 640px){
    .categories-head{ flex-wrap:wrap; }
    .section-title{ white-space:normal; }
  }

/* ================= COMENTÁRIOS DO PONTO TURÍSTICO ================= */
.point-comments{
  padding-top:24px;
  margin-top:24px;
  border-top:1px solid rgba(18,43,48,0.08);
}
.point-comments-header{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
}
.point-comments-header h4{
  font-family:'Poppins', sans-serif;
  font-weight:600;
  font-size:18px;
  color:var(--teal-deep);
}
.comments-average{
  font-size:14px;
  font-weight:700;
  color:var(--gold);
}
.comments-average span{ font-weight:400; color:var(--text-soft); font-size:12.5px; }

.comment-login-msg{
  background:#fff;
  border-radius:14px;
  padding:18px 20px;
  font-size:13.5px;
  color:var(--text-soft);
  margin-bottom:24px;
}
.comment-login-msg a{ color:var(--sky); font-weight:600; }

.comment-form{
  display:flex;
  flex-direction:column;
  gap:12px;
  background:#fff;
  border-radius:14px;
  padding:20px;
  margin-bottom:24px;
  max-width:560px;
}
.comment-form-label{
  font-size:12.5px;
  font-weight:600;
  color:var(--teal-deep);
}
.comment-star-picker{ display:flex; gap:4px; }
.star-btn{
  background:none;
  border:none;
  font-size:26px;
  line-height:1;
  color:rgba(18,43,48,0.2);
  cursor:pointer;
  padding:0;
  transition:color .15s ease;
}
.star-btn.active{ color:var(--gold); }
.comment-textarea{
  border:1.5px solid rgba(18,43,48,0.15);
  border-radius:10px;
  padding:12px;
  font-family:'Inter', sans-serif;
  font-size:13.5px;
  min-height:90px;
  resize:vertical;
}
.comment-textarea:focus{ outline:none; border-color:var(--sky); }
.comment-form-msg{ font-size:12.5px; margin:0; }
.comment-form-msg.success{ color:var(--success); }
.comment-form-msg.error{ color:var(--danger); }

.comments-list{ display:flex; flex-direction:column; gap:16px; }
.comment-item{
  background:#fff;
  border-radius:14px;
  padding:16px 20px;
}
.comment-item-head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:6px;
  flex-wrap:wrap;
}
.comment-item-head strong{ font-size:13.5px; color:var(--teal-deep); }
.comment-stars{ color:var(--gold); font-size:13px; }
.comment-date{ font-size:11.5px; color:var(--text-soft); margin-left:auto; }
.comment-item p{ font-size:13.5px; color:var(--ink); line-height:1.6; }

@media (max-width: 600px){
  .comment-date{ margin-left:0; }
}


/* ================= RESUMO DE AVALIAÇÕES POR CATEGORIA (barrinhas) ================= */
.ratings-resumo{
  background:#fff;
  border-radius:16px;
  padding:24px 26px;
  margin:24px 0;
}
.ratings-resumo-head{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
  flex-wrap:wrap;
}
.ratings-resumo-head h4{
  font-family:'Poppins', sans-serif;
  font-weight:600;
  font-size:18px;
  color:var(--teal-deep);
}

.rating-bars{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:12px 28px;
  margin-bottom:20px;
}
.rating-bar-row{
  display:grid;
  grid-template-columns:130px 1fr 34px;
  align-items:center;
  gap:10px;
}
.rating-bar-label{ font-size:12.5px; color:var(--text-soft); font-weight:600; }
.rating-bar-track{
  height:8px;
  border-radius:6px;
  background:rgba(18,43,48,0.08);
  overflow:hidden;
}
.rating-bar-fill{ height:100%; border-radius:6px; transition:width .3s ease; }
.rating-bar-good{ background:var(--sky); }
.rating-bar-low{ background:var(--gold); }
.rating-bar-value{ font-size:12.5px; font-weight:700; color:var(--teal-deep); text-align:right; }

.mini-comments-row{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:14px;
  padding-top:18px;
  border-top:1px solid rgba(18,43,48,0.08);
}
.mini-comment-card{
  background:var(--sand);
  border-radius:12px;
  padding:14px 16px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.mini-comment-card p{
  font-size:12.5px;
  color:var(--ink);
  line-height:1.5;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* ================= SLIDERS DE CATEGORIA (formulário de avaliação) ================= */
.comment-category-sliders{
  display:flex;
  flex-direction:column;
  gap:10px;
  background:var(--sand);
  border-radius:12px;
  padding:14px 16px;
}
.category-slider-row{
  display:grid;
  grid-template-columns:120px 1fr 22px;
  align-items:center;
  gap:10px;
}
.category-slider-label{ font-size:12px; color:var(--text-soft); font-weight:600; }
.category-slider-input{
  -webkit-appearance:none;
  appearance:none;
  width:100%;
  height:8px;
  border-radius:6px;
  background:linear-gradient(to right, var(--sky) 50%, rgba(18,43,48,0.12) 50%);
  outline:none;
  cursor:pointer;
}
.category-slider-input::-webkit-slider-thumb{
  -webkit-appearance:none;
  appearance:none;
  width:6px;
  height:18px;
  border-radius:3px;
  background:var(--teal-deep);
  border:2px solid #fff;
  box-shadow:0 1px 3px rgba(18,43,48,0.3);
  cursor:pointer;
  margin-top:-1px;
}
.category-slider-input::-moz-range-thumb{
  width:6px;
  height:18px;
  border-radius:3px;
  background:var(--teal-deep);
  border:2px solid #fff;
  box-shadow:0 1px 3px rgba(18,43,48,0.3);
  cursor:pointer;
}
.category-slider-input::-moz-range-track{
  height:8px;
  border-radius:6px;
  background:rgba(18,43,48,0.12);
}
.category-slider-input::-moz-range-progress{
  height:8px;
  border-radius:6px;
  background:var(--sky);
}
.category-slider-value{ font-size:12.5px; font-weight:700; color:var(--teal-deep); text-align:right; }

/* ================= CURTIR COMENTÁRIO ================= */
.like-btn{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:none;
  border:1.5px solid rgba(18,43,48,0.12);
  border-radius:20px;
  padding:4px 12px;
  font-size:12px;
  font-weight:600;
  color:var(--text-soft);
  cursor:pointer;
  margin-top:8px;
  transition:border-color .15s ease, color .15s ease, background .15s ease;
}
.like-btn:hover{ border-color:var(--sky); color:var(--sky); }
.like-btn.liked{ background:rgba(1,124,192,0.1); border-color:var(--sky); color:var(--sky); }
.like-icon{ font-size:12px; }
