/* ── Reset & Variables ──────────────────────────────── */
:root {
  --verde: #2d5016;
  --verde-medio: #3d6b20;
  --verde-claro: #5a8a35;
  --verde-menta: #8db87a;
  --verde-pale: #e8f0e0;
  --terra: #8b5e3c;
  --terra-claro: #c4956a;
  --creme: #f7f2eb;
  --creme-escuro: #ede4d4;
  --branco: #fdfaf6;
  --texto: #1a1a18;
  --texto-medio: #4a4a42;
  --texto-claro: #7a7a6e;
  --dourado: #c9a84c;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--branco); color: var(--texto); overflow-x: hidden; }

/* ── Nav ──────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 90px; padding: 0 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(20, 40, 8, 0.5);
  backdrop-filter: blur(6px);
  transition: var(--transition);
}
nav.scrolled {
  background: rgba(253,250,246,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(45,80,22,0.08);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none; transition: var(--transition);
}
.nav-logo-img { width: 150px; height: 100%; object-fit: contain; transition: filter 0.4s; flex-shrink: 0; }
.nav-logo-text { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.2; transition: color 0.4s; }
nav.scrolled .nav-logo-text { color: var(--verde); }
.nav-logo-text small { display: block; font-size: 0.6rem; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.8; font-family: var(--font-body); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.9); text-decoration: none; transition: var(--transition); }
nav.scrolled .nav-links a { color: var(--texto-medio); }
.nav-links a:hover { color: var(--dourado); }
nav.scrolled .nav-links a:hover { color: var(--verde); }
.nav-cta { background: var(--dourado) !important; color: #fff !important; padding: 0.6rem 1.5rem; border-radius: 2px; font-size: 0.75rem !important; letter-spacing: 0.15em !important; }
.nav-cta:hover { background: var(--terra) !important; }
nav.scrolled .nav-cta { background: var(--verde) !important; }

/* ── Hero ──────────────────────────────────────────── */
#hero { height: 100vh; min-height: 700px; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #1a2e0a 0%, #2d5016 40%, #3d6b20 70%, #1a2e0a 100%); }
.hero-bg::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(ellipse at 20% 50%, rgba(90,138,53,0.3) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.15) 0%, transparent 40%); }
.hero-pattern { position: absolute; inset: 0; opacity: 0.04; background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%); background-size: 20px 20px; }
.hero-img { position: absolute; inset: 0; background: center/cover no-repeat; opacity: 0.55; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(20,40,10,0.3) 0%, rgba(20,40,10,0.5) 60%, rgba(20,40,10,0.85) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 2rem; max-width: 900px; animation: heroFade 1.2s ease forwards; }
.hero-logo { width: 110px; height: 110px; object-fit: contain; margin-bottom: 1.5rem; opacity: 0.95; }
@keyframes heroFade { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
.hero-tag { display: inline-block; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--dourado); margin-bottom: 1.5rem; border-bottom: 1px solid rgba(201,168,76,0.4); padding-bottom: 0.5rem; }
.hero-title { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 400; color: #fff; line-height: 1.05; margin-bottom: 0.3em; }
.hero-title em { font-style: italic; color: var(--dourado); }
.hero-sub { font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,0.75); font-weight: 300; letter-spacing: 0.02em; margin-bottom: 2.5rem; line-height: 1.6; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.5); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; animation: bounce 2s ease infinite; }
.hero-scroll::after { content: ''; display: block; width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── Buttons ──────────────────────────────────────── */
.btn-primary { background: var(--dourado); color: #fff; padding: 1rem 2.5rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: var(--transition); border: none; cursor: pointer; }
.btn-primary:hover { background: #b8963e; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.4); }
.btn-outline { background: transparent; color: #fff; padding: 1rem 2.5rem; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; border-radius: 2px; border: 1px solid rgba(255,255,255,0.4); transition: var(--transition); cursor: pointer; }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

/* ── Oferta Banner ────────────────────────────────── */
.oferta-banner { background: var(--verde); padding: 1.5rem 3rem; display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.oferta-badge { background: var(--dourado); color: #fff; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 1px; }
.oferta-texto { color: #fff; font-size: 0.95rem; font-weight: 300; }
.oferta-texto strong { font-weight: 600; font-family: var(--font-display); font-size: 1.1rem; }
.oferta-cta { background: transparent; color: var(--dourado); border: 1px solid var(--dourado); padding: 0.5rem 1.5rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: var(--transition); }
.oferta-cta:hover { background: var(--dourado); color: #fff; }

/* ── Sections ─────────────────────────────────────── */
section { padding: 6rem 3rem; scroll-margin-top: 90px; }
.section-tag { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--verde-claro); margin-bottom: 0.75rem; display: block; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; line-height: 1.15; color: var(--verde); }
.section-title em { font-style: italic; color: var(--terra); }
.section-line { width: 48px; height: 2px; background: var(--dourado); margin: 1.25rem 0 1.5rem; }

/* ── Sobre ────────────────────────────────────────── */
#sobre { background: var(--creme); }
.sobre-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.sobre-img-wrap { position: relative; }
.sobre-carousel { width: 100%; aspect-ratio: 4/5; position: relative; overflow: hidden; border-radius: 2px; }
.sc-slide { position: absolute; inset: 0; background: var(--creme-escuro) center/cover; opacity: 0; transition: opacity 0.9s ease; }
.sc-slide.active { opacity: 1; }
.sc-arr { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.38); color: #fff; border: none; width: 40px; height: 40px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; z-index: 2; line-height: 1; }
.sc-arr:hover { background: rgba(0,0,0,0.65); }
.sc-prev { left: 0.75rem; }
.sc-next { right: 0.75rem; }
.sc-dots { position: absolute; bottom: 0.85rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.45rem; z-index: 2; }
.sc-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; border: none; padding: 0; transition: background 0.2s; }
.sc-dot.active { background: var(--dourado); }
.sobre-img-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--verde); color: #fff; padding: 1.5rem; text-align: center; width: 120px; font-family: var(--font-display); }
.sobre-img-badge .num { font-size: 2.5rem; font-weight: 700; line-height: 1; display: block; }
.sobre-img-badge .txt { font-size: 0.65rem; font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; }
.sobre-texto p { color: var(--texto-medio); line-height: 1.8; margin-bottom: 1.25rem; font-weight: 300; font-size: 1.025rem; }
.sobre-stats { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.stat { border-left: 2px solid var(--dourado); padding-left: 1rem; }
.stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--verde); line-height: 1; }
.stat-label { font-size: 0.72rem; font-weight: 400; color: var(--texto-claro); letter-spacing: 0.05em; margin-top: 0.2rem; }

/* ── Atividades ───────────────────────────────────── */
#atividades { background: var(--verde); overflow: hidden; }
#atividades .section-tag { color: var(--verde-menta); }
#atividades .section-title { color: #fff; }
#atividades .section-title em { color: var(--dourado); }
#atividades .section-line { background: var(--dourado); }
.ativ-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5px; }
.ativ-card { background: rgba(255,255,255,0.05); padding: 2.5rem 2rem; border: 1px solid rgba(255,255,255,0.08); transition: var(--transition); position: relative; overflow: hidden; }
.ativ-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.ativ-icon { font-size: 2.5rem; margin-bottom: 1.25rem; display: block; color: var(--dourado); }
.ativ-nome { font-family: var(--font-display); font-size: 1.3rem; color: #fff; margin-bottom: 0.5rem; }
.ativ-desc { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.6; font-weight: 300; }

/* ── Acomodações ──────────────────────────────────── */
#acomodacoes { background: var(--branco); }
.acom-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem; }
.acom-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.acom-card { border: 1px solid var(--creme-escuro); border-radius: 2px; overflow: hidden; transition: var(--transition); }
.acom-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(45,80,22,0.12); }
.acom-img-wrap { position: relative; }
.acom-img { width: 100%; height: 260px; background: var(--creme-escuro) center/cover no-repeat; position: relative; }
.acom-arr { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.38); color: #fff; border: none; width: 34px; height: 34px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; z-index: 2; line-height: 1; }
.acom-arr:hover { background: rgba(0,0,0,0.65); }
.acom-prev { left: 0.5rem; }
.acom-next { right: 0.5rem; }
.acom-dot-row { position: absolute; bottom: 0.6rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.35rem; z-index: 2; }
.acom-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.5); border: none; cursor: pointer; padding: 0; transition: background 0.2s; }
.acom-dot.active { background: var(--dourado); }
.acom-tag-overlay { position: absolute; top: 1rem; left: 1rem; background: var(--verde); color: #fff; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.3rem 0.75rem; border-radius: 1px; }
.acom-body { padding: 1.75rem; }
.acom-nome { font-family: var(--font-display); font-size: 1.35rem; color: var(--verde); margin-bottom: 0.5rem; }
.acom-desc { font-size: 1rem; color: var(--texto-claro); line-height: 1.65; font-weight: 300; margin-bottom: 1.25rem; }
.acom-features { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.acom-feat { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.05em; color: var(--verde-medio); background: var(--verde-pale); padding: 0.3rem 0.75rem; border-radius: 1px; }
.acom-cta { display: block; text-align: center; background: var(--verde); color: #fff; padding: 0.85rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: var(--transition); }
.acom-cta:hover { background: var(--verde-medio); }

/* ── Gastronomia ──────────────────────────────────── */
#gastronomia { background: var(--creme); }
.gastro-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.gastro-img { width: 100%; aspect-ratio: 3/4; background: var(--creme-escuro) center/cover; border-radius: 2px; position: relative; }
.gastro-img::after { content: ''; position: absolute; bottom: -1rem; left: -1rem; right: 1rem; top: 1rem; border: 1px solid var(--dourado); border-radius: 2px; z-index: -1; }
.gastro-cards { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.gastro-card { background: var(--branco); padding: 1.5rem 1.75rem; border-left: 3px solid var(--dourado); border-radius: 0 2px 2px 0; }
.gastro-card-title { font-family: var(--font-display); font-size: 1.15rem; color: var(--verde); margin-bottom: 0.4rem; display: flex; align-items: center; gap: 0.6rem; }
.gastro-card-title .gi { color: var(--dourado); font-size: 1.3rem; flex-shrink: 0; }
.gastro-card-desc { font-size: 0.875rem; color: var(--texto-claro); line-height: 1.65; font-weight: 300; }

/* ── Galeria ──────────────────────────────────────── */
#galeria { background: var(--creme); }
.galeria-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.4rem; margin-top: 2.5rem; }
.galeria-item { aspect-ratio: 1; background: var(--creme-escuro) center/cover; cursor: pointer; overflow: hidden; border-radius: 2px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.galeria-item:hover { transform: scale(1.03); box-shadow: 0 8px 24px rgba(0,0,0,0.18); z-index: 1; position: relative; }

/* ── Lightbox ─────────────────────────────────────── */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.93); z-index: 9998; display: flex; align-items: center; justify-content: center; }
.lightbox img { max-width: 88vw; max-height: 88vh; object-fit: contain; border-radius: 2px; display: block; }
.lb-close { position: fixed; top: 1.25rem; right: 1.25rem; background: rgba(255,255,255,0.15); color: #fff; border: none; width: 44px; height: 44px; border-radius: 50%; font-size: 1.1rem; cursor: pointer; z-index: 9999; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lb-close:hover { background: rgba(255,255,255,0.3); }
.lb-prev, .lb-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); color: #fff; border: none; width: 52px; height: 52px; border-radius: 50%; font-size: 2rem; cursor: pointer; z-index: 9999; display: flex; align-items: center; justify-content: center; transition: background 0.2s; line-height: 1; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.28); }
.lb-prev { left: 1.25rem; }
.lb-next { right: 1.25rem; }
.lb-counter { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.55); font-size: 0.78rem; letter-spacing: 0.12em; z-index: 9999; pointer-events: none; }

/* ── Lead Capture ─────────────────────────────────── */
#lead-capture { background: linear-gradient(135deg, var(--verde) 0%, var(--verde-medio) 100%); padding: 5rem 3rem; text-align: center; }
.lead-wrap { max-width: 600px; margin: 0 auto; }
.lead-wrap .section-tag { color: var(--verde-menta); }
.lead-wrap .section-title { color: #fff; margin-bottom: 1rem; }
.lead-wrap p { color: rgba(255,255,255,0.75); font-weight: 300; margin-bottom: 2.5rem; line-height: 1.7; }
.lead-form { display: flex; flex-direction: column; gap: 1rem; }
.lead-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.lead-input, .lead-select { width: 100%; padding: 1rem 1.25rem; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 2px; color: #fff; font-family: var(--font-body); font-size: 0.875rem; font-weight: 300; outline: none; transition: var(--transition); }
.lead-input::placeholder { color: rgba(255,255,255,0.5); }
.lead-select option { background: var(--verde); color: #fff; }
.lead-input:focus, .lead-select:focus { border-color: var(--dourado); background: rgba(255,255,255,0.15); }
.lead-submit { background: var(--dourado); color: #fff; border: none; padding: 1.1rem 3rem; font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; border-radius: 2px; cursor: pointer; transition: var(--transition); }
.lead-submit:hover:not(:disabled) { background: #b8963e; transform: translateY(-2px); }
.lead-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.lead-success { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); border-radius: 2px; padding: 2rem; color: #fff; text-align: center; }
.lead-success .check { font-size: 3rem; display: block; margin-bottom: 0.75rem; color: #6ee7a0; }
.lead-success h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; }
.lead-success p { color: rgba(255,255,255,0.8); margin: 0; }

/* ── Contato ──────────────────────────────────────── */
#contato { background: var(--branco); }
.contato-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contato-info { display: flex; flex-direction: column; gap: 2rem; }
.contato-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.contato-icon { width: 44px; height: 44px; background: var(--verde-pale); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; flex-shrink: 0; color: var(--dourado); }
.contato-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--verde-claro); margin-bottom: 0.3rem; }
.contato-val { font-size: 0.95rem; color: var(--texto-medio); line-height: 1.6; font-weight: 300; }
.contato-val a { color: var(--verde); text-decoration: none; font-weight: 500; }
.contato-val a:hover { color: var(--dourado); }
.mapa-wrap { border-radius: 2px; overflow: hidden; height: 100%; min-height: 400px; border: 1px solid var(--creme-escuro); }
.mapa-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── Footer ───────────────────────────────────────── */
footer { background: var(--verde); color: rgba(255,255,255,0.7); padding: 3rem; text-align: center; }
.footer-logo-img { width: 80px; height: 80px; object-fit: contain; margin-bottom: 0.75rem; opacity: 0.9; }
.footer-logo { font-family: var(--font-display); font-size: 1.5rem; color: #fff; margin-bottom: 0.5rem; font-weight: 400; }
footer p { font-size: 0.8rem; font-weight: 300; letter-spacing: 0.05em; }
.footer-links { display: flex; gap: 2rem; justify-content: center; margin: 1.5rem 0; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; transition: var(--transition); }
.footer-links a:hover { color: var(--dourado); }
.footer-sep { width: 1px; height: 12px; background: rgba(255,255,255,0.2); }

/* ── WhatsApp Float ───────────────────────────────── */
.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 900; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); }

/* ── Chat ─────────────────────────────────────────── */
.chat-bubble { position: fixed; bottom: 6.5rem; right: 2rem; z-index: 900; width: 64px; height: 64px; border-radius: 50%; background: var(--dourado); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; cursor: pointer; box-shadow: 0 4px 20px rgba(201,168,76,0.45); transition: var(--transition); border: none; }
.chat-bubble:hover { transform: scale(1.1); background: #b8943e; }
.chat-window { position: fixed; bottom: 11rem; right: 2rem; z-index: 899; width: 360px; background: var(--branco); border-radius: 8px; border: 1px solid var(--creme-escuro); box-shadow: 0 20px 60px rgba(0,0,0,0.15); display: none; flex-direction: column; overflow: hidden; }
.chat-window.open { display: flex; animation: chatSlide 0.3s ease; }
@keyframes chatSlide { from { opacity:0; transform:translateY(20px) scale(0.95); } to { opacity:1; transform:translateY(0) scale(1); } }
.chat-header { background: var(--verde); color: #fff; padding: 1rem 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.chat-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--verde-menta); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; color: var(--dourado); }
.chat-header-info h4 { font-size: 0.9rem; font-weight: 500; }
.chat-header-info p { font-size: 0.72rem; opacity: 0.75; font-weight: 300; }
.chat-close { margin-left: auto; background: none; border: none; color: rgba(255,255,255,0.7); font-size: 1.1rem; cursor: pointer; }
.chat-messages { flex: 1; padding: 1rem; overflow-y: auto; display: flex; flex-direction: column; gap: 0.75rem; min-height: 375px; max-height: 480px; }
.msg { max-width: 85%; font-size: 0.85rem; line-height: 1.55; padding: 0.65rem 0.9rem; border-radius: 6px; }
.msg.bot { background: var(--verde-pale); color: var(--texto); align-self: flex-start; border-radius: 2px 10px 10px 10px; }
.msg.user { background: var(--verde); color: #fff; align-self: flex-end; border-radius: 10px 2px 10px 10px; }
.msg.typing { background: var(--verde-pale); align-self: flex-start; padding: 0.75rem 1rem; }
.typing-dots { display: flex; gap: 4px; }
.typing-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--verde-medio); animation: typingDot 1.2s infinite; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot { 0%,60%,100%{opacity:0.3;transform:scale(0.8)} 30%{opacity:1;transform:scale(1)} }
.chat-input-area { border-top: 1px solid var(--creme-escuro); padding: 0.75rem 1rem; display: flex; gap: 0.5rem; align-items: center; }
.chat-input { flex: 1; border: 1px solid var(--creme-escuro); border-radius: 20px; padding: 0.55rem 1rem; font-family: var(--font-body); font-size: 0.82rem; outline: none; background: var(--creme); color: var(--texto); transition: var(--transition); }
.chat-input:focus { border-color: var(--verde-menta); background: #fff; }
.chat-send { width: 34px; height: 34px; border-radius: 50%; background: var(--verde); color: #fff; border: none; cursor: pointer; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; transition: var(--transition); flex-shrink: 0; }
.chat-send:hover { background: var(--verde-medio); }
.chat-powered { text-align: center; padding: 0.4rem; font-size: 0.62rem; color: var(--texto-claro); border-top: 1px solid var(--creme-escuro); }

/* ── Assistente Virtual ───────────────────────────── */
#assistente-virtual { background: var(--creme); }
.av-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: center; }
.av-icon-side { display: flex; flex-direction: column; align-items: center; gap: 1.75rem; }
.av-robot-circle { width: 190px; height: 190px; border-radius: 50%; background: var(--dourado); display: flex; align-items: center; justify-content: center; font-size: 5.5rem; color: #fff; box-shadow: 0 0 0 18px rgba(201,168,76,0.12), 0 0 0 36px rgba(201,168,76,0.06); }
.av-online-badge { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; font-weight: 500; color: var(--verde-medio); letter-spacing: 0.05em; }
.av-online-dot { width: 9px; height: 9px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 3px rgba(74,222,128,0.25); animation: avpulse 2s ease infinite; }
@keyframes avpulse { 0%,100%{box-shadow:0 0 0 3px rgba(74,222,128,0.25)} 50%{box-shadow:0 0 0 7px rgba(74,222,128,0.1)} }
.av-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2rem; }
.av-list li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.975rem; color: var(--texto-medio); font-weight: 300; line-height: 1.5; }
.av-list li i { font-size: 1.15rem; color: var(--verde-claro); flex-shrink: 0; }
.av-btn { display: inline-flex; align-items: center; gap: 0.65rem; background: var(--verde); color: #fff; padding: 1rem 2rem; font-family: var(--font-body); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border: none; border-radius: 2px; cursor: pointer; transition: var(--transition); }
.av-btn:hover { background: var(--verde-medio); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(45,80,22,0.3); }
.av-btn i { font-size: 1.2rem; }

/* ── Responsivo ───────────────────────────────────── */
@media (min-width: 969px) {
  .nav-logo-text { font-size: 1.4rem; }
}
@media (max-width: 968px) {
  nav { padding: 1rem 1.5rem; }
  section { padding: 4rem 1.5rem; }
  .sobre-grid, .gastro-grid, .contato-grid, .av-inner { grid-template-columns: 1fr; gap: 3rem; }
  .av-robot-circle { width: 140px; height: 140px; font-size: 4rem; }
  .ativ-grid { grid-template-columns: repeat(2, 1fr); }
  .acom-cards { grid-template-columns: 1fr; }
  .lead-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 60px; left: 0; right: 0; background: rgba(45,80,22,0.97); padding: 1.5rem; gap: 1rem; }
  .chat-window { width: calc(100vw - 3rem); right: 1.5rem; }
  .galeria-grid { grid-template-columns: repeat(3, 1fr); }
  .sobre-carousel { aspect-ratio: 3/2; }
}
@media (max-width: 480px) {
  .ativ-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
}
