/* ===== home ===== */
.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; }
:root {
    --green: #009c3b;
    --green-light: #e8f5ee;
    --gold: #FFB800;
    --dark: #111;
    --text: #1a1a1a;
    --muted: #6b7280;
    --border: #e5e7eb;
    --bg: #f9f9f7;
    --white: #ffffff;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--white);
    color: var(--text);
    max-width: 430px;
    margin: 0 auto;
    overflow-x: hidden;
  }

  /* ===== HEADER ===== */
  header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 10px 16px;
    display: flex; align-items: center; justify-content: space-between;
  }

  .logo-wrap { display:flex; align-items:center; gap:8px; text-decoration:none; }
  .logo-text-wrap { display:flex; flex-direction:column; gap:1px; }
  .logo-name { font-family:'DM Serif Display',serif; font-size:20px; color:var(--green); line-height:1; }
  .logo-dest { font-size:7px; font-weight:700; color:var(--muted); letter-spacing:3px; text-transform:uppercase; text-align:center; }
  .logo-dots { display:flex; gap:3px; margin-top:2px; justify-content:center; }
  .logo-dot { width:4px; height:4px; border-radius:50%; }

  .header-right { display:flex; align-items:center; gap:8px; }

  .btn-wpp {
    background: #25d366; color:white;
    padding: 8px 12px; border-radius:50px;
    font-size:11px; font-weight:700;
    text-decoration:none; display:flex;
    align-items:center; gap:5px;
    box-shadow: 0 4px 12px rgba(37,211,102,0.3);
  }

  /* ===== MENU CATEGORIAS ===== */
  .cat-menu {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 16px;
  }
  .cat-menu::-webkit-scrollbar { display:none; }

  .cat-item {
    display: flex; flex-direction:column;
    align-items: center; gap: 4px;
    padding: 10px 14px;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    flex-shrink: 0;
  }
  .cat-item.active { border-bottom-color: var(--green); }
  .cat-item-icon { font-size: 18px; }
  .cat-item-label {
    font-size: 9px; font-weight: 700;
    color: var(--muted); letter-spacing: 1px;
    text-transform: uppercase; white-space: nowrap;
  }
  .cat-item.active .cat-item-label { color: var(--green); }

  /* ===== BANNERS ===== */
  .banner-wrap { position:relative; overflow:hidden; }

  .banners { display:flex; transition:transform 0.4s ease; }

  .banner {
    min-width: 100%; height: 200px;
    display: flex; flex-direction:column;
    align-items: flex-start; justify-content: flex-end;
    padding: 20px 16px; position:relative; overflow:hidden;
  }

  .banner-1 { background: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.6)), url('../img/snowland.jpg'); background-size: cover; background-position: center 40%; }
  .banner-2 { background: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.6)), url('../img/florybal.jpg'); background-size: cover; background-position: center 30%; }
  .banner-3 { background: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.6)), url('../img/olivas.jpg'); background-size: cover; background-position: center 40%; }
  .banner-4 { background: linear-gradient(160deg, #4a0000 0%, #cc0000 100%); }

  .banner-emoji {
    position: absolute; right: 16px; top: 50%;
    transform: translateY(-50%);
    font-size: 72px; opacity: 0.2;
  }

  .banner-tag {
    font-size:9px; font-weight:800;
    color:rgba(255,255,255,0.7);
    letter-spacing:3px; text-transform:uppercase;
    margin-bottom:4px; position:relative;
  }

  .banner h2 {
    font-family:'DM Serif Display',serif;
    font-size:22px; color:white; line-height:1.2;
    margin-bottom:12px; position:relative;
    max-width: 220px;
  }

  .banner-btn {
    background:white; color:var(--dark);
    padding:8px 18px; border-radius:50px;
    font-size:11px; font-weight:800;
    text-decoration:none; position:relative;
  }

  .banner-dots {
    display:flex; gap:5px; justify-content:center;
    padding: 10px 0; background:white;
  }
  .bdot {
    height:4px; border-radius:2px;
    background:var(--border); cursor:pointer;
    transition: all 0.3s;
    width: 16px;
  }
  .bdot.active { background:var(--green); width:28px; }

  /* ===== BENEFÍCIOS ===== */
  .benefits {
    background: var(--green);
    padding: 14px 16px;
    display: flex; gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .benefits::-webkit-scrollbar { display:none; }

  .benefit {
    display: flex; align-items:center;
    gap: 8px; min-width: 140px;
    padding: 0 12px;
    border-right: 1px solid rgba(255,255,255,0.2);
  }
  .benefit:last-child { border-right:none; }
  .benefit-icon { font-size:18px; flex-shrink:0; }
  .benefit-text { }
  .benefit-title { font-size:10px; font-weight:800; color:white; line-height:1.2; }
  .benefit-sub { font-size:9px; color:rgba(255,255,255,0.7); line-height:1.2; }

  /* ===== SEÇÕES ===== */
  .section { padding: 24px 16px; }
  .section-gray { padding: 24px 16px; background: var(--bg); }

  .sec-header {
    display: flex; align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 16px;
  }

  .sec-titles { display:flex; flex-direction:column; gap:2px; }
  .sec-tag {
    font-size:9px; font-weight:800;
    color:var(--green); letter-spacing:3px;
    text-transform:uppercase;
  }
  .sec-title {
    font-family:'DM Serif Display',serif;
    font-size:20px; color:var(--dark);
  }

  .sec-link {
    font-size:10px; font-weight:700;
    color:var(--green); text-decoration:none;
    letter-spacing:1px; text-transform:uppercase;
    white-space:nowrap;
  }

  /* ===== CARDS SCROLL ===== */
  .cards-scroll {
    display:flex; gap:12px;
    overflow-x:auto; padding-bottom:6px;
    scrollbar-width:none;
    margin:0 -16px; padding-left:16px; padding-right:16px;
  }
  .cards-scroll::-webkit-scrollbar { display:none; }

  .product-card {
    min-width: 185px; background:white;
    border-radius:12px; overflow:hidden;
    border:1px solid var(--border); flex-shrink:0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .product-card:active { transform:scale(0.98); }

  .product-img {
    width:100%; height:110px;
    object-fit:cover;
    background: linear-gradient(135deg, var(--green-light), #c8e6d4);
    display:flex; align-items:center; justify-content:center;
    font-size:40px; position:relative;
  }

  .product-cat {
    position:absolute; top:8px; left:8px;
    background:white; border-radius:50px;
    padding:3px 9px;
    font-size:8px; font-weight:800;
    color:var(--green); letter-spacing:1px;
    text-transform:uppercase;
  }

  .product-cat.gold { color: #7a4a00; }

  .product-body { padding:12px; }
  .product-name {
    font-size:12px; font-weight:700;
    color:var(--dark); margin-bottom:8px;
    line-height:1.3;
  }

  .product-footer {
    display:flex; align-items:center;
    justify-content:space-between; gap:6px;
  }

  .price-wrap { display:flex; flex-direction:column; min-width:0; }
  .price-from { font-size:8px; color:var(--muted); font-weight:500; }
  .price-val {
    font-family:'DM Serif Display',serif;
    font-size:16px; color:var(--green); line-height:1; white-space:nowrap;
  }
  .price-val.gold { color: var(--gold); }
  .price-old {
    font-size:9px; color:var(--muted);
    text-decoration:line-through;
  }

  .btn-buy {
    background:var(--green); color:white;
    padding:8px 12px; border-radius:50px;
    font-size:10px; font-weight:800;
    text-decoration:none;
    white-space:nowrap;
    display:inline-flex; align-items:center; justify-content:center; gap:4px;
    flex-shrink:0;
  }
  .btn-buy svg { width:13px; height:13px; fill:white; flex-shrink:0; }
  .btn-buy.gold { background:var(--gold); color:#3a2800; }

  /* ===== SOBRE ===== */
  .about-img {
    width:100%; height:160px;
    background: linear-gradient(135deg, #003d18, #009c3b);
    border-radius:16px;
    display:flex; align-items:center; justify-content:center;
    font-size:64px; margin-bottom:16px;
  }

  .about h3 {
    font-family:'DM Serif Display',serif;
    font-size:22px; color:var(--dark);
    margin-bottom:10px; line-height:1.2;
  }
  .about h3 em { color:var(--green); font-style:normal; }
  .about p {
    font-size:12px; color:var(--muted);
    line-height:1.9; margin-bottom:10px;
  }

  /* ===== DIFERENCIAIS ===== */
  .diffs {
    display:grid; grid-template-columns:1fr 1fr;
    gap:10px; margin-top:4px;
  }

  .diff-card {
    background:white; border-radius:12px;
    padding:14px; border:1px solid var(--border);
  }
  .diff-card.green { background:var(--green); border-color:var(--green); }
  .diff-icon { font-size:22px; margin-bottom:6px; }
  .diff-title { font-size:11px; font-weight:700; color:var(--dark); margin-bottom:3px; }
  .diff-desc { font-size:10px; color:var(--muted); line-height:1.5; }
  .diff-card.green .diff-title,
  .diff-card.green .diff-desc { color:white; }

  /* ===== DEPOIMENTOS ===== */
  .reviews-scroll {
    display:flex; gap:12px;
    overflow-x:auto; scrollbar-width:none;
    margin:0 -16px; padding:0 16px 6px;
  }
  .reviews-scroll::-webkit-scrollbar { display:none; }

  .review-card {
    min-width:220px; background:white;
    border-radius:12px; padding:14px;
    border:1px solid var(--border);
    flex-shrink:0;
    box-shadow:0 2px 12px rgba(0,0,0,0.04);
  }

  .review-stars { font-size:12px; margin-bottom:6px; }
  .review-text { font-size:11px; color:var(--muted); line-height:1.6; margin-bottom:10px; }
  .review-author {
    display:flex; align-items:center; gap:8px;
  }
  .review-avatar {
    width:28px; height:28px; border-radius:50%;
    background:var(--green-light);
    display:flex; align-items:center; justify-content:center;
    font-size:12px; font-weight:700; color:var(--green);
  }
  .review-name { font-size:11px; font-weight:700; color:var(--dark); }
  .review-date { font-size:9px; color:var(--muted); }

  /* ===== CTA ===== */
  .cta {
    background: linear-gradient(135deg, #003d18, #009c3b);
    padding: 32px 16px; text-align:center;
  }
  .cta h3 {
    font-family:'DM Serif Display',serif;
    font-size:24px; color:white;
    margin-bottom:8px;
  }
  .cta p { font-size:12px; color:rgba(255,255,255,0.75); margin-bottom:20px; line-height:1.7; }
  .btn-cta {
    display:inline-block;
    background:white; color:var(--green);
    padding:14px 28px; border-radius:50px;
    font-size:13px; font-weight:800;
    text-decoration:none; letter-spacing:1px;
  }

  /* ===== FOOTER ===== */
  footer { background:var(--dark); padding:32px 16px 24px; }

  .footer-logo-wrap { display:flex; align-items:center; gap:8px; margin-bottom:12px; }
  .footer-logo-name { font-family:'DM Serif Display',serif; font-size:18px; color:var(--green); }
  .footer-logo-dest { font-size:7px; font-weight:700; color:#555; letter-spacing:3px; text-transform:uppercase; }
  .footer-desc { font-size:11px; color:#555; line-height:1.8; margin-bottom:14px; }

  .footer-dots { display:flex; gap:5px; }
  .footer-dot { width:5px; height:5px; border-radius:50%; }

  .footer-links {
    display:grid; grid-template-columns:1fr 1fr;
    gap:6px; margin-bottom:20px;
  }
  .footer-links a {
    font-size:11px; color:#555;
    text-decoration:none; padding:3px 0;
    transition:color 0.2s;
  }
  .footer-links a:hover { color:var(--green); }

  .footer-cadastur {
    display:flex; align-items:center; gap:8px;
    background:#1a1a1a; border-radius:10px;
    padding:12px; margin-bottom:16px;
  }
  .cadastur-badge {
    background:var(--green); color:white;
    font-size:9px; font-weight:800;
    padding:4px 8px; border-radius:6px;
    letter-spacing:1px;
  }
  .cadastur-text { font-size:10px; color:#555; line-height:1.4; }

  .footer-bottom {
    border-top:1px solid #1a1a1a;
    padding-top:16px; text-align:center;
  }
  .footer-bottom p { font-size:10px; color:#444; line-height:1.8; }
  .footer-bottom span { color:var(--green); }

  /* ===== WPP FLUTUANTE ===== */
  .wpp-float {
    position:fixed; bottom:20px; right:16px;
    width:52px; height:52px; border-radius:50%;
    background:#25d366;
    display:flex; align-items:center; justify-content:center;
    font-size:24px; text-decoration:none;
    box-shadow:0 6px 20px rgba(37,211,102,0.5);
    z-index:999;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 6px 30px rgba(37,211,102,0.8); }
  }

  @keyframes fadeUp {
    from { opacity:0; transform:translateY(16px); }
    to   { opacity:1; transform:translateY(0); }
  }
  .animate { animation:fadeUp 0.6s ease both; }

/* ===== hospedagem ===== */
:root {
    --green: #009c3b;
    --green-light: #e8f5ee;
    --gold: #FFB800;
    --dark: #111;
    --text: #1a1a1a;
    --muted: #6b7280;
    --border: #e5e7eb;
    --bg: #f9f9f7;
    --white: #ffffff;
  }

  *, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
  html { scroll-behavior:smooth; }

  body {
    font-family:'Montserrat', sans-serif;
    background:var(--white);
    color:var(--text);
    max-width:430px;
    margin:0 auto;
    overflow-x:hidden;
  }

  /* ===== HEADER ===== */
  header {
    position:sticky; top:0; z-index:100;
    background:rgba(255,255,255,0.97);
    backdrop-filter:blur(12px);
    border-bottom:1px solid var(--border);
    padding:10px 16px;
    display:flex; align-items:center; justify-content:space-between;
  }

  .logo-wrap { display:flex; align-items:center; gap:8px; text-decoration:none; }
  .logo-text-wrap { display:flex; flex-direction:column; gap:1px; }
  .logo-name { font-family:'DM Serif Display',serif; font-size:20px; color:var(--green); line-height:1; }
  .logo-dest { font-size:7px; font-weight:700; color:var(--muted); letter-spacing:3px; text-transform:uppercase; text-align:center; }
  .logo-dots { display:flex; gap:3px; margin-top:2px; justify-content:center; }
  .logo-dot { width:4px; height:4px; border-radius:50%; }

  .btn-wpp {
    background:#25d366; color:white;
    padding:8px 12px; border-radius:50px;
    font-size:11px; font-weight:700;
    text-decoration:none; display:flex;
    align-items:center; gap:5px;
    box-shadow:0 4px 12px rgba(37,211,102,0.3);
  }

  /* ===== MENU ===== */
  .cat-menu {
    background:var(--white);
    border-bottom:1px solid var(--border);
    display:flex; overflow-x:auto;
    scrollbar-width:none; padding:0 16px;
  }
  .cat-menu::-webkit-scrollbar { display:none; }
  .cat-item {
    display:flex; flex-direction:column;
    align-items:center; gap:4px;
    padding:10px 14px; text-decoration:none;
    border-bottom:2px solid transparent;
    transition:all 0.2s; flex-shrink:0;
  }
  .cat-item.active { border-bottom-color:var(--green); }
  .cat-item-icon { font-size:18px; }
  .cat-item-label { font-size:9px; font-weight:700; color:var(--muted); letter-spacing:1px; text-transform:uppercase; white-space:nowrap; }
  .cat-item.active .cat-item-label { color:var(--green); }

  /* ===== HERO HOSPEDAGEM ===== */
  .page-hero {
    background:linear-gradient(160deg, #003d18, #009c3b);
    padding:32px 16px 28px;
    position:relative; overflow:hidden;
  }
  .page-hero::after {
    content:'🏨';
    position:absolute; right:16px; top:50%;
    transform:translateY(-50%);
    font-size:80px; opacity:0.15;
  }
  .page-hero-tag {
    font-size:9px; font-weight:800;
    color:rgba(255,255,255,0.6);
    letter-spacing:3px; text-transform:uppercase;
    margin-bottom:6px;
  }
  .page-hero h1 {
    font-family:'DM Serif Display',serif;
    font-size:28px; color:white; line-height:1.2;
    margin-bottom:8px;
  }
  .page-hero p {
    font-size:12px; color:rgba(255,255,255,0.75);
    line-height:1.7; max-width:260px;
  }

  /* ===== FILTROS ===== */
  .filters {
    padding:14px 16px;
    display:flex; gap:8px;
    overflow-x:auto; scrollbar-width:none;
    border-bottom:1px solid var(--border);
    background:white;
  }
  .filters::-webkit-scrollbar { display:none; }

  .filter-btn {
    padding:7px 14px; border-radius:50px;
    font-size:11px; font-weight:700;
    border:1px solid var(--border);
    background:white; color:var(--muted);
    white-space:nowrap; cursor:pointer;
    transition:all 0.2s; text-decoration:none;
  }
  .filter-btn.active {
    background:var(--green); color:white;
    border-color:var(--green);
  }

  /* ===== SEÇÃO ===== */
  .section { padding:24px 16px; }
  .section-gray { padding:24px 16px; background:var(--bg); }

  .sec-header {
    display:flex; align-items:flex-end;
    justify-content:space-between; margin-bottom:16px;
  }
  .sec-titles { display:flex; flex-direction:column; gap:2px; }
  .sec-tag { font-size:9px; font-weight:800; color:var(--green); letter-spacing:3px; text-transform:uppercase; }
  .sec-title { font-family:'DM Serif Display',serif; font-size:20px; color:var(--dark); }
  .sec-link { font-size:10px; font-weight:700; color:var(--green); text-decoration:none; letter-spacing:1px; text-transform:uppercase; white-space:nowrap; }

  /* ===== CARD HOSPEDAGEM ===== */
  .hotel-card {
    background:white;
    border-radius:16px; overflow:hidden;
    border:1px solid var(--border);
    margin-bottom:16px;
    box-shadow:0 2px 12px rgba(0,0,0,0.05);
    transition:transform 0.2s, box-shadow 0.2s;
  }
  .hotel-card:active { transform:scale(0.99); }

  .hotel-img {
    width:100%; height:150px;
    background:linear-gradient(135deg, var(--green-light), #c8e6d4);
    display:flex; align-items:center; justify-content:center;
    font-size:56px; position:relative;
  }

  .hotel-badge {
    position:absolute; top:10px; left:10px;
    background:white; border-radius:50px;
    padding:4px 10px;
    font-size:9px; font-weight:800;
    letter-spacing:1px; text-transform:uppercase;
  }
  .hotel-badge.gramado { color:var(--green); }
  .hotel-badge.canela  { color:#0066cc; }
  .hotel-badge.destaque { 
    background:var(--gold); color:#3a2800;
    right:10px; left:auto;
  }

  .hotel-body { padding:16px; }

  .hotel-stars { font-size:11px; margin-bottom:4px; }

  .hotel-name {
    font-family:'DM Serif Display',serif;
    font-size:18px; color:var(--dark);
    margin-bottom:4px;
  }

  .hotel-type {
    font-size:10px; font-weight:700;
    color:var(--muted); letter-spacing:2px;
    text-transform:uppercase; margin-bottom:10px;
  }

  .hotel-desc {
    font-size:12px; color:var(--muted);
    line-height:1.7; margin-bottom:14px;
  }

  .hotel-tags {
    display:flex; gap:6px; flex-wrap:wrap;
    margin-bottom:14px;
  }
  .hotel-tag {
    background:var(--green-light);
    color:var(--green);
    padding:4px 10px; border-radius:50px;
    font-size:9px; font-weight:700;
    letter-spacing:1px;
  }

  .hotel-footer {
    display:flex; align-items:center;
    justify-content:space-between;
    border-top:1px solid var(--border);
    padding-top:12px;
  }

  .hotel-price { display:flex; flex-direction:column; }
  .price-from { font-size:9px; color:var(--muted); }
  .price-val  { font-family:'DM Serif Display',serif; font-size:20px; color:var(--green); line-height:1; }
  .price-night { font-size:9px; color:var(--muted); }

  .btn-reservar {
    background:var(--green); color:white;
    padding:10px 16px; border-radius:50px;
    font-size:11px; font-weight:800;
    text-decoration:none; letter-spacing:0.5px;
    display:inline-flex; align-items:center; justify-content:center; gap:6px;
    white-space:nowrap;
  }
  .btn-reservar svg { width:14px; height:14px; fill:white; flex-shrink:0; }

  /* ===== CTA ===== */
  .cta {
    background:linear-gradient(135deg, #003d18, #009c3b);
    padding:32px 16px; text-align:center;
  }
  .cta h3 { font-family:'DM Serif Display',serif; font-size:22px; color:white; margin-bottom:8px; }
  .cta p  { font-size:12px; color:rgba(255,255,255,0.75); margin-bottom:20px; line-height:1.7; }
  .btn-cta {
    display:inline-flex; align-items:center; gap:8px;
    background:white; color:var(--green);
    padding:13px 26px; border-radius:50px;
    font-size:13px; font-weight:800;
    text-decoration:none;
  }
  .btn-cta svg { fill:var(--green); width:20px; height:20px; }

  /* ===== FOOTER ===== */
  footer { background:var(--dark); padding:32px 16px 24px; }
  .footer-logo-wrap { display:flex; align-items:center; gap:8px; margin-bottom:12px; }
  .footer-logo-name { font-family:'DM Serif Display',serif; font-size:18px; color:var(--green); }
  .footer-logo-dest { font-size:7px; font-weight:700; color:#555; letter-spacing:3px; text-transform:uppercase; text-align:center; }
  .footer-dots { display:flex; gap:5px; justify-content:center; margin-top:3px; }
  .footer-dot { width:5px; height:5px; border-radius:50%; }
  .footer-desc { font-size:11px; color:#555; line-height:1.8; margin-bottom:20px; }
  .footer-links { display:grid; grid-template-columns:1fr 1fr; gap:6px; margin-bottom:20px; }
  .footer-links a { font-size:11px; color:#555; text-decoration:none; padding:3px 0; }
  .footer-cadastur { display:flex; align-items:center; gap:8px; background:#1a1a1a; border-radius:10px; padding:12px; margin-bottom:16px; }
  .cadastur-badge { background:var(--green); color:white; font-size:9px; font-weight:800; padding:4px 8px; border-radius:6px; letter-spacing:1px; }
  .cadastur-text { font-size:10px; color:#555; line-height:1.4; }
  .footer-bottom { border-top:1px solid #1a1a1a; padding-top:16px; text-align:center; }
  .footer-bottom p { font-size:10px; color:#444; line-height:1.8; }
  .footer-bottom span { color:var(--green); }

  /* ===== WPP ===== */
  .wpp-float {
    position:fixed; bottom:20px; right:16px;
    width:52px; height:52px; border-radius:50%;
    background:#25d366; display:flex;
    align-items:center; justify-content:center;
    text-decoration:none;
    box-shadow:0 6px 20px rgba(37,211,102,0.5);
    z-index:999;
    animation:pulse 2s infinite;
  }
  .wpp-float svg { width:28px; height:28px; fill:white; }
  @keyframes pulse {
    0%,100% { box-shadow:0 6px 20px rgba(37,211,102,0.5); }
    50% { box-shadow:0 6px 30px rgba(37,211,102,0.8); }
  }

/* ===== gastronomia ===== */
:root {
    --green: #009c3b;
    --green-light: #e8f5ee;
    --gold: #FFB800;
    --dark: #111;
    --text: #1a1a1a;
    --muted: #6b7280;
    --border: #e5e7eb;
    --bg: #f9f9f7;
    --white: #ffffff;
  }

  *, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
  html { scroll-behavior:smooth; }
  body { font-family:'Montserrat',sans-serif; background:var(--white); color:var(--text); max-width:430px; margin:0 auto; overflow-x:hidden; }

  header { position:sticky; top:0; z-index:100; background:rgba(255,255,255,0.97); backdrop-filter:blur(12px); border-bottom:1px solid var(--border); padding:10px 16px; display:flex; align-items:center; justify-content:space-between; }
  .logo-wrap { display:flex; align-items:center; gap:8px; text-decoration:none; }
  .logo-text-wrap { display:flex; flex-direction:column; gap:1px; }
  .logo-name { font-family:'DM Serif Display',serif; font-size:20px; color:var(--green); line-height:1; }
  .logo-dest { font-size:7px; font-weight:700; color:var(--muted); letter-spacing:3px; text-transform:uppercase; text-align:center; }
  .logo-dots { display:flex; gap:3px; margin-top:2px; justify-content:center; }
  .logo-dot { width:4px; height:4px; border-radius:50%; }
  .btn-wpp { background:#25d366; color:white; padding:8px 12px; border-radius:50px; font-size:11px; font-weight:700; text-decoration:none; display:flex; align-items:center; gap:5px; box-shadow:0 4px 12px rgba(37,211,102,0.3); }

  .cat-menu { background:var(--white); border-bottom:1px solid var(--border); display:flex; overflow-x:auto; scrollbar-width:none; padding:0 16px; }
  .cat-menu::-webkit-scrollbar { display:none; }
  .cat-item { display:flex; flex-direction:column; align-items:center; gap:4px; padding:10px 14px; text-decoration:none; border-bottom:2px solid transparent; transition:all 0.2s; flex-shrink:0; }
  .cat-item.active { border-bottom-color:var(--green); }
  .cat-item-icon { font-size:18px; }
  .cat-item-label { font-size:9px; font-weight:700; color:var(--muted); letter-spacing:1px; text-transform:uppercase; white-space:nowrap; }
  .cat-item.active .cat-item-label { color:var(--green); }

  .page-hero { background:linear-gradient(160deg, #003d18, #009c3b); padding:32px 16px 28px; position:relative; overflow:hidden; }
  .page-hero::after { content:'🍽️'; position:absolute; right:16px; top:50%; transform:translateY(-50%); font-size:80px; opacity:0.15; }
  .page-hero-tag { font-size:9px; font-weight:800; color:rgba(255,255,255,0.6); letter-spacing:3px; text-transform:uppercase; margin-bottom:6px; }
  .page-hero h1 { font-family:'DM Serif Display',serif; font-size:28px; color:white; line-height:1.2; margin-bottom:8px; }
  .page-hero p { font-size:12px; color:rgba(255,255,255,0.8); line-height:1.7; max-width:260px; }

  .filters { padding:14px 16px; display:flex; gap:8px; overflow-x:auto; scrollbar-width:none; border-bottom:1px solid var(--border); background:white; }
  .filters::-webkit-scrollbar { display:none; }
  .filter-btn { padding:7px 14px; border-radius:50px; font-size:11px; font-weight:700; border:1px solid var(--border); background:white; color:var(--muted); white-space:nowrap; cursor:pointer; transition:all 0.2s; text-decoration:none; }
  .filter-btn.active { background:var(--green); color:white; border-color:var(--green); }

  .section { padding:24px 16px; }
  .section-gray { padding:24px 16px; background:var(--bg); }
  .sec-header { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:16px; }
  .sec-titles { display:flex; flex-direction:column; gap:2px; }
  .sec-tag { font-size:9px; font-weight:800; color:var(--green); letter-spacing:3px; text-transform:uppercase; }
  .sec-title { font-family:'DM Serif Display',serif; font-size:20px; color:var(--dark); }

  .rest-card { background:white; border-radius:16px; overflow:hidden; border:1px solid var(--border); margin-bottom:16px; box-shadow:0 2px 12px rgba(0,0,0,0.05); }
  .rest-img { width:100%; height:140px; background:linear-gradient(135deg, var(--green-light), #c8e6d4); display:flex; align-items:center; justify-content:center; font-size:52px; position:relative; }
  .rest-badge { position:absolute; top:10px; left:10px; background:white; border-radius:50px; padding:4px 10px; font-size:9px; font-weight:800; letter-spacing:1px; text-transform:uppercase; color:var(--green); }
  .rest-badge.destaque { background:var(--gold); color:#3a2800; right:10px; left:auto; }

  .rest-body { padding:16px; }
  .rest-stars { font-size:11px; margin-bottom:4px; }
  .rest-name { font-family:'DM Serif Display',serif; font-size:18px; color:var(--dark); margin-bottom:4px; }
  .rest-type { font-size:10px; font-weight:700; color:var(--muted); letter-spacing:2px; text-transform:uppercase; margin-bottom:10px; }
  .rest-desc { font-size:12px; color:var(--muted); line-height:1.7; margin-bottom:14px; }

  .rest-tags { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:14px; }
  .rest-tag { background:var(--green-light); color:var(--green); padding:4px 10px; border-radius:50px; font-size:9px; font-weight:700; letter-spacing:1px; }

  .rest-footer { display:flex; align-items:center; justify-content:space-between; border-top:1px solid var(--border); padding-top:12px; }
  .rest-info { display:flex; flex-direction:column; gap:2px; }
  .rest-hours { font-size:10px; color:var(--muted); font-weight:500; }
  .consult-text { font-size:11px; font-weight:600; color:var(--muted); }

  .btn-reservar { background:var(--green); color:white; padding:10px 18px; border-radius:50px; font-size:11px; font-weight:800; text-decoration:none; display:flex; align-items:center; gap:5px; white-space:nowrap; }
  .btn-wpp-reservar { background:var(--green); color:white; padding:10px 16px; border-radius:50px; font-size:11px; font-weight:800; text-decoration:none; display:inline-flex; align-items:center; gap:6px; white-space:nowrap; }
  .btn-wpp-reservar svg { width:16px; height:16px; fill:white; flex-shrink:0; }

  .cta { background:linear-gradient(135deg, #003d18, #009c3b); padding:32px 16px; text-align:center; }
  .cta h3 { font-family:'DM Serif Display',serif; font-size:22px; color:white; margin-bottom:8px; }
  .cta p { font-size:12px; color:rgba(255,255,255,0.8); margin-bottom:20px; line-height:1.7; }
  .btn-cta { display:inline-flex; align-items:center; gap:8px; background:white; color:var(--green); padding:13px 26px; border-radius:50px; font-size:13px; font-weight:800; text-decoration:none; }
  .btn-cta svg { fill:var(--green); width:20px; height:20px; }

  footer { background:var(--dark); padding:32px 16px 24px; }
  .footer-logo-wrap { display:flex; align-items:center; gap:8px; margin-bottom:12px; }
  .footer-logo-name { font-family:'DM Serif Display',serif; font-size:18px; color:var(--green); }
  .footer-logo-dest { font-size:7px; font-weight:700; color:#555; letter-spacing:3px; text-transform:uppercase; text-align:center; }
  .footer-dots { display:flex; gap:5px; justify-content:center; margin-top:3px; }
  .footer-dot { width:5px; height:5px; border-radius:50%; }
  .footer-desc { font-size:11px; color:#555; line-height:1.8; margin-bottom:20px; }
  .footer-links { display:grid; grid-template-columns:1fr 1fr; gap:6px; margin-bottom:20px; }
  .footer-links a { font-size:11px; color:#555; text-decoration:none; padding:3px 0; }
  .footer-cadastur { display:flex; align-items:center; gap:8px; background:#1a1a1a; border-radius:10px; padding:12px; margin-bottom:16px; }
  .cadastur-badge { background:var(--green); color:white; font-size:9px; font-weight:800; padding:4px 8px; border-radius:6px; letter-spacing:1px; }
  .cadastur-text { font-size:10px; color:#555; line-height:1.4; }
  .footer-bottom { border-top:1px solid #1a1a1a; padding-top:16px; text-align:center; }
  .footer-bottom p { font-size:10px; color:#444; line-height:1.8; }
  .footer-bottom span { color:var(--green); }

  .wpp-float { position:fixed; bottom:20px; right:16px; width:52px; height:52px; border-radius:50%; background:#25d366; display:flex; align-items:center; justify-content:center; text-decoration:none; box-shadow:0 6px 20px rgba(37,211,102,0.5); z-index:999; animation:pulse 2s infinite; }
  .wpp-float svg { width:28px; height:28px; fill:white; }
  @keyframes pulse { 0%,100% { box-shadow:0 6px 20px rgba(37,211,102,0.5); } 50% { box-shadow:0 6px 30px rgba(37,211,102,0.8); } }

/* ===== atracoes ===== */
:root {
    --green: #009c3b;
    --green-light: #e8f5ee;
    --gold: #FFB800;
    --dark: #111;
    --text: #1a1a1a;
    --muted: #6b7280;
    --border: #e5e7eb;
    --bg: #f9f9f7;
    --white: #ffffff;
  }

  *, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
  html { scroll-behavior:smooth; }
  body { font-family:'Montserrat',sans-serif; background:var(--white); color:var(--text); max-width:430px; margin:0 auto; overflow-x:hidden; }

  header { position:sticky; top:0; z-index:100; background:rgba(255,255,255,0.97); backdrop-filter:blur(12px); border-bottom:1px solid var(--border); padding:10px 16px; display:flex; align-items:center; justify-content:space-between; }
  .logo-wrap { display:flex; align-items:center; gap:8px; text-decoration:none; }
  .logo-text-wrap { display:flex; flex-direction:column; gap:1px; }
  .logo-name { font-family:'DM Serif Display',serif; font-size:20px; color:var(--green); line-height:1; }
  .logo-dest { font-size:7px; font-weight:700; color:var(--muted); letter-spacing:3px; text-transform:uppercase; text-align:center; }
  .logo-dots { display:flex; gap:3px; margin-top:2px; justify-content:center; }
  .logo-dot { width:4px; height:4px; border-radius:50%; }
  .btn-wpp { background:#25d366; color:white; padding:8px 12px; border-radius:50px; font-size:11px; font-weight:700; text-decoration:none; display:flex; align-items:center; gap:5px; box-shadow:0 4px 12px rgba(37,211,102,0.3); }
  .btn-wpp svg { width:16px; height:16px; fill:white; }

  .cat-menu { background:var(--white); border-bottom:1px solid var(--border); display:flex; overflow-x:auto; scrollbar-width:none; padding:0 16px; }
  .cat-menu::-webkit-scrollbar { display:none; }
  .cat-item { display:flex; flex-direction:column; align-items:center; gap:4px; padding:10px 14px; text-decoration:none; border-bottom:2px solid transparent; transition:all 0.2s; flex-shrink:0; }
  .cat-item.active { border-bottom-color:var(--green); }
  .cat-item-icon { font-size:18px; }
  .cat-item-label { font-size:9px; font-weight:700; color:var(--muted); letter-spacing:1px; text-transform:uppercase; white-space:nowrap; }
  .cat-item.active .cat-item-label { color:var(--green); }

  .page-hero { background:linear-gradient(160deg, #003d18, #009c3b); padding:32px 16px 28px; position:relative; overflow:hidden; }
  .page-hero::after { content:'🎢'; position:absolute; right:16px; top:50%; transform:translateY(-50%); font-size:80px; opacity:0.15; }
  .page-hero-tag { font-size:9px; font-weight:800; color:rgba(255,255,255,0.6); letter-spacing:3px; text-transform:uppercase; margin-bottom:6px; }
  .page-hero h1 { font-family:'DM Serif Display',serif; font-size:28px; color:white; line-height:1.2; margin-bottom:8px; }
  .page-hero p { font-size:12px; color:rgba(255,255,255,0.8); line-height:1.7; max-width:260px; }

  .filters { padding:14px 16px; display:flex; gap:8px; overflow-x:auto; scrollbar-width:none; border-bottom:1px solid var(--border); background:white; }
  .filters::-webkit-scrollbar { display:none; }
  .filter-btn { padding:7px 14px; border-radius:50px; font-size:11px; font-weight:700; border:1px solid var(--border); background:white; color:var(--muted); white-space:nowrap; cursor:pointer; transition:all 0.2s; text-decoration:none; }
  .filter-btn.active { background:var(--green); color:white; border-color:var(--green); }

  .section { padding:24px 16px; }
  .section-gray { padding:24px 16px; background:var(--bg); }
  .sec-header { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:16px; }
  .sec-titles { display:flex; flex-direction:column; gap:2px; }
  .sec-tag { font-size:9px; font-weight:800; color:var(--green); letter-spacing:3px; text-transform:uppercase; }
  .sec-title { font-family:'DM Serif Display',serif; font-size:20px; color:var(--dark); }

  .atr-card { background:white; border-radius:16px; overflow:hidden; border:1px solid var(--border); margin-bottom:16px; box-shadow:0 2px 12px rgba(0,0,0,0.05); }
  .atr-img { width:100%; height:140px; background:linear-gradient(135deg, var(--green-light), #c8e6d4); display:flex; align-items:center; justify-content:center; font-size:52px; position:relative; }
  .atr-badge { position:absolute; top:10px; left:10px; background:white; border-radius:50px; padding:4px 10px; font-size:9px; font-weight:800; letter-spacing:1px; text-transform:uppercase; color:var(--green); }
  .atr-badge.destaque { background:var(--gold); color:#3a2800; right:10px; left:auto; }

  .atr-body { padding:16px; }
  .atr-stars { font-size:11px; margin-bottom:4px; }
  .atr-name { font-family:'DM Serif Display',serif; font-size:18px; color:var(--dark); margin-bottom:4px; }
  .atr-type { font-size:10px; font-weight:700; color:var(--muted); letter-spacing:2px; text-transform:uppercase; margin-bottom:10px; }
  .atr-desc { font-size:12px; color:var(--muted); line-height:1.7; margin-bottom:14px; }

  .atr-tags { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:14px; }
  .atr-tag { background:var(--green-light); color:var(--green); padding:4px 10px; border-radius:50px; font-size:9px; font-weight:700; letter-spacing:1px; }

  .atr-footer { display:flex; align-items:center; justify-content:space-between; border-top:1px solid var(--border); padding-top:12px; }
  .price-wrap { display:flex; flex-direction:column; }
  .price-from { font-size:9px; color:var(--muted); }
  .price-val { font-family:'DM Serif Display',serif; font-size:20px; color:var(--green); line-height:1; }

  .btn-comprar { background:var(--green); color:white; padding:10px 18px; border-radius:50px; font-size:11px; font-weight:800; text-decoration:none; white-space:nowrap; }
  .btn-reservar { background:var(--green); color:white; padding:10px 18px; border-radius:50px; font-size:11px; font-weight:800; text-decoration:none; display:inline-flex; align-items:center; gap:6px; white-space:nowrap; }
  .btn-reservar svg { width:16px; height:16px; fill:white; }

  .cta { background:linear-gradient(135deg, #003d18, #009c3b); padding:32px 16px; text-align:center; }
  .cta h3 { font-family:'DM Serif Display',serif; font-size:22px; color:white; margin-bottom:8px; }
  .cta p { font-size:12px; color:rgba(255,255,255,0.8); margin-bottom:20px; line-height:1.7; }
  .btn-cta { display:inline-flex; align-items:center; gap:8px; background:white; color:var(--green); padding:13px 26px; border-radius:50px; font-size:13px; font-weight:800; text-decoration:none; }
  .btn-cta svg { fill:var(--green); width:20px; height:20px; }

  footer { background:var(--dark); padding:32px 16px 24px; }
  .footer-logo-wrap { display:flex; align-items:center; gap:8px; margin-bottom:12px; }
  .footer-logo-name { font-family:'DM Serif Display',serif; font-size:18px; color:var(--green); }
  .footer-logo-dest { font-size:7px; font-weight:700; color:#555; letter-spacing:3px; text-transform:uppercase; text-align:center; }
  .footer-dots { display:flex; gap:5px; justify-content:center; margin-top:3px; }
  .footer-dot { width:5px; height:5px; border-radius:50%; }
  .footer-desc { font-size:11px; color:#555; line-height:1.8; margin-bottom:20px; }
  .footer-links { display:grid; grid-template-columns:1fr 1fr; gap:6px; margin-bottom:20px; }
  .footer-links a { font-size:11px; color:#555; text-decoration:none; padding:3px 0; }
  .footer-cadastur { display:flex; align-items:center; gap:8px; background:#1a1a1a; border-radius:10px; padding:12px; margin-bottom:16px; }
  .cadastur-badge { background:var(--green); color:white; font-size:9px; font-weight:800; padding:4px 8px; border-radius:6px; letter-spacing:1px; }
  .cadastur-text { font-size:10px; color:#555; line-height:1.4; }
  .footer-bottom { border-top:1px solid #1a1a1a; padding-top:16px; text-align:center; }
  .footer-bottom p { font-size:10px; color:#444; line-height:1.8; }
  .footer-bottom span { color:var(--green); }

  .wpp-float { position:fixed; bottom:20px; right:16px; width:52px; height:52px; border-radius:50%; background:#25d366; display:flex; align-items:center; justify-content:center; text-decoration:none; box-shadow:0 6px 20px rgba(37,211,102,0.5); z-index:999; animation:pulse 2s infinite; }
  .wpp-float svg { width:28px; height:28px; fill:white; }
  @keyframes pulse { 0%,100% { box-shadow:0 6px 20px rgba(37,211,102,0.5); } 50% { box-shadow:0 6px 30px rgba(37,211,102,0.8); } }

/* ===== florybal ===== */
:root {
    --green: #009c3b;
    --green-light: #e8f5ee;
    --gold: #FFB800;
    --dark: #111;
    --text: #1a1a1a;
    --muted: #6b7280;
    --border: #e5e7eb;
    --bg: #f9f9f7;
    --white: #ffffff;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Montserrat', sans-serif; background: var(--white); color: var(--text); max-width: 430px; margin: 0 auto; overflow-x: hidden; }

  /* ===== HEADER ===== */
  header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 10px 16px; display: flex; align-items: center; justify-content: space-between; }
  .logo-wrap { display: flex; align-items: center; gap: 8px; text-decoration: none; }
  .logo-text-wrap { display: flex; flex-direction: column; gap: 1px; }
  .logo-name { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--green); line-height: 1; }
  .logo-dest { font-size: 7px; font-weight: 700; color: var(--muted); letter-spacing: 3px; text-transform: uppercase; text-align: center; }
  .logo-dots { display: flex; gap: 3px; margin-top: 2px; justify-content: center; }
  .logo-dot { width: 4px; height: 4px; border-radius: 50%; }
  .btn-wpp { background: #25d366; color: white; padding: 8px 12px; border-radius: 50px; font-size: 11px; font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: 5px; box-shadow: 0 4px 12px rgba(37,211,102,0.3); }
  .btn-wpp svg { width: 16px; height: 16px; fill: white; }

  /* ===== MENU ===== */
  .cat-menu { background: var(--white); border-bottom: 1px solid var(--border); display: flex; overflow-x: auto; scrollbar-width: none; padding: 0 16px; }
  .cat-menu::-webkit-scrollbar { display: none; }
  .cat-item { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 10px 14px; text-decoration: none; border-bottom: 2px solid transparent; transition: all 0.2s; flex-shrink: 0; }
  .cat-item.active { border-bottom-color: var(--green); }
  .cat-item-icon { font-size: 18px; }
  .cat-item-label { font-size: 9px; font-weight: 700; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; }
  .cat-item.active .cat-item-label { color: var(--green); }

  /* ===== BREADCRUMB ===== */
  .breadcrumb { padding: 10px 16px; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid var(--border); background: var(--bg); }
  .breadcrumb a { font-size: 10px; color: var(--muted); text-decoration: none; font-weight: 600; }
  .breadcrumb span { font-size: 10px; color: var(--muted); }
  .breadcrumb strong { font-size: 10px; color: var(--green); font-weight: 700; }

  /* ===== GALERIA ===== */
  .gallery { position: relative; background: #000; }
  .gallery-main { width: 100%; height: 260px; object-fit: cover; display: block; }
  .gallery-main-placeholder { width: 100%; height: 260px; background: linear-gradient(160deg, #003d18, #009c3b); display: flex; align-items: center; justify-content: center; font-size: 80px; }
  .gallery-thumbs { display: flex; gap: 4px; padding: 6px; background: #000; overflow-x: auto; }
  .gallery-thumb { width: 76px; height: 56px; object-fit: cover; border-radius: 6px; cursor: pointer; opacity: 0.55; border: 2px solid transparent; transition: all 0.2s; flex-shrink: 0; }
  .gallery-thumb.active { opacity: 1; border-color: var(--gold); }
  .gallery-thumb-placeholder { width: 76px; height: 56px; border-radius: 6px; cursor: pointer; opacity: 0.55; border: 2px solid transparent; transition: all 0.2s; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 22px; }
  .gallery-thumb-placeholder.active { opacity: 1; border-color: var(--gold); }
  .gallery-badge-top { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 5px; }
  .gbadge { padding: 4px 10px; border-radius: 50px; font-size: 9px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
  .gbadge-local { background: white; color: var(--green); }
  .gbadge-top { background: var(--gold); color: #3a2800; }

  /* ===== INFO PRINCIPAL ===== */
  .produto-info { padding: 20px 16px 0; }
  .produto-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; flex-wrap: wrap; }
  .produto-tipo { font-size: 9px; font-weight: 800; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; }
  .produto-stars { font-size: 12px; }
  .produto-avaliacao { font-size: 10px; font-weight: 700; color: var(--muted); }
  .produto-nome { font-family: 'DM Serif Display', serif; font-size: 26px; font-weight: 400; color: var(--dark); line-height: 1.2; margin: 0 0 4px; }
  .produto-subtitulo { font-size: 12px; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }

  /* ===== PREÇO + BOTÃO ===== */
  .preco-bloco { background: var(--green-light); border-radius: 14px; padding: 16px; margin: 0 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
  .preco-lado { display: flex; flex-direction: column; gap: 2px; }
  .preco-label { font-size: 9px; font-weight: 800; color: var(--green); letter-spacing: 1px; text-transform: uppercase; }
  .preco-valor { font-family: 'DM Serif Display', serif; font-size: 32px; color: var(--green); line-height: 1; }
  .preco-obs { font-size: 9px; color: var(--muted); margin-top: 2px; }
  .btn-reservar-grande { background: var(--green); color: white; padding: 13px 20px; border-radius: 50px; font-size: 13px; font-weight: 800; text-decoration: none; display: flex; align-items: center; gap: 8px; white-space: nowrap; box-shadow: 0 6px 20px rgba(0,156,59,0.35); flex-shrink: 0; }
  .btn-reservar-grande svg { width: 20px; height: 20px; fill: white; flex-shrink: 0; }

  /* ===== TAGS RÁPIDAS ===== */
  .tags-rapidas { display: flex; gap: 8px; padding: 0 16px 20px; flex-wrap: wrap; }
  .tag-rapida { display: flex; align-items: center; gap: 5px; background: var(--bg); border: 1px solid var(--border); border-radius: 50px; padding: 6px 12px; font-size: 10px; font-weight: 700; color: var(--text); }
  .tag-rapida-icon { font-size: 13px; }

  /* ===== SEÇÕES DE CONTEÚDO ===== */
  .sec-detalhe { padding: 20px 16px; border-top: 1px solid var(--border); }
  .sec-detalhe-gray { padding: 20px 16px; border-top: 1px solid var(--border); background: var(--bg); }
  .sec-label { font-size: 9px; font-weight: 800; color: var(--green); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 6px; }
  .sec-titulo { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--dark); margin-bottom: 12px; }
  .sec-texto { font-size: 12px; color: var(--muted); line-height: 1.85; }
  .sec-texto p + p { margin-top: 10px; }

  /* ===== INCLUSO / NÃO INCLUSO ===== */
  .incluso-grid { display: flex; flex-direction: column; gap: 8px; }
  .incluso-item { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; color: var(--text); line-height: 1.5; }
  .incluso-icon { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
  .nao-incluso-item { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; color: var(--muted); line-height: 1.5; }

  /* ===== ATRATIVOS (DESTAQUES DO PARQUE) ===== */
  .atrativos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .atrativo-card { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 14px 12px; display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
  .atrativo-emoji { font-size: 28px; }
  .atrativo-nome { font-size: 11px; font-weight: 700; color: var(--dark); line-height: 1.3; }
  .atrativo-desc { font-size: 10px; color: var(--muted); line-height: 1.4; }

  /* ===== OBSERVAÇÕES ===== */
  .obs-box { background: #fff8e1; border: 1px solid #ffe082; border-radius: 12px; padding: 14px; margin-top: 12px; }
  .obs-box p { font-size: 11px; color: #7a5800; line-height: 1.7; }
  .obs-box p + p { margin-top: 8px; }

  /* ===== COMO CHEGAR ===== */
  .chegar-box { background: var(--green-light); border-radius: 12px; padding: 16px; margin-top: 12px; }
  .chegar-item { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; color: var(--text); line-height: 1.6; }
  .chegar-item + .chegar-item { margin-top: 10px; }
  .chegar-icon { font-size: 16px; flex-shrink: 0; }

  /* ===== CTA FINAL ===== */
  .cta { background: linear-gradient(135deg, #003d18, #009c3b); padding: 32px 16px; text-align: center; }
  .cta h3 { font-family: 'DM Serif Display', serif; font-size: 22px; color: white; margin-bottom: 8px; }
  .cta p { font-size: 12px; color: rgba(255,255,255,0.8); margin-bottom: 20px; line-height: 1.7; }
  .btn-cta { display: inline-flex; align-items: center; gap: 8px; background: white; color: var(--green); padding: 13px 26px; border-radius: 50px; font-size: 13px; font-weight: 800; text-decoration: none; }
  .btn-cta svg { fill: var(--green); width: 20px; height: 20px; }
  .cta-obs { font-size: 10px; color: rgba(255,255,255,0.55); margin-top: 14px; }

  /* ===== OUTROS PRODUTOS ===== */
  .outros-grid { display: flex; flex-direction: column; gap: 12px; }
  .outro-card { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 14px; display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .outro-emoji { font-size: 32px; width: 52px; height: 52px; background: var(--green-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .outro-foto { width: 52px; height: 52px; border-radius: 10px; flex-shrink: 0; background-size: cover; background-position: center; }
  .outro-info { flex: 1; }
  .outro-nome { font-family: 'DM Serif Display', serif; font-size: 15px; color: var(--dark); margin-bottom: 2px; }
  .outro-tipo { font-size: 9px; color: var(--muted); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
  .outro-preco { font-size: 13px; font-weight: 800; color: var(--green); }
  .outro-arrow { font-size: 18px; color: var(--border); }

  /* ===== FOOTER ===== */
  footer { background: var(--dark); padding: 32px 16px 24px; }
  .footer-logo-wrap { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
  .footer-logo-name { font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--green); }
  .footer-logo-dest { font-size: 7px; font-weight: 700; color: #555; letter-spacing: 3px; text-transform: uppercase; text-align: center; }
  .footer-dots { display: flex; gap: 5px; justify-content: center; margin-top: 3px; }
  .footer-dot { width: 5px; height: 5px; border-radius: 50%; }
  .footer-desc { font-size: 11px; color: #555; line-height: 1.8; margin-bottom: 20px; }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 20px; }
  .footer-links a { font-size: 11px; color: #555; text-decoration: none; padding: 3px 0; }
  .footer-cadastur { display: flex; align-items: center; gap: 8px; background: #1a1a1a; border-radius: 10px; padding: 12px; margin-bottom: 16px; }
  .cadastur-badge { background: var(--green); color: white; font-size: 9px; font-weight: 800; padding: 4px 8px; border-radius: 6px; letter-spacing: 1px; }
  .cadastur-text { font-size: 10px; color: #555; line-height: 1.4; }
  .footer-bottom { border-top: 1px solid #1a1a1a; padding-top: 16px; text-align: center; }
  .footer-bottom p { font-size: 10px; color: #444; line-height: 1.8; }
  .footer-bottom span { color: var(--green); }

  /* ===== WPP FLOAT ===== */
  .wpp-float { position: fixed; bottom: 20px; right: 16px; width: 52px; height: 52px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 6px 20px rgba(37,211,102,0.5); z-index: 999; animation: pulse 2s infinite; }
  .wpp-float svg { width: 28px; height: 28px; fill: white; }
  @keyframes pulse { 0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,0.5); } 50% { box-shadow: 0 6px 30px rgba(37,211,102,0.8); } }

/* ===== transfers ===== */
:root {
    --green: #009c3b;
    --green-light: #e8f5ee;
    --gold: #FFB800;
    --dark: #111;
    --text: #1a1a1a;
    --muted: #6b7280;
    --border: #e5e7eb;
    --bg: #f9f9f7;
    --white: #ffffff;
  }

  *, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
  html { scroll-behavior:smooth; }
  body { font-family:'Montserrat',sans-serif; background:var(--white); color:var(--text); max-width:430px; margin:0 auto; overflow-x:hidden; }

  header { position:sticky; top:0; z-index:100; background:rgba(255,255,255,0.97); backdrop-filter:blur(12px); border-bottom:1px solid var(--border); padding:10px 16px; display:flex; align-items:center; justify-content:space-between; }
  .logo-wrap { display:flex; align-items:center; gap:8px; text-decoration:none; }
  .logo-text-wrap { display:flex; flex-direction:column; gap:1px; }
  .logo-name { font-family:'DM Serif Display',serif; font-size:20px; color:var(--green); line-height:1; }
  .logo-dest { font-size:7px; font-weight:700; color:var(--muted); letter-spacing:3px; text-transform:uppercase; text-align:center; }
  .logo-dots { display:flex; gap:3px; margin-top:2px; justify-content:center; }
  .logo-dot { width:4px; height:4px; border-radius:50%; }
  .btn-wpp { background:#25d366; color:white; padding:8px 12px; border-radius:50px; font-size:11px; font-weight:700; text-decoration:none; display:flex; align-items:center; gap:5px; box-shadow:0 4px 12px rgba(37,211,102,0.3); }
  .btn-wpp svg { width:16px; height:16px; fill:white; }

  .cat-menu { background:var(--white); border-bottom:1px solid var(--border); display:flex; overflow-x:auto; scrollbar-width:none; padding:0 16px; }
  .cat-menu::-webkit-scrollbar { display:none; }
  .cat-item { display:flex; flex-direction:column; align-items:center; gap:4px; padding:10px 14px; text-decoration:none; border-bottom:2px solid transparent; transition:all 0.2s; flex-shrink:0; }
  .cat-item.active { border-bottom-color:var(--green); }
  .cat-item-icon { font-size:18px; }
  .cat-item-label { font-size:9px; font-weight:700; color:var(--muted); letter-spacing:1px; text-transform:uppercase; white-space:nowrap; }
  .cat-item.active .cat-item-label { color:var(--green); }

  .page-hero { background:linear-gradient(160deg, #003d18, #009c3b); padding:32px 16px 28px; position:relative; overflow:hidden; }
  .page-hero::after { content:'🚕'; position:absolute; right:16px; top:50%; transform:translateY(-50%); font-size:80px; opacity:0.15; }
  .page-hero-tag { font-size:9px; font-weight:800; color:rgba(255,255,255,0.6); letter-spacing:3px; text-transform:uppercase; margin-bottom:6px; }
  .page-hero h1 { font-family:'DM Serif Display',serif; font-size:28px; color:white; line-height:1.2; margin-bottom:8px; }
  .page-hero p { font-size:12px; color:rgba(255,255,255,0.8); line-height:1.7; max-width:260px; }

  .section { padding:24px 16px; }
  .frota-sec { padding:20px 16px 4px; }
  .frota-label { font-size:9px; font-weight:800; color:var(--green); letter-spacing:3px; text-transform:uppercase; margin-bottom:6px; }
  .frota-titulo { font-family:'DM Serif Display',serif; font-size:20px; color:#111; margin-bottom:12px; }
  .frota-img { width:100%; border-radius:14px; display:block; box-shadow:0 6px 20px rgba(0,0,0,0.12); }
  .frota-obs { font-size:11px; color:var(--muted); line-height:1.6; margin-top:10px; text-align:center; }
  .section-gray { padding:24px 16px; background:var(--bg); }
  .sec-header { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:16px; }
  .sec-titles { display:flex; flex-direction:column; gap:2px; }
  .sec-tag { font-size:9px; font-weight:800; color:var(--green); letter-spacing:3px; text-transform:uppercase; }
  .sec-title { font-family:'DM Serif Display',serif; font-size:20px; color:var(--dark); }

  .tr-card { background:white; border-radius:16px; overflow:hidden; border:1px solid var(--border); margin-bottom:16px; box-shadow:0 2px 12px rgba(0,0,0,0.05); }
  .tr-img { width:100%; height:140px; background:linear-gradient(135deg, var(--green-light), #c8e6d4); display:flex; align-items:center; justify-content:center; font-size:52px; position:relative; }
  .tr-badge { position:absolute; top:10px; left:10px; background:white; border-radius:50px; padding:4px 10px; font-size:9px; font-weight:800; letter-spacing:1px; text-transform:uppercase; color:var(--green); }
  .tr-badge.destaque { background:var(--gold); color:#3a2800; right:10px; left:auto; }

  .tr-body { padding:16px; }
  .tr-stars { font-size:11px; margin-bottom:4px; }
  .tr-name { font-family:'DM Serif Display',serif; font-size:18px; color:var(--dark); margin-bottom:4px; }
  .tr-type { font-size:10px; font-weight:700; color:var(--muted); letter-spacing:2px; text-transform:uppercase; margin-bottom:10px; }
  .tr-desc { font-size:12px; color:var(--muted); line-height:1.7; margin-bottom:14px; }

  .tr-info-row { display:flex; gap:12px; margin-bottom:14px; flex-wrap:wrap; }
  .tr-info { display:flex; align-items:center; gap:4px; font-size:10px; color:var(--muted); font-weight:500; }

  .tr-tags { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:14px; }
  .tr-tag { background:var(--green-light); color:var(--green); padding:4px 10px; border-radius:50px; font-size:9px; font-weight:700; letter-spacing:1px; }

  .tr-footer { display:flex; align-items:center; justify-content:space-between; border-top:1px solid var(--border); padding-top:12px; }
  .consult-wrap { display:flex; align-items:center; gap:6px; }
  .consult-text { font-size:11px; font-weight:600; color:var(--muted); }

  .btn-reservar { background:var(--green); color:white; padding:10px 16px; border-radius:50px; font-size:11px; font-weight:800; text-decoration:none; display:inline-flex; align-items:center; gap:6px; white-space:nowrap; }
  .btn-reservar svg { width:16px; height:16px; fill:white; }

  /* COMO FUNCIONA */
  .como-funciona { padding:24px 16px; background:var(--green-light); }
  .como-title { font-family:'DM Serif Display',serif; font-size:20px; color:var(--dark); margin-bottom:16px; }
  .steps { display:flex; flex-direction:column; gap:14px; }
  .step { display:flex; align-items:flex-start; gap:14px; }
  .step-num { width:32px; height:32px; border-radius:50%; background:var(--green); color:white; font-size:13px; font-weight:800; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
  .step-text h5 { font-size:13px; font-weight:700; color:var(--dark); margin-bottom:2px; }
  .step-text p { font-size:11px; color:var(--muted); line-height:1.5; }

  .cta { background:linear-gradient(135deg, #003d18, #009c3b); padding:32px 16px; text-align:center; }
  .cta h3 { font-family:'DM Serif Display',serif; font-size:22px; color:white; margin-bottom:8px; }
  .cta p { font-size:12px; color:rgba(255,255,255,0.8); margin-bottom:20px; line-height:1.7; }
  .btn-cta { display:inline-flex; align-items:center; gap:8px; background:white; color:var(--green); padding:13px 26px; border-radius:50px; font-size:13px; font-weight:800; text-decoration:none; }
  .btn-cta svg { fill:var(--green); width:20px; height:20px; }

  footer { background:var(--dark); padding:32px 16px 24px; }
  .footer-logo-wrap { display:flex; align-items:center; gap:8px; margin-bottom:12px; }
  .footer-logo-name { font-family:'DM Serif Display',serif; font-size:18px; color:var(--green); }
  .footer-logo-dest { font-size:7px; font-weight:700; color:#555; letter-spacing:3px; text-transform:uppercase; text-align:center; }
  .footer-dots { display:flex; gap:5px; justify-content:center; margin-top:3px; }
  .footer-dot { width:5px; height:5px; border-radius:50%; }
  .footer-desc { font-size:11px; color:#555; line-height:1.8; margin-bottom:20px; }
  .footer-links { display:grid; grid-template-columns:1fr 1fr; gap:6px; margin-bottom:20px; }
  .footer-links a { font-size:11px; color:#555; text-decoration:none; padding:3px 0; }
  .footer-cadastur { display:flex; align-items:center; gap:8px; background:#1a1a1a; border-radius:10px; padding:12px; margin-bottom:16px; }
  .cadastur-badge { background:var(--green); color:white; font-size:9px; font-weight:800; padding:4px 8px; border-radius:6px; letter-spacing:1px; }
  .cadastur-text { font-size:10px; color:#555; line-height:1.4; }
  .footer-bottom { border-top:1px solid #1a1a1a; padding-top:16px; text-align:center; }
  .footer-bottom p { font-size:10px; color:#444; line-height:1.8; }
  .footer-bottom span { color:var(--green); }

  .wpp-float { position:fixed; bottom:20px; right:16px; width:52px; height:52px; border-radius:50%; background:#25d366; display:flex; align-items:center; justify-content:center; text-decoration:none; box-shadow:0 6px 20px rgba(37,211,102,0.5); z-index:999; animation:pulse 2s infinite; }
  .wpp-float svg { width:28px; height:28px; fill:white; }
  @keyframes pulse { 0%,100% { box-shadow:0 6px 20px rgba(37,211,102,0.5); } 50% { box-shadow:0 6px 30px rgba(37,211,102,0.8); } }

/* ===== contato ===== */
:root {
    --green: #009c3b;
    --green-light: #e8f5ee;
    --gold: #FFB800;
    --dark: #111;
    --text: #1a1a1a;
    --muted: #6b7280;
    --border: #e5e7eb;
    --bg: #f9f9f7;
    --white: #ffffff;
  }

  *, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
  html { scroll-behavior:smooth; }
  body { font-family:'Montserrat',sans-serif; background:var(--white); color:var(--text); max-width:430px; margin:0 auto; overflow-x:hidden; }

  header { position:sticky; top:0; z-index:100; background:rgba(255,255,255,0.97); backdrop-filter:blur(12px); border-bottom:1px solid var(--border); padding:10px 16px; display:flex; align-items:center; justify-content:space-between; }
  .logo-wrap { display:flex; align-items:center; gap:8px; text-decoration:none; }
  .logo-text-wrap { display:flex; flex-direction:column; gap:1px; }
  .logo-name { font-family:'DM Serif Display',serif; font-size:20px; color:var(--green); line-height:1; }
  .logo-dest { font-size:7px; font-weight:700; color:var(--muted); letter-spacing:3px; text-transform:uppercase; text-align:center; }
  .logo-dots { display:flex; gap:3px; margin-top:2px; justify-content:center; }
  .logo-dot { width:4px; height:4px; border-radius:50%; }
  .btn-wpp { background:#25d366; color:white; padding:8px 12px; border-radius:50px; font-size:11px; font-weight:700; text-decoration:none; display:flex; align-items:center; gap:5px; box-shadow:0 4px 12px rgba(37,211,102,0.3); }
  .btn-wpp svg { width:16px; height:16px; fill:white; }

  .cat-menu { background:var(--white); border-bottom:1px solid var(--border); display:flex; overflow-x:auto; scrollbar-width:none; padding:0 16px; }
  .cat-menu::-webkit-scrollbar { display:none; }
  .cat-item { display:flex; flex-direction:column; align-items:center; gap:4px; padding:10px 14px; text-decoration:none; border-bottom:2px solid transparent; transition:all 0.2s; flex-shrink:0; }
  .cat-item.active { border-bottom-color:var(--green); }
  .cat-item-icon { font-size:18px; }
  .cat-item-label { font-size:9px; font-weight:700; color:var(--muted); letter-spacing:1px; text-transform:uppercase; white-space:nowrap; }
  .cat-item.active .cat-item-label { color:var(--green); }

  .page-hero { background:linear-gradient(160deg, #003d18, #009c3b); padding:32px 16px 28px; position:relative; overflow:hidden; }
  .page-hero::after { content:'📞'; position:absolute; right:16px; top:50%; transform:translateY(-50%); font-size:80px; opacity:0.15; }
  .page-hero-tag { font-size:9px; font-weight:800; color:rgba(255,255,255,0.6); letter-spacing:3px; text-transform:uppercase; margin-bottom:6px; }
  .page-hero h1 { font-family:'DM Serif Display',serif; font-size:28px; color:white; line-height:1.2; margin-bottom:8px; }
  .page-hero p { font-size:12px; color:rgba(255,255,255,0.8); line-height:1.7; max-width:260px; }

  .section { padding:24px 16px; }
  .section-gray { padding:24px 16px; background:var(--bg); }

  .sec-tag { font-size:9px; font-weight:800; color:var(--green); letter-spacing:3px; text-transform:uppercase; display:block; margin-bottom:6px; }
  .sec-title { font-family:'DM Serif Display',serif; font-size:20px; color:var(--dark); margin-bottom:16px; }

  /* CANAIS DE ATENDIMENTO */
  .channel-card {
    background:white; border-radius:16px;
    border:1px solid var(--border);
    padding:20px; margin-bottom:12px;
    display:flex; align-items:center; gap:16px;
    text-decoration:none;
    box-shadow:0 2px 12px rgba(0,0,0,0.05);
    transition:transform 0.2s, box-shadow 0.2s;
  }
  .channel-card:active { transform:scale(0.98); }

  .channel-icon {
    width:48px; height:48px; border-radius:14px;
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0; font-size:22px;
  }
  .channel-icon.wpp { background:#e8f5ee; }
  .channel-icon.insta { background:#fce4ec; }
  .channel-icon.email { background:#e8eaf6; }

  .channel-text { flex:1; }
  .channel-name { font-size:14px; font-weight:700; color:var(--dark); margin-bottom:2px; }
  .channel-desc { font-size:11px; color:var(--muted); }
  .channel-action { font-size:10px; font-weight:800; color:var(--green); letter-spacing:1px; text-transform:uppercase; margin-top:4px; display:block; }

  .channel-arrow { color:var(--muted); font-size:16px; }

  /* HORÁRIO */
  .horario-card {
    background:var(--green-light);
    border-radius:16px; padding:20px;
    border:1px solid rgba(0,156,59,0.15);
  }
  .horario-title { font-size:13px; font-weight:700; color:var(--dark); margin-bottom:12px; display:flex; align-items:center; gap:8px; }
  .horario-row { display:flex; justify-content:space-between; align-items:center; padding:8px 0; border-bottom:1px solid rgba(0,156,59,0.1); }
  .horario-row:last-child { border-bottom:none; }
  .horario-dia { font-size:12px; color:var(--text); font-weight:500; }
  .horario-hora { font-size:12px; font-weight:700; color:var(--green); }
  .horario-fechado { font-size:12px; font-weight:700; color:var(--muted); }

  /* SOBRE */
  .sobre-card {
    background:white; border-radius:16px;
    border:1px solid var(--border); padding:20px;
    box-shadow:0 2px 12px rgba(0,0,0,0.05);
  }
  .sobre-logo { display:flex; align-items:center; gap:10px; margin-bottom:14px; }
  .sobre-logo-name { font-family:'DM Serif Display',serif; font-size:22px; color:var(--green); }
  .sobre-logo-dest { font-size:8px; font-weight:700; color:var(--muted); letter-spacing:3px; text-transform:uppercase; text-align:center; }
  .sobre-dots { display:flex; gap:4px; justify-content:center; margin-top:2px; }
  .sobre-dot { width:4px; height:4px; border-radius:50%; }
  .sobre-desc { font-size:12px; color:var(--muted); line-height:1.8; margin-bottom:16px; }
  .sobre-info { display:flex; flex-direction:column; gap:8px; }
  .sobre-row { display:flex; align-items:center; gap:10px; }
  .sobre-row-icon { font-size:14px; width:20px; text-align:center; }
  .sobre-row-text { font-size:11px; color:var(--muted); }
  .sobre-row-text strong { color:var(--text); }

  /* CADASTUR */
  .cadastur-card {
    display:flex; align-items:center; gap:12px;
    background:var(--dark); border-radius:16px;
    padding:18px; margin-bottom:12px;
  }
  .cadastur-badge { background:var(--green); color:white; font-size:10px; font-weight:800; padding:6px 12px; border-radius:8px; letter-spacing:1px; flex-shrink:0; }
  .cadastur-text { font-size:11px; color:#888; line-height:1.5; }
  .cadastur-text strong { color:white; }

  footer { background:var(--dark); padding:32px 16px 24px; }
  .footer-logo-wrap { display:flex; align-items:center; gap:8px; margin-bottom:12px; }
  .footer-logo-name { font-family:'DM Serif Display',serif; font-size:18px; color:var(--green); }
  .footer-logo-dest { font-size:7px; font-weight:700; color:#555; letter-spacing:3px; text-transform:uppercase; text-align:center; }
  .footer-dots { display:flex; gap:5px; justify-content:center; margin-top:3px; }
  .footer-dot { width:5px; height:5px; border-radius:50%; }
  .footer-desc { font-size:11px; color:#555; line-height:1.8; margin-bottom:20px; }
  .footer-links { display:grid; grid-template-columns:1fr 1fr; gap:6px; margin-bottom:20px; }
  .footer-links a { font-size:11px; color:#555; text-decoration:none; padding:3px 0; }
  .footer-bottom { border-top:1px solid #1a1a1a; padding-top:16px; text-align:center; }
  .footer-bottom p { font-size:10px; color:#444; line-height:1.8; }
  .footer-bottom span { color:var(--green); }

  .wpp-float { position:fixed; bottom:20px; right:16px; width:52px; height:52px; border-radius:50%; background:#25d366; display:flex; align-items:center; justify-content:center; text-decoration:none; box-shadow:0 6px 20px rgba(37,211,102,0.5); z-index:999; animation:pulse 2s infinite; }
  .wpp-float svg { width:28px; height:28px; fill:white; }
  @keyframes pulse { 0%,100% { box-shadow:0 6px 20px rgba(37,211,102,0.5); } 50% { box-shadow:0 6px 30px rgba(37,211,102,0.8); } }

/* ===== termos ===== */
* { box-sizing:border-box; margin:0; padding:0; }
  body { font-family:'Montserrat',sans-serif; background:#fff; color:#1a1a1a; width:100%; max-width:430px; margin:0 auto; overflow-x:hidden; }

  header { background:#fff; border-bottom:1px solid #e5e7eb; padding:12px 16px; display:flex; align-items:center; justify-content:space-between; position:sticky; top:0; z-index:100; }
  .logo-name { font-family:'DM Serif Display',serif; font-size:18px; color:#009c3b; }
  .logo-dest { font-size:7px; font-weight:700; color:#6b7280; letter-spacing:3px; text-transform:uppercase; text-align:center; }
  .logo-dots { display:flex; gap:3px; justify-content:center; margin-top:2px; }
  .logo-dot { width:4px; height:4px; border-radius:50%; }
  .back-btn { font-size:12px; font-weight:700; color:#009c3b; text-decoration:none; }

  .hero { background:linear-gradient(160deg,#003d18,#009c3b); padding:28px 16px; }
  .hero-tag { font-size:9px; font-weight:800; color:rgba(255,255,255,0.6); letter-spacing:3px; text-transform:uppercase; margin-bottom:6px; }
  .hero h1 { font-family:'DM Serif Display',serif; font-size:26px; color:#fff; margin-bottom:6px; }
  .hero p { font-size:12px; color:rgba(255,255,255,0.8); line-height:1.7; }

  .indice { background:#e8f5ee; padding:16px; margin:16px; border-radius:14px; }
  .indice-title { font-size:11px; font-weight:800; color:#009c3b; letter-spacing:2px; text-transform:uppercase; margin-bottom:12px; }
  .indice-item { display:block; font-size:12px; color:#009c3b; padding:6px 0; border-bottom:1px solid rgba(0,156,59,0.15); cursor:pointer; font-weight:500; }
  .indice-item:last-child { border-bottom:none; }

  .content { padding:0 16px 40px; }
  .sec { margin-bottom:28px; padding-top:8px; }
  .t-sec-header { display:flex; align-items:center; gap:10px; margin-bottom:12px; }
  .t-sec-num { width:30px; height:30px; border-radius:50%; background:#009c3b; color:#fff; font-size:13px; font-weight:800; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
  .t-sec-title { font-family:'DM Serif Display',serif; font-size:18px; color:#111; }
  .t-sec-body { font-size:12px; color:#6b7280; line-height:1.9; }
  .t-sec-body p { margin-bottom:10px; }
  .t-sec-body ul { padding-left:16px; margin-bottom:10px; }
  .t-sec-body li { margin-bottom:6px; }
  .t-sec-body strong { color:#1a1a1a; font-weight:600; }
  .box { background:#e8f5ee; border-left:3px solid #009c3b; border-radius:0 10px 10px 0; padding:14px; margin:12px 0; font-size:12px; color:#1a1a1a; line-height:1.8; }
  .divider { height:1px; background:#e5e7eb; margin:20px 0; }
  .update { font-size:10px; color:#6b7280; text-align:center; padding:16px; }

  footer { background:#111; padding:24px 16px; }
  .footer-logo-name { font-family:'DM Serif Display',serif; font-size:18px; color:#009c3b; }
  .footer-logo-dest { font-size:7px; font-weight:700; color:#555; letter-spacing:3px; text-transform:uppercase; text-align:center; }
  .footer-dots { display:flex; gap:5px; margin-top:3px; }
  .footer-dot { width:5px; height:5px; border-radius:50%; }
  .footer-bottom { margin-top:16px; border-top:1px solid #1a1a1a; padding-top:14px; text-align:center; font-size:10px; color:#444; line-height:1.8; }
  .footer-bottom span { color:#009c3b; }

/* ===== privacidade ===== */
* { box-sizing:border-box; margin:0; padding:0; }
  body { font-family:'Montserrat',sans-serif; background:#fff; color:#1a1a1a; width:100%; max-width:430px; margin:0 auto; overflow-x:hidden; }

  header { background:#fff; border-bottom:1px solid #e5e7eb; padding:12px 16px; display:flex; align-items:center; justify-content:space-between; position:sticky; top:0; z-index:100; }
  .logo-name { font-family:'DM Serif Display',serif; font-size:18px; color:#009c3b; }
  .logo-dest { font-size:7px; font-weight:700; color:#6b7280; letter-spacing:3px; text-transform:uppercase; text-align:center; }
  .logo-dots { display:flex; gap:3px; justify-content:center; margin-top:2px; }
  .logo-dot { width:4px; height:4px; border-radius:50%; }
  .back-btn { font-size:12px; font-weight:700; color:#009c3b; cursor:pointer; }

  .hero { background:linear-gradient(160deg,#003d18,#009c3b); padding:28px 16px; }
  .hero-tag { font-size:9px; font-weight:800; color:rgba(255,255,255,0.6); letter-spacing:3px; text-transform:uppercase; margin-bottom:6px; }
  .hero h1 { font-family:'DM Serif Display',serif; font-size:26px; color:#fff; margin-bottom:6px; }
  .hero p { font-size:12px; color:rgba(255,255,255,0.8); line-height:1.7; }

  .indice { background:#e8f5ee; padding:16px; margin:16px; border-radius:14px; }
  .indice-title { font-size:11px; font-weight:800; color:#009c3b; letter-spacing:2px; text-transform:uppercase; margin-bottom:12px; }
  .indice-item { display:block; font-size:12px; color:#009c3b; padding:6px 0; border-bottom:1px solid rgba(0,156,59,0.15); cursor:pointer; font-weight:500; }
  .indice-item:last-child { border-bottom:none; }

  .content { padding:0 16px 40px; direction:ltr; text-align:left; }
  .sec { margin-bottom:24px; padding-top:8px; }
  .t-sec-header { display:flex; align-items:center; gap:10px; margin-bottom:12px; }
  .t-sec-num { width:30px; height:30px; border-radius:50%; background:#009c3b; color:#fff; font-size:13px; font-weight:800; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
  .t-sec-title { font-family:'DM Serif Display',serif; font-size:18px; color:#111; }
  .t-sec-body { font-size:14px; color:#6b7280; line-height:1.9; }
  .t-sec-body p { margin-bottom:10px; }
  .t-sec-body ul { padding-left:16px; margin-bottom:10px; }
  .t-sec-body li { margin-bottom:6px; }
  .t-sec-body strong { color:#1a1a1a; font-weight:600; }
  .box { background:#e8f5ee; border-left:3px solid #009c3b; border-radius:0 10px 10px 0; padding:14px; margin:12px 0; font-size:12px; color:#1a1a1a; line-height:1.8; }
  .divider { height:1px; background:#e5e7eb; margin:16px 0; }
  .update { font-size:10px; color:#6b7280; text-align:center; padding:16px; }

  footer { background:#111; padding:16px; text-align:center; font-size:10px; color:#444; line-height:1.8; }
  footer span { color:#009c3b; }



/* ============================================================
   LAYOUT RESPONSIVO EMBARCA GRAMADO
   ─ até 799px   : mobile — INTOCADO
   ─ 800px+      : desktop CVC (layout aprovado)
   (sem camada tablet; gatilho 800px ativa no Vaio)
   ============================================================ */


/* ══════════════════════════════════════════════════════════════
   DESKTOP  ≥ 800px  —  Layout CVC aprovado
   (gatilho em 800px para ativar no Vaio com escala do Windows)
   ══════════════════════════════════════════════════════════════ */
@media (min-width: 800px) {

  /* ── Reset container mobile ── */
  body { max-width: 100% !important; width: 100% !important; }

  /* ── HEADER ── */
  header {
    padding: 0 5% !important;
    height: 58px !important;
    display: flex !important; align-items: center !important; justify-content: space-between !important;
    gap: 32px !important;
    box-shadow: 0 1px 8px rgba(0,0,0,0.05) !important;
  }
  .logo-name { font-size: 24px !important; }
  .btn-wpp { font-size: 13px !important; padding: 11px 20px !important; white-space: nowrap !important; }

  /* ── NAV — colada à esquerda ── */
  .cat-menu {
    display: flex !important;
    position: sticky !important;
    top: 58px !important;
    z-index: 99 !important;
    background: white !important;
    border-top: none !important;
    border-bottom: 1px solid var(--border) !important;
    padding: 0 1.5% !important;
    gap: 0 !important;
    overflow-x: visible !important;
    justify-content: flex-start !important;
  }
  .cat-item {
    flex-direction: row !important;
    align-items: center !important;
    gap: 7px !important;
    padding: 11px 18px !important;
    border-bottom: 3px solid transparent !important;
    border-right: none !important;
    flex-shrink: 0 !important;
    transition: all 0.2s !important;
  }
  .cat-item:first-child { padding-left: 0 !important; }
  .cat-item:hover { border-bottom-color: rgba(0,156,59,0.3) !important; }
  .cat-item.active { border-bottom-color: var(--green) !important; }
  .cat-item-icon { font-size: 18px !important; }
  .cat-item-label {
    font-size: 12px !important; font-weight: 700 !important;
    letter-spacing: 0.5px !important; text-transform: none !important;
    color: var(--text) !important;
  }
  .cat-item.active .cat-item-label { color: var(--green) !important; }

  /* ── HERO BANNER ── */
  .banner {
    min-height: 290px !important;
    padding: 36px 3% !important;
    align-items: flex-start !important;
    justify-content: flex-end !important;
  }
  .banner-tag { font-size: 12px !important; letter-spacing: 3px !important; margin-bottom: 10px !important; }
  .banner h2 { font-size: 34px !important; max-width: 520px !important; line-height: 1.1 !important; margin-bottom: 18px !important; }
  .banner-emoji { font-size: 160px !important; right: 7% !important; opacity: 0.22 !important; }
  .banner-btn { font-size: 14px !important; padding: 13px 32px !important; border-radius: 50px !important; }
  .banner-dots, .bdot { }

  /* ── BENEFÍCIOS ── */
  .benefits { padding: 12px 3% !important; justify-content: space-around !important; gap: 0 !important; }
  .benefit { min-width: auto !important; flex: 1 !important; justify-content: center !important; border-right: 1px solid rgba(255,255,255,0.2) !important; padding: 0 14px !important; }
  .benefit:last-child { border-right: none !important; }
  .benefit-icon { font-size: 18px !important; }
  .benefit-title { font-size: 11px !important; }
  .benefit-sub { font-size: 9px !important; }

  /* ── CONTAINER CENTRAL ── */
  .section {
    max-width: 1400px !important;
    margin-left: auto !important; margin-right: auto !important;
    padding: 36px 3% !important;
    width: 100% !important; box-sizing: border-box !important;
  }
  .section-gray { padding: 36px 0 !important; }
  .section-gray > .sec-header,
  .section-gray > .cards-scroll,
  .section-gray > .reviews-scroll {
    max-width: 1400px !important;
    margin-left: auto !important; margin-right: auto !important;
    padding-left: 3% !important; padding-right: 3% !important;
    box-sizing: border-box !important;
  }

  .sec-header { margin-bottom: 20px !important; }
  .sec-tag { font-size: 11px !important; letter-spacing: 2px !important; }
  .sec-title { font-size: 26px !important; }
  .sec-link { font-size: 12px !important; }

  /* ── CARDS PRINCIPAIS (index) — 4 colunas ── */
  .cards-scroll {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    overflow-x: visible !important;
    padding: 0 !important; margin: 0 !important;
  }
  .product-card {
    min-width: 0 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  }
  .product-card:hover { transform: translateY(-5px) !important; box-shadow: 0 14px 36px rgba(0,0,0,0.13) !important; }
  .product-img { height: 130px !important; font-size: 40px !important; }
  .product-body { padding: 12px !important; }
  .product-name { font-size: 14px !important; margin-bottom: 8px !important; }
  .price-val { font-size: 18px !important; }
  .btn-buy { width: auto !important; height: auto !important; padding: 8px 14px !important; font-size: 11px !important; border-radius: 50px !important; gap: 5px !important; }
  .btn-buy svg { width: 14px !important; height: 14px !important; }
  .btn-wpp-reservar { padding: 8px 14px !important; font-size: 11px !important; }
  .btn-wpp-reservar svg { width: 14px !important; height: 14px !important; }

  /* ── SEÇÕES COM CARDS ESPECIALIZADOS — Hospedagem/Atrações/Gastronomia (3 col) ── */
  .section:has(> .hotel-card),
  .section:has(> .atr-card),
  .section:has(> .gastro-card),
  .section:has(> .rest-card),
  .section-gray:has(> .hotel-card),
  .section-gray:has(> .atr-card),
  .section-gray:has(> .gastro-card),
  .section-gray:has(> .rest-card) {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 36px 3% !important;
    box-sizing: border-box !important;
  }
  .section:has(.sec-header) .sec-header,
  .section-gray:has(.sec-header) .sec-header { grid-column: 1 / -1 !important; }

  .hotel-card, .atr-card, .gastro-card, .rest-card {
    margin-bottom: 0 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  }
  .hotel-card:hover, .atr-card:hover, .gastro-card:hover, .rest-card:hover { transform: translateY(-5px) !important; box-shadow: 0 14px 36px rgba(0,0,0,0.13) !important; }

  /* ── TRANSFERS — 2 colunas ── */
  .section:has(> .tr-card),
  .section-gray:has(> .tr-card) {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 36px 3% !important;
    box-sizing: border-box !important;
  }
  .tr-card {
    margin-bottom: 0 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  }
  .tr-card:hover { transform: translateY(-5px) !important; box-shadow: 0 14px 36px rgba(0,0,0,0.13) !important; }

  /* ── AVALIAÇÕES — 3 colunas ── */
  .reviews-scroll {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    overflow-x: visible !important;
  }
  .review-card { min-width: 0 !important; }

  /* ── SOBRE (diffs) — 5 colunas ── */
  .diffs-grid, .diffs {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 16px !important;
  }

  /* ── PAGE HERO (páginas internas) ── */
  .page-hero { padding: 56px 3% !important; min-height: 200px !important; }
  .page-hero::after { font-size: 140px !important; right: 5% !important; }
  .page-hero h1 { font-size: 40px !important; }
  .page-hero p { font-size: 15px !important; max-width: 560px !important; }

  /* ── BREADCRUMB ── */
  .breadcrumb { max-width: 1400px !important; margin: 0 auto !important; padding: 12px 3% !important; }

  /* ── PÁGINA DE PRODUTO — galeria + info lado a lado ── */
  .produto-info, .gallery, .preco-bloco, .tags-rapidas, .sec-detalhe, .sec-detalhe-gray, .cta {
    box-sizing: border-box !important;
  }
  /* Wrapper grid via container artificial: galeria e info lado a lado */
  .breadcrumb + .gallery,
  .gallery {
    max-width: 620px !important;
    margin: 30px auto 0 !important;
    float: none !important;
  }
  .gallery-main, .gallery-main-placeholder { height: 340px !important; max-height: 340px !important; }
  .gallery-thumbs { justify-content: center !important; }
  .gallery-thumb, .gallery-thumb-placeholder { width: 96px !important; height: 64px !important; }

  .produto-info { max-width: 900px !important; margin: 0 auto !important; padding: 24px 3% 0 !important; }
  .produto-nome { font-size: 34px !important; }
  .preco-bloco { max-width: 900px !important; margin: 0 auto 24px !important; }

  .tags-rapidas, .sec-detalhe, .sec-detalhe-gray {
    max-width: 1100px !important;
    margin-left: auto !important; margin-right: auto !important;
    padding-left: 3% !important; padding-right: 3% !important;
  }
  .atrativos-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .outros-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 22px !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
  }

  /* ── TRANSFERS FROTA ── */
  .frota-box, .frota-sec { max-width: 1100px !important; margin: 0 auto !important; padding: 0 3% !important; }

  /* ── CTA ── */
  .cta { padding: 40px 3% !important; }
  .cta h3 { font-size: 26px !important; margin-bottom: 8px !important; }
  .cta p { font-size: 14px !important; margin-bottom: 20px !important; }
  .btn-cta { font-size: 14px !important; padding: 13px 32px !important; }

  /* ── FOOTER — Navegação 1ª / Descrição / Logo / CADASTUR ── */
  footer {
    background: #1a1a1a !important;
    padding: 28px max(3%, calc((100% - 1100px) / 2)) 20px !important;
    display: grid !important;
    grid-template-columns: auto 1.3fr auto auto !important;
    gap: 28px !important;
    align-items: start !important;
    text-align: left !important;
    line-height: 1.6 !important;
  }
  .footer-links { order: 1 !important; display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 6px 24px !important; align-content: start !important; }
  .footer-desc { order: 2 !important; align-self: center !important; font-size: 11px !important; color: #777 !important; line-height: 1.7 !important; margin: 0 !important; max-width: 280px !important; }
  .footer-logo-wrap { order: 3 !important; display: flex !important; flex-direction: row !important; align-items: center !important; gap: 10px !important; }
  .footer-cadastur { order: 4 !important; display: flex !important; align-items: center !important; gap: 8px !important; align-self: center !important; }
  .footer-bottom { order: 5 !important; grid-column: 1 / -1 !important; border-top: 1px solid #2a2a2a !important; padding-top: 14px !important; margin-top: 4px !important; font-size: 10px !important; color: #555 !important; text-align: center !important; }
  .footer-bottom br { display: inline !important; }
  .footer-bottom p { line-height: 1.9 !important; }
  .footer-links a { font-size: 11px !important; color: #777 !important; }
  .footer-links-title { font-size: 9px !important; letter-spacing: 2px !important; margin-bottom: 8px !important; grid-column: 1 / -1 !important; }
  .footer-logo-name { font-size: 16px !important; }
  .footer-dots { justify-content: center !important; }

  /* ── WPP FLOAT ── */
  .wpp-float { right: 36px !important; bottom: 36px !important; width: 56px !important; height: 56px !important; }
  .wpp-float svg { width: 28px !important; height: 28px !important; }
}
