  :root {
      /* cores InvestPark */
      --brand: #0095c0;
      --muted: #797979;
      /* azul InvestPark */
      --brand-600: #025f79;
      --brand-line: #0bc1f3;
      --ink: #0a0d10;
      --bg: #f6f7f9;
      --card: #ffffff;
      --radius: 16px;
      --shadow: 0 8px 30px rgba(3, 32, 20, .08);
    }

    * {
      box-sizing: border-box
    }

    html {
      scroll-behavior: smooth
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, \"Helvetica Neue\", Arial, sans-serif;
      background: var(--bg);
      color: var(--ink);
      line-height: 1.6
    }

    .d-none {
	display: none !important;
    }

    .w-100 {
    }

    img {
      max-width: 100%;
      height: auto;
      display: block
    }

    a {
      color: var(--brand);
      text-decoration: none
    }

    a:hover {
      color: var(--brand-600)
    }

    .container {
      max-width: 1100px;
      margin-inline: auto;
      padding: clamp(16px, 2vw, 24px)
    }

    .header {
      position: sticky;
      top: 0;
      background: rgba(255, 255, 255, .9);
      backdrop-filter: saturate(180%) blur(8px);
      border-bottom: 1px solid #e9eef3;
      z-index: 50
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700
    }

    .logo {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--brand), var(--brand-line))
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 0;
      border-radius: 999px;
      padding: 12px 18px;
      font-weight: 700;
      cursor: pointer;
      background: var(--brand);
      color: #fff;
      box-shadow: 0 6px 16px rgba(0, 140, 90, .25)
    }

    .btn:hover {
      background: var(--brand-600);
      color: #fff
    }

    @media (max-width:500px) {
      .btn-header {
        font-size: 10px;
        padding: 5px 0 5px 15px;
      }
    }

    .btn-outline {
      background: transparent;
      color: var(--brand);
      border: 2px solid var(--brand);
      margin: auto 0;
      padding: 10px;
      border-radius: 999px;

    }

    .hero {
      padding: 10px 0 0 0
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: clamp(16px, 2.5vw, 28px)
    }

    @media (max-width:900px) {
      .hero-grid {
        grid-template-columns: 1fr
      }
    }

    .card {
      background: var(--card);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden
    }

    .hero .copy {
      padding: clamp(16px, 2vw, 24px)
    }

    h1 {
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.1;
      margin: 0 0 6px
    }

    .subtitle {
      font-size: clamp(16px, 2vw, 20px);
      color: var(--muted);
      margin: 0 0 16px
    }

    .badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 12px 0 18px
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #eaf6f1;
      color: var(--brand-600);
      border-radius: 999px;
      padding: 8px 12px;
      font-weight: 700
    }

    .features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin: 18px 0 !important
    }
   
    /*.features ul {
	padding-inline-start: 0px !important;
    }*/

    .features li {
      background: #f4f7fa;
      border-radius: 12px;
      padding: 10px 12px;
      font-size: 18px;
      /*list-style-type: none;
      margin-inline-start: 10px;
	margin-left: 0 !important;*/

    }

    .list2 li {
      background: #fff;
      font-size: 20px;
      
      margin: 5px 15px 5px 0
    }

    @media (max-width:700px) {
      .features {
        grid-template-columns: 1fr
      }
    }

    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 8px
    }

    .gallery {
      padding: 10px 0 0 0
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px
    }

    @media (max-width:1000px) {
      .gallery-grid {
        grid-template-columns: repeat(3, 1fr)
      }
    }

    @media (max-width:700px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr)
      }
    }

    .thumb {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      background: #dfe7eb
    }

    .thumb img {
      width: 100%;
      height: 170px;
      object-fit: cover
    }

    .location {
      padding: 10px 0 0 0
    }

    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px
    }

    .chip {
      border: 1px solid #e2e8ee;
      border-radius: 999px;
      padding: 8px 12px;
      background: #fff
    }

    .footer {
      padding: 26px 0;
      color: #52606d
    }

    .footer small {
      opacity: .9
    }

    /* Floating WhatsApp button at the bottom (rodapé) */
    .whatsapp-float {
      position: fixed;
      right: 16px;
      bottom: 16px;
      z-index: 60
    }

    .whatsapp-float a {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #25D366;
      color: #fff;
      padding: 12px 16px;
      border-radius: 999px;
      font-weight: 800;
      box-shadow: 0 8px 22px rgba(37, 211, 102, .35)
    }

    .whatsapp-float a:hover {
      filter: brightness(.95)
    }

    /* Accessibility helpers */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0
    }

    /* --- Galeria estilo "Highslide-like" (lightbox com moldura e sombra) --- */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 12px
    }

    .thumb {
      position: relative;
      cursor: pointer;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid #e6eee9;
      background: #fff;
      padding: 0px;
    }

    .thumb img {
      display: block;
      width: 100% !important;
      height: auto;
      object-fit: cover;
      transition: transform .25s ease
    }

    .thumb:hover img {
      transform: scale(1.04)
    }

    .thumb .zoom {
      position: absolute;
      inset: auto 8px 8px auto;
      background: var(--brand-600);
      color: #fff;
      border-radius: 999px;
      padding: 6px 10px;
      font-size: 12px;
      font-weight: 700
    }

    /* Lightbox */
    .hs-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .6);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 999
    }

    .hs-overlay.active {
      display: flex
    }

    .hs-figure {
      position: relative;
      max-width: min(92vw, 1100px);
      max-height: 90vh;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
      overflow: hidden
    }

    .hs-figure img {
      display: block;
      max-height: 76vh;
      max-width: 100%;
      object-fit: contain;
      background: #000
    }

    .hs-caption {
      padding: 12px 16px;
      background: linear-gradient(180deg, #f7fbf8, #edf6f1);
      border-top: 1px solid #e6eee9;
      font-size: 14px;
      color: #284b40
    }

    .hs-close,
    .hs-prev,
    .hs-next {
      position: absolute;
      top: 10px;
      background: rgba(255, 255, 255, .95);
      border: 1px solid #e6eee9;
      color: #0f382b;
      border-radius: 999px;
      padding: 8px 10px;
      font-weight: 800;
      cursor: pointer;
      box-shadow: var(--shadow)
    }

    .hs-close {
      right: 10px
    }

    .hs-prev {
      left: 10px
    }

    .hs-next {
      right: 58px
    }

    .hs-arrow {
      font-family: ui-sans-serif, system-ui;
    }
