
    /* ══════════════════════════════════════
       BELLA GP v2 — EDITORIAL / LATINA
       Design: âmbar quente · terracota · quase-preto
       Tipografia: Playfair Display + DM Sans
       Layout: assimétrico, editorial, magazine
    ══════════════════════════════════════ */

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --amber: #E8A830;
      --amber-light: #F5C96B;
      --amber-pale: #FDF3DC;
      --terra: #C2603A;
      --terra-light: #E07C55;
      --ink: #0D0B09;
      --ink-2: #1A1612;
      --ink-3: #252018;
      --ink-4: #322B20;
      --warm-gray: #9A9080;
      --warm-light: #CEC4B5;
      --cream: #F8F2E8;
      --white: #FDFAF5;
      --green: #5CBD85;
      --r: 16px;
      --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--ink);
      color: var(--cream);
      font-weight: 300;
      line-height: 1.65;
      overflow-x: hidden;
    }

    /* ══ GRAIN TEXTURE OVERLAY ══ */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 1000;
      pointer-events: none;
      opacity: 0.032;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 200px;
    }

    /* ══ SCROLLBAR ══ */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--ink); }
    ::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 2px; }

    /* ══ SELECTION ══ */
    ::selection { background: var(--amber); color: var(--ink); }

    /* ══════════ NAV ══════════ */
    #nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 500;
      padding: 0 3rem;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background var(--transition), border-color var(--transition);
    }
    #nav.scrolled {
      background: rgba(13,11,9,0.96);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(232,168,48,0.15);
    }

    .nav-brand {
      display: flex;
      align-items: baseline;
      gap: 0.15em;
      text-decoration: none;
    }
    .nav-brand-b {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: 1.55rem;
      color: var(--amber);
      letter-spacing: -0.02em;
    }
    .nav-brand-gp {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      color: var(--warm-gray);
      text-transform: uppercase;
      margin-left: 0.2rem;
    }

    .nav-center {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }
    .nav-center a {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--warm-gray);
      text-decoration: none;
      transition: color 0.25s;
      position: relative;
    }
    .nav-center a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 1px;
      background: var(--amber);
      transition: width 0.3s;
    }
    .nav-center a:hover { color: var(--amber); }
    .nav-center a:hover::after { width: 100%; }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .lang-pill {
      display: flex;
      gap: 0.25rem;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(232,168,48,0.15);
      border-radius: 100px;
      padding: 0.25rem 0.5rem;
    }
    .lang-pill a {
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--warm-gray);
      text-decoration: none;
      padding: 0.2rem 0.5rem;
      border-radius: 100px;
      transition: all 0.2s;
    }
    .lang-pill a:hover, .lang-pill a.active { background: var(--amber); color: var(--ink); }

    .nav-cta {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.6rem 1.4rem;
      background: var(--amber);
      color: var(--ink);
      border-radius: 100px;
      text-decoration: none;
      transition: all 0.3s;
      white-space: nowrap;
    }
    .nav-cta:hover { background: var(--amber-light); transform: translateY(-1px); }

    .nav-burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }
    .nav-burger span {
      display: block;
      width: 24px; height: 1.5px;
      background: var(--amber);
      transition: all 0.3s;
    }

    /* ══ MOBILE DRAWER ══ */
    #drawer {
      position: fixed;
      inset: 0;
      z-index: 490;
      background: var(--ink-2);
      transform: translateX(100%);
      transition: transform 0.45s cubic-bezier(0.77,0,0.18,1);
      display: flex;
      flex-direction: column;
      padding: 6rem 2.5rem 3rem;
      gap: 0.25rem;
    }
    #drawer.open { transform: translateX(0); }
    #drawer a {
      font-family: 'Playfair Display', serif;
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--cream);
      text-decoration: none;
      padding: 0.6rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: color 0.2s, padding 0.2s;
    }
    #drawer a:hover { color: var(--amber); padding-left: 0.5rem; }
    .drawer-close {
      position: absolute;
      top: 1.5rem; right: 1.5rem;
      background: none; border: none;
      color: var(--warm-gray);
      font-size: 1.5rem;
      cursor: pointer;
      padding: 0.5rem;
    }
    .drawer-langs {
      margin-top: auto;
      display: flex;
      gap: 1rem;
      padding-top: 2rem;
    }
    .drawer-langs a {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      color: var(--warm-gray);
      border: none;
      border-radius: 100px;
      padding: 0.4rem 1rem;
      background: rgba(255,255,255,0.05);
    }
    .drawer-langs a:hover { background: var(--amber); color: var(--ink); }

    /* ══════════ HERO ══════════ */
    #hero {
      min-height: 100svh;
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 0;
      overflow: hidden;
    }

    .hero-left {
      padding: 9rem 4rem 5rem 4rem;
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .hero-kicker {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.75rem;
    }
    .hero-kicker-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--green);
      animation: blink 2s infinite;
    }
    @keyframes blink {
      0%,100% { opacity:1; box-shadow: 0 0 0 0 rgba(92,189,133,0.5); }
      50% { opacity:0.6; box-shadow: 0 0 0 8px rgba(92,189,133,0); }
    }
    .hero-kicker-text {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--warm-gray);
    }

    .hero-h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 5.5vw, 5.2rem);
      font-weight: 900;
      line-height: 1.02;
      letter-spacing: -0.025em;
      color: var(--white);
      margin-bottom: 1.5rem;
    }
    .hero-h1 .accent { color: var(--amber); font-style: italic; }
    .hero-h1 .thin { font-weight: 400; }

    .hero-tagline {
      font-size: 1rem;
      color: var(--warm-gray);
      max-width: 380px;
      line-height: 1.75;
      margin-bottom: 2.5rem;
    }

    .hero-actions {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .btn-amber {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.85rem 1.75rem;
      background: var(--amber);
      color: var(--ink);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 100px;
      transition: all 0.3s;
    }
    .btn-amber:hover { background: var(--amber-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,168,48,0.3); }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.85rem 1.75rem;
      border: 1px solid rgba(232,168,48,0.35);
      color: var(--amber);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 100px;
      transition: all 0.3s;
    }
    .btn-ghost:hover { background: rgba(232,168,48,0.08); border-color: var(--amber); }

    .hero-stats {
      display: flex;
      gap: 2rem;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.07);
    }
    .hero-stat-n {
      font-family: 'Playfair Display', serif;
      font-size: 1.9rem;
      font-weight: 700;
      color: var(--amber);
      line-height: 1;
    }
    .hero-stat-l {
      font-size: 0.7rem;
      color: var(--warm-gray);
      letter-spacing: 0.05em;
      margin-top: 0.2rem;
    }

    /* Hero right — editorial collage */
    .hero-right {
      position: relative;
      height: 100%;
      min-height: 100svh;
      overflow: hidden;
    }

    .hero-bg-col {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 80% at 70% 40%, rgba(194,96,58,0.18) 0%, transparent 65%),
        radial-gradient(ellipse 60% 60% at 30% 70%, rgba(232,168,48,0.1) 0%, transparent 60%),
        linear-gradient(160deg, var(--ink-2) 0%, var(--ink-3) 100%);
    }

    .hero-grid-lines {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(232,168,48,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232,168,48,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .hero-number-bg {
      position: absolute;
      bottom: -2rem;
      right: -1rem;
      font-family: 'Playfair Display', serif;
      font-size: 22vw;
      font-weight: 900;
      color: rgba(232,168,48,0.035);
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }

    .hero-card {
      position: absolute;
      background: var(--ink-3);
      border: 1px solid rgba(232,168,48,0.15);
      border-radius: 12px;
      padding: 1.25rem 1.5rem;
      backdrop-filter: blur(8px);
    }

    .hero-card-1 {
      top: 18%;
      left: 8%;
      width: 200px;
      animation: floatA 6s ease-in-out infinite;
    }
    .hero-card-2 {
      top: 42%;
      right: 8%;
      width: 175px;
      animation: floatB 7s ease-in-out infinite;
    }
    .hero-card-3 {
      bottom: 20%;
      left: 18%;
      width: 210px;
      animation: floatA 5.5s ease-in-out infinite 1s;
    }

    @keyframes floatA {
      0%,100% { transform: translateY(0) rotate(-0.5deg); }
      50% { transform: translateY(-12px) rotate(0.5deg); }
    }
    @keyframes floatB {
      0%,100% { transform: translateY(0) rotate(0.5deg); }
      50% { transform: translateY(-10px) rotate(-0.5deg); }
    }

    .hcard-label {
      font-size: 0.6rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 0.4rem;
    }
    .hcard-value {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.25rem;
    }
    .hcard-sub {
      font-size: 0.72rem;
      color: var(--warm-gray);
    }
    .hcard-dot {
      display: inline-block;
      width: 6px; height: 6px;
      background: var(--green);
      border-radius: 50%;
      margin-right: 0.3rem;
      animation: blink 1.8s infinite;
    }

    /* ══ DIAGONAL DIVIDER ══ */
    .diagonal-sep {
      width: 100%;
      height: 80px;
      background: var(--ink-2);
      clip-path: polygon(0 100%, 100% 0, 100% 100%);
      margin-top: -1px;
    }

    /* ══════════ BAIRROS ══════════ */
    #bairros {
      background: var(--ink-2);
      padding: 5rem 3rem 6rem;
    }

    .sec-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 3rem;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .sec-kicker {
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 0.6rem;
    }

    .sec-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.1;
    }
    .sec-title em { font-style: italic; color: var(--amber); font-weight: 400; }

    .sec-count {
      font-family: 'Playfair Display', serif;
      font-size: 5rem;
      font-weight: 900;
      color: rgba(232,168,48,0.08);
      line-height: 1;
      flex-shrink: 0;
    }

    /* Masonry-style bairros grid */
    .bairros-masonry {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      grid-template-rows: auto auto auto;
      gap: 2px;
    }

    /* Featured cells */
    .bairro-cell:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .bairro-cell:nth-child(6) { grid-column: span 2; }
    .bairro-cell:nth-child(11) { grid-column: span 2; grid-row: span 2; }

    .bairro-cell {
      position: relative;
      background: var(--ink-3);
      overflow: hidden;
      cursor: pointer;
      min-height: 160px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.25rem;
      text-decoration: none;
      transition: background var(--transition);
    }
    .bairro-cell:nth-child(1) { min-height: 320px; }
    .bairro-cell:nth-child(11) { min-height: 320px; }

    .bairro-cell::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(13,11,9,0.85) 0%, transparent 60%);
      z-index: 1;
    }

    .bairro-cell-bg {
      position: absolute;
      inset: 0;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .bairro-cell:hover .bairro-cell-bg { transform: scale(1.06); }

    /* Unique gradient per bairro */
    .bg-jardins    { background: radial-gradient(circle at 60% 40%, #4a3010 0%, #1a0e04 100%); }
    .bg-itaim      { background: radial-gradient(circle at 40% 60%, #3d1a0a 0%, #1a0a04 100%); }
    .bg-moema      { background: radial-gradient(circle at 50% 50%, #1a2a0e 0%, #0a1204 100%); }
    .bg-pinheiros  { background: radial-gradient(circle at 30% 70%, #0e1a2a 0%, #040a12 100%); }
    .bg-vmariana   { background: radial-gradient(circle at 70% 30%, #2a1a0e 0%, #120a04 100%); }
    .bg-higienop   { background: radial-gradient(circle at 50% 40%, #3a2a10 0%, #1a1208 100%); }
    .bg-consolacao { background: radial-gradient(circle at 40% 60%, #2a0e1a 0%, #12040a 100%); }
    .bg-belavista  { background: radial-gradient(circle at 60% 40%, #0e2a2a 0%, #041212 100%); }
    .bg-vnova      { background: radial-gradient(circle at 50% 70%, #1a2a3a 0%, #081018 100%); }
    .bg-brooklin   { background: radial-gradient(circle at 30% 50%, #3a1a0e 0%, #180a04 100%); }
    .bg-perdizes   { background: radial-gradient(circle at 60% 30%, #0e1a3a 0%, #04081a 100%); }
    .bg-lapa       { background: radial-gradient(circle at 50% 60%, #2a1a3a 0%, #100818 100%); }
    .bg-santana    { background: radial-gradient(circle at 40% 40%, #3a2a0e 0%, #1a1204 100%); }
    .bg-tatua      { background: radial-gradient(circle at 60% 50%, #0a2a1a 0%, #041208 100%); }
    .bg-vmadalena  { background: radial-gradient(circle at 50% 40%, #2a1810 0%, #140c08 100%); }

    .bairro-cell-content { position: relative; z-index: 2; }

    .bairro-cell-num {
      font-family: 'Playfair Display', serif;
      font-size: 0.7rem;
      color: rgba(232,168,48,0.5);
      margin-bottom: 0.25rem;
    }

    .bairro-cell-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.25rem;
      line-height: 1.2;
    }

    .bairro-cell:nth-child(1) .bairro-cell-name,
    .bairro-cell:nth-child(11) .bairro-cell-name {
      font-size: 1.5rem;
    }

    .bairro-cell-tag {
      display: inline-block;
      font-size: 0.58rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.15rem 0.5rem;
      background: rgba(232,168,48,0.15);
      color: var(--amber);
      border-radius: 100px;
      margin-bottom: 0.4rem;
    }

    .bairro-cell-arrow {
      position: absolute;
      top: 1rem; right: 1rem;
      z-index: 2;
      width: 28px; height: 28px;
      border-radius: 50%;
      border: 1px solid rgba(232,168,48,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--amber);
      font-size: 0.8rem;
      opacity: 0;
      transform: translateX(-4px);
      transition: all 0.3s;
    }
    .bairro-cell:hover .bairro-cell-arrow { opacity: 1; transform: translateX(0); }

    /* ══════════ HOTÉIS SECTION ══════════ */
    #hoteis {
      padding: 6rem 3rem;
      background: var(--ink);
      position: relative;
    }

    .hoteis-intro {
      max-width: 600px;
      margin-bottom: 4rem;
    }
    .hoteis-intro p {
      font-size: 0.9rem;
      color: var(--warm-gray);
      line-height: 1.8;
      margin-top: 1rem;
    }

    .hoteis-tabs {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
    }
    .htab {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.5rem 1.1rem;
      border-radius: 100px;
      border: 1px solid rgba(232,168,48,0.2);
      color: var(--warm-gray);
      cursor: pointer;
      transition: all 0.25s;
      background: none;
      font-family: 'DM Sans', sans-serif;
    }
    .htab:hover { border-color: var(--amber); color: var(--amber); }
    .htab.active { background: var(--amber); color: var(--ink); border-color: var(--amber); }

    .hoteis-panel { display: none; }
    .hoteis-panel.active { display: block; }

    .hoteis-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .hotel-card {
      background: var(--ink-2);
      border: 1px solid rgba(232,168,48,0.1);
      border-radius: 12px;
      padding: 1.5rem;
      position: relative;
      overflow: hidden;
      text-decoration: none;
      display: block;
      transition: all var(--transition);
    }
    .hotel-card:hover {
      border-color: rgba(232,168,48,0.35);
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    }
    .hotel-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--amber), var(--terra));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s;
    }
    .hotel-card:hover::before { transform: scaleX(1); }

    .hotel-type {
      font-size: 0.58rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 0.2rem 0.6rem;
      border-radius: 100px;
      margin-bottom: 0.75rem;
      display: inline-block;
    }
    .type-hotel  { background: rgba(232,168,48,0.1); color: var(--amber); }
    .type-flat   { background: rgba(194,96,58,0.15); color: var(--terra-light); }
    .type-apart  { background: rgba(92,189,133,0.1); color: var(--green); }

    .hotel-stars { font-size: 0.62rem; color: var(--amber); opacity: 0.8; margin-bottom: 0.4rem; }
    .hotel-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.25rem;
      line-height: 1.3;
    }
    .hotel-zone {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--amber);
      opacity: 0.7;
      margin-bottom: 0.75rem;
    }
    .hotel-desc {
      font-size: 0.8rem;
      color: var(--warm-gray);
      line-height: 1.7;
    }

    /* ══════════ FEATURES STRIP ══════════ */
    #features {
      background: var(--ink-2);
      padding: 5rem 3rem;
    }

    .features-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 12px;
      overflow: hidden;
      margin-top: 3rem;
    }

    .feature-cell {
      background: var(--ink-2);
      padding: 2.5rem 2rem;
      transition: background 0.3s;
    }
    .feature-cell:hover { background: var(--ink-3); }

    .feature-icon-wrap {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: rgba(232,168,48,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
      transition: background 0.3s;
    }
    .feature-cell:hover .feature-icon-wrap { background: rgba(232,168,48,0.2); }

    .feature-icon-wrap svg { width: 20px; height: 20px; color: var(--amber); }

    .feature-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.5rem;
    }

    .feature-body {
      font-size: 0.8rem;
      color: var(--warm-gray);
      line-height: 1.75;
    }

    /* ══════════ VOICE/AI SECTION ══════════ */
    #voice-section {
      padding: 5rem 3rem;
      background: var(--ink-3);
      position: relative;
      overflow: hidden;
    }
    #voice-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(232,168,48,0.06) 0%, transparent 60%);
    }

    .voice-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .voice-left h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 1.25rem;
    }
    .voice-left h2 em { color: var(--amber); font-style: italic; }

    .voice-left p {
      font-size: 0.87rem;
      color: var(--warm-gray);
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    .voice-answers {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .voice-answer-card {
      background: var(--ink-2);
      border: 1px solid rgba(232,168,48,0.1);
      border-radius: 10px;
      padding: 1.25rem 1.5rem;
      position: relative;
    }
    .voice-answer-card::before {
      content: '🎙';
      position: absolute;
      top: -10px; left: 1rem;
      font-size: 0.75rem;
      background: var(--amber);
      color: var(--ink);
      padding: 0.1rem 0.4rem;
      border-radius: 100px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.55rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      content: 'Pergunta de voz';
    }

    .voice-q {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--amber);
      margin-bottom: 0.4rem;
      font-style: italic;
    }

    .voice-answer {
      font-size: 0.82rem;
      color: var(--warm-light);
      line-height: 1.7;
    }

    /* ══════════ MULTILINGUAL STRIP ══════════ */
    #multilingual {
      background: var(--ink);
      padding: 4rem 3rem;
      border-top: 1px solid rgba(255,255,255,0.05);
    }

    .lang-cards {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1rem;
      margin-top: 2.5rem;
    }

    .lang-card {
      background: var(--ink-2);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 10px;
      padding: 1.5rem 1.25rem;
      text-decoration: none;
      text-align: center;
      transition: all 0.3s;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.6rem;
    }
    .lang-card:hover {
      border-color: var(--amber);
      background: var(--ink-3);
      transform: translateY(-3px);
    }
    .lang-flag { font-size: 2rem; line-height: 1; }
    .lang-name {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--warm-gray);
    }
    .lang-card:hover .lang-name { color: var(--amber); }
    .lang-tagline {
      font-size: 0.7rem;
      color: rgba(255,255,255,0.3);
      font-style: italic;
      line-height: 1.5;
    }

    /* ══════════ HOW IT WORKS ══════════ */
    #como {
      padding: 6rem 3rem;
      background: var(--ink-2);
    }

    .como-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
      margin-top: 3.5rem;
      position: relative;
    }
    .como-grid::before {
      content: '';
      position: absolute;
      top: 2rem;
      left: calc(16.66% + 1.5rem);
      right: calc(16.66% + 1.5rem);
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--amber), transparent);
      opacity: 0.3;
    }

    .como-step { text-align: center; }

    .como-num {
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      font-weight: 900;
      color: rgba(232,168,48,0.12);
      line-height: 1;
      margin-bottom: 1rem;
    }

    .como-icon {
      width: 48px; height: 48px;
      border-radius: 12px;
      background: rgba(232,168,48,0.08);
      border: 1px solid rgba(232,168,48,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
    }
    .como-icon svg { width: 22px; height: 22px; color: var(--amber); }

    .como-step h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.6rem;
    }
    .como-step p {
      font-size: 0.82rem;
      color: var(--warm-gray);
      line-height: 1.8;
    }

    /* ══════════ FAQ ══════════ */
    #faq {
      padding: 6rem 3rem;
      background: var(--ink);
    }

    .faq-layout {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 5rem;
      align-items: start;
    }

    .faq-left h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3vw, 2.8rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 1.25rem;
    }
    .faq-left h2 em { color: var(--amber); }
    .faq-left p { font-size: 0.85rem; color: var(--warm-gray); line-height: 1.8; margin-bottom: 2rem; }

    .faq-contact-mini {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .faq-wapp {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.75rem 1.25rem;
      background: rgba(37,211,102,0.12);
      border: 1px solid rgba(37,211,102,0.25);
      border-radius: 10px;
      color: #25D366;
      font-size: 0.78rem;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s;
    }
    .faq-wapp:hover { background: rgba(37,211,102,0.2); }

    .faq-tele {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.75rem 1.25rem;
      background: rgba(34,158,217,0.12);
      border: 1px solid rgba(34,158,217,0.25);
      border-radius: 10px;
      color: #229ED9;
      font-size: 0.78rem;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s;
    }
    .faq-tele:hover { background: rgba(34,158,217,0.2); }

    .faq-list { display: flex; flex-direction: column; }

    .faq-item {
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .faq-trigger {
      width: 100%;
      background: none;
      border: none;
      padding: 1.5rem 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      cursor: pointer;
      text-align: left;
    }

    .faq-q {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--cream);
      line-height: 1.4;
    }

    .faq-icon {
      width: 28px; height: 28px;
      flex-shrink: 0;
      border-radius: 50%;
      border: 1px solid rgba(232,168,48,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--amber);
      font-size: 1rem;
      transition: all 0.3s;
      line-height: 1;
    }
    .faq-item.open .faq-icon {
      background: var(--amber);
      color: var(--ink);
      transform: rotate(45deg);
    }

    .faq-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s;
    }
    .faq-item.open .faq-body {
      max-height: 300px;
      padding-bottom: 1.5rem;
    }

    .faq-body p {
      font-size: 0.85rem;
      color: var(--warm-gray);
      line-height: 1.85;
    }

    /* ══════════ GEO BANNER — 15 BAIRROS ══════════ */
    #geo-banner {
      position: fixed;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%) translateY(120%);
      z-index: 800;
      width: min(520px, 92vw);
      background: var(--ink-2);
      border: 1px solid rgba(232,168,48,0.3);
      border-radius: 16px;
      padding: 1.25rem 1.5rem;
      box-shadow: 0 20px 60px rgba(0,0,0,0.7);
      transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
      display: flex;
      align-items: center;
      gap: 1.25rem;
    }
    #geo-banner.visible { transform: translateX(-50%) translateY(0); }

    .geo-pulse {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: rgba(232,168,48,0.1);
      border: 1px solid rgba(232,168,48,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--amber);
      animation: geopulse 2s infinite;
    }
    @keyframes geopulse {
      0%,100% { box-shadow: 0 0 0 0 rgba(232,168,48,0.4); }
      50% { box-shadow: 0 0 0 8px rgba(232,168,48,0); }
    }

    .geo-text { flex: 1; }
    .geo-bairro {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.15rem;
    }
    .geo-sub { font-size: 0.72rem; color: var(--warm-gray); }

    .geo-actions { display: flex; gap: 0.5rem; align-items: center; }

    .geo-btn {
      padding: 0.55rem 1.1rem;
      background: var(--amber);
      color: var(--ink);
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-radius: 100px;
      border: none;
      cursor: pointer;
      white-space: nowrap;
      text-decoration: none;
      transition: all 0.2s;
    }
    .geo-btn:hover { background: var(--amber-light); }

    .geo-close {
      background: none;
      border: none;
      color: var(--warm-gray);
      cursor: pointer;
      font-size: 1.1rem;
      padding: 0.25rem;
      transition: color 0.2s;
    }
    .geo-close:hover { color: var(--amber); }

    /* ══════════ FOOTER ══════════ */
    #footer {
      background: var(--ink-2);
      border-top: 1px solid rgba(255,255,255,0.05);
      padding: 4rem 3rem 2.5rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .footer-brand-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--amber);
      margin-bottom: 0.75rem;
      letter-spacing: -0.02em;
    }

    .footer-tagline {
      font-size: 0.82rem;
      color: var(--warm-gray);
      line-height: 1.75;
      max-width: 280px;
      margin-bottom: 1.5rem;
    }

    .footer-social { display: flex; gap: 0.5rem; }
    .social-btn {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--warm-gray);
      text-decoration: none;
      font-size: 0.75rem;
      transition: all 0.25s;
    }
    .social-btn:hover { border-color: var(--amber); color: var(--amber); }

    .footer-col-title {
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 1.25rem;
      opacity: 0.8;
    }

    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
    .footer-links a {
      font-size: 0.8rem;
      color: var(--warm-gray);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--amber); }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.2); }
    .footer-legal { display: flex; gap: 1.5rem; }
    .footer-legal a { font-size: 0.72rem; color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.2s; }
    .footer-legal a:hover { color: var(--warm-gray); }

    /* ══ BACK TO TOP ══ */
    #back-top {
      position: fixed;
      bottom: 6rem;
      right: 1.5rem;
      z-index: 400;
      width: 42px; height: 42px;
      border-radius: 50%;
      background: var(--amber);
      color: var(--ink);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(232,168,48,0.4);
      opacity: 0;
      transform: translateY(8px);
      transition: all 0.3s;
      pointer-events: none;
    }
    #back-top.show { opacity: 1; transform: translateY(0); pointer-events: all; }
    #back-top:hover { background: var(--amber-light); transform: translateY(-2px); }
    #back-top svg { width: 16px; height: 16px; }

    /* ══ REVEAL ANIMATIONS ══ */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ══════════ RESPONSIVE ══════════ */
    @media (max-width: 1100px) {
      .hoteis-grid { grid-template-columns: repeat(2, 1fr); }
      .lang-cards { grid-template-columns: repeat(3, 1fr); }
      .features-strip { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 900px) {
      #hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-right { display: none; }
      .hero-left { padding: 7rem 1.75rem 4rem; }
      .bairros-masonry { grid-template-columns: repeat(3, 1fr); }
      .bairro-cell:nth-child(1),
      .bairro-cell:nth-child(6),
      .bairro-cell:nth-child(11) { grid-column: span 1; grid-row: span 1; min-height: 160px; }
      .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
      .voice-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .como-grid::before { display: none; }
    }

    @media (max-width: 768px) {
      #nav { padding: 0 1.25rem; }
      .nav-center, .lang-pill, .nav-cta { display: none; }
      .nav-burger { display: flex; }

      #bairros, #hoteis, #features, #voice-section, #multilingual, #como, #faq, #footer { padding-left: 1.25rem; padding-right: 1.25rem; }

      .bairros-masonry { grid-template-columns: repeat(2, 1fr); }
      .hoteis-grid { grid-template-columns: 1fr; }
      .features-strip { grid-template-columns: 1fr; }
      .lang-cards { grid-template-columns: repeat(2, 1fr); }
      .como-grid { grid-template-columns: 1fr; gap: 2rem; }
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

      #geo-banner { padding: 1rem; gap: 0.75rem; }
      .geo-sub { display: none; }
    }

    @media (max-width: 480px) {
      .bairros-masonry { grid-template-columns: 1fr 1fr; }
      .hero-h1 { font-size: 2.6rem; }
    }
  
/* ═══════════════════════════════════════════════
   FLOATING CONTACT BUTTONS + AI CONCIERGE
   ═══════════════════════════════════════════════ */

/* Floating buttons stack */
.float-stack {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .65rem;
}

/* Individual float button */
.float-btn {
  display: flex;
  align-items: center;
  gap: .6rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .7rem 1.2rem .7rem .85rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.45);
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.float-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  opacity: 0;
  transition: opacity .2s;
}
.float-btn:hover::before { opacity: 1; }
.float-btn:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 8px 28px rgba(0,0,0,.5); }
.float-btn:active { transform: translateY(-1px) scale(.99); }

.float-btn svg { flex-shrink: 0; }
.float-btn .btn-label { transition: all .35s; }

/* WhatsApp */
.float-wapp { background: #25D366; color: #fff; }
.float-wapp:hover { background: #22c05d; }

/* Telegram */
.float-tele { background: #229ED9; color: #fff; }
.float-tele:hover { background: #1a8fc4; }

/* Concierge IA */
.float-concierge {
  background: linear-gradient(135deg, #E8A830 0%, #C2603A 100%);
  color: #0D0B09;
  padding: .75rem 1.3rem .75rem .9rem;
  font-size: .75rem;
}
.float-concierge:hover { filter: brightness(1.1); }
.float-concierge .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #0D0B09; opacity: .7;
  animation: pulse-dot 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(13,11,9,.4); }
  50% { box-shadow: 0 0 0 5px rgba(13,11,9,0); }
}

/* ═══════════════════════════════════════════════
   AI CONCIERGE CHAT WIDGET
   ═══════════════════════════════════════════════ */

#concierge-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,11,9,.6);
  backdrop-filter: blur(8px);
  z-index: 9100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
#concierge-overlay.open { opacity: 1; pointer-events: all; }

#concierge-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: min(420px, calc(100vw - 2rem));
  height: min(600px, calc(100vh - 3rem));
  background: #0D0B09;
  border: 1px solid rgba(232,168,48,.2);
  border-radius: 20px;
  z-index: 9200;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(232,168,48,.08);
  transform: translateY(20px) scale(.96);
  opacity: 0;
  pointer-events: none;
  transition: all .35s cubic-bezier(.34,1.2,.64,1);
}
#concierge-widget.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

/* Widget header */
.cw-header {
  background: linear-gradient(135deg, #1A1612 0%, #252018 100%);
  border-bottom: 1px solid rgba(232,168,48,.12);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-shrink: 0;
}
.cw-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8A830, #C2603A);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  position: relative;
}
.cw-avatar::after {
  content: '';
  position: absolute;
  bottom: 1px; right: 1px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #5CBD85;
  border: 2px solid #1A1612;
}
.cw-info { flex: 1; min-width: 0; }
.cw-name {
  font-family: 'Playfair Display', serif;
  font-size: .95rem; font-weight: 700;
  color: #FDFAF5; line-height: 1.2;
}
.cw-status {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: #5CBD85; margin-top: .1rem;
}
.cw-close {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  background: none;
  color: #9A9080;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; line-height: 1;
  transition: all .2s;
  flex-shrink: 0;
}
.cw-close:hover { background: rgba(255,255,255,.08); color: #CEC4B5; }

/* Messages area */
.cw-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  scroll-behavior: smooth;
}
.cw-messages::-webkit-scrollbar { width: 3px; }
.cw-messages::-webkit-scrollbar-thumb { background: rgba(232,168,48,.3); border-radius: 2px; }

/* Message bubbles */
.msg {
  display: flex;
  gap: .55rem;
  align-items: flex-end;
  animation: msgIn .3s ease;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.msg.user { flex-direction: row-reverse; }
.msg-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8A830, #C2603A);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; flex-shrink: 0;
}
.msg.user .msg-avatar { background: rgba(255,255,255,.1); }
.msg-bubble {
  max-width: 80%;
  padding: .65rem .9rem;
  border-radius: 14px;
  font-size: .83rem;
  line-height: 1.55;
}
.msg.ai .msg-bubble {
  background: #1A1612;
  border: 1px solid rgba(255,255,255,.06);
  color: #CEC4B5;
  border-bottom-left-radius: 4px;
}
.msg.user .msg-bubble {
  background: linear-gradient(135deg, #E8A830, #C2603A);
  color: #0D0B09;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}
.msg-time {
  font-size: .58rem; color: rgba(255,255,255,.2);
  margin-top: .2rem; text-align: right;
}
.msg.ai .msg-time { text-align: left; }

/* Quick replies */
.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .25rem;
  margin-left: 2rem;
}
.qr-btn {
  background: rgba(232,168,48,.08);
  border: 1px solid rgba(232,168,48,.25);
  border-radius: 100px;
  padding: .3rem .8rem;
  font-size: .72rem;
  color: #E8A830;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .2s;
  white-space: nowrap;
}
.qr-btn:hover { background: rgba(232,168,48,.15); border-color: #E8A830; }

/* Typing indicator */
.typing-indicator {
  display: flex; gap: .55rem; align-items: flex-end;
}
.typing-bubble {
  background: #1A1612;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  padding: .65rem .9rem;
  display: flex; gap: .3rem; align-items: center;
}
.typing-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(232,168,48,.5);
  animation: typingDot 1.2s infinite;
}
.typing-dot:nth-child(2) { animation-delay: .2s; }
.typing-dot:nth-child(3) { animation-delay: .4s; }
@keyframes typingDot {
  0%,60%,100% { transform: translateY(0); opacity: .5; }
  30% { transform: translateY(-5px); opacity: 1; }
}

/* Input area */
.cw-input-area {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: .85rem 1rem;
  background: #0D0B09;
  flex-shrink: 0;
}
.cw-input-row {
  display: flex;
  gap: .5rem;
  align-items: flex-end;
}
.cw-input {
  flex: 1;
  background: #1A1612;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: .65rem .9rem;
  font-size: .85rem;
  color: #F8F2E8;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  resize: none;
  max-height: 100px;
  line-height: 1.45;
  transition: border-color .2s;
}
.cw-input:focus { border-color: rgba(232,168,48,.4); }
.cw-input::placeholder { color: rgba(255,255,255,.25); }
.cw-send {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8A830, #C2603A);
  border: none;
  color: #0D0B09;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: all .25s;
  flex-shrink: 0;
}
.cw-send:hover { filter: brightness(1.1); transform: scale(1.08); }
.cw-send:disabled { opacity: .4; cursor: not-allowed; transform: none; }
.cw-powered {
  font-size: .58rem;
  color: rgba(255,255,255,.15);
  text-align: center;
  margin-top: .5rem;
  letter-spacing: .05em;
}

@media (max-width: 480px) {
  .float-btn .btn-label { display: none; }
  .float-btn { padding: .75rem; border-radius: 50%; }
  #concierge-widget { bottom: 0; right: 0; width: 100vw; border-radius: 20px 20px 0 0; height: 75vh; }
  .float-stack { bottom: 1.25rem; right: 1rem; }
}

