/* ═══════════════════════════════════════════════
   alojamentolocallisboa.com — CSS principal
   Versão 2.0 · Maio 2025
═══════════════════════════════════════════════ */

/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --sage:       #4A6741;
  --sage-light: #6B8F61;
  --cream:      #F7F4EE;
  --warm:       #FDFCF9;
  --terra:      #B5623A;
  --dark:       #1C1C1A;
  --muted:      #6B6760;
  --border:     rgba(74,103,65,0.15);
  --border-mid: rgba(107,103,96,0.3);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm);
  color: var(--dark);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── LANG LINK (navbar) ─── */
.lang-link {
  font-size: 11px;
  letter-spacing: .1em;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  border: 0.5px solid var(--border);
  padding: 4px 10px;
  border-radius: 20px;
  transition: all .2s;
  white-space: nowrap;
}
.lang-link:hover { border-color: var(--sage); color: var(--sage); }

/* ─── SHARED ─── */
.section-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--terra);
  flex-shrink: 0;
}

.btn-dark {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--warm);
  background: var(--dark);
  border: none;
  padding: 13px 26px;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
  display: inline-block;
}
.btn-dark:hover { background: var(--sage); }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 400;
  color: var(--sage);
  text-decoration: none;
  border-bottom: 0.5px solid var(--sage);
  padding-bottom: 1px;
  transition: opacity .2s;
}
.btn-wa:hover { opacity: .7; }

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 100px;
  background: rgba(253,252,249,.97);
  border-bottom: 0.5px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: 0 1px 20px rgba(28,28,26,.06); }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-brand a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo { height: 90px; width: auto; display: block; }
.nav-brand-sub {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .06em;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--sage); }

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

.lang-btn {
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--muted);
  cursor: pointer;
  border: 0.5px solid var(--border);
  padding: 4px 10px;
  border-radius: 20px;
  background: none;
  transition: all .2s;
}
.lang-btn:hover { border-color: var(--sage); color: var(--sage); }

.nav-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--warm);
  background: var(--sage);
  border: none;
  padding: 8px 18px;
  border-radius: 3px;
  cursor: pointer;
  transition: background .2s;
}
.nav-btn:hover { background: var(--sage-light); }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  font-size: 20px;
  padding: 4px;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
#hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 580px;
  overflow: hidden;
}

.hero-left {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--terra);
}

h1.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -.01em;
  margin-bottom: 1.5rem;
}
h1.hero-title em { font-style: italic; color: var(--sage); }

.hero-subtitle {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 340px;
  margin-bottom: 2.25rem;
}

.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

.hero-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 0.5px solid var(--border);
}
.tag {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 0.5px solid var(--border-mid);
  padding: 5px 11px;
  border-radius: 20px;
}

/* Hero mosaic */
.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 58% 42%;
  gap: 3px;
  background: #c8c0b4;
  overflow: hidden;
}
.hero-photo { overflow: hidden; position: relative; }
.hero-photo.big { grid-column: 1 / 3; }
.hero-photo img { transition: transform .6s ease; }
.hero-photo:hover img { transform: scale(1.04); }

.avail-badge {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: rgba(253,252,249,.93);
  border: 0.5px solid var(--border);
  border-radius: 4px;
  padding: 11px 15px;
  backdrop-filter: blur(4px);
}
.ab-label { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 3px; }
.ab-val   { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--dark); display: block; line-height: 1; }
.ab-sub   { font-size: 10px; color: var(--sage); margin-top: 3px; display: block; }

/* ═══════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════ */
#stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1rem;
  gap: 4px;
  border-right: 0.5px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num   { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; }
.stat-label { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); text-align: center; }

/* ═══════════════════════════════════════
   IDEAL PARA
═══════════════════════════════════════ */
#ideal { padding: 5rem 3rem; background: var(--warm); }

.ideal-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
}
.ideal-card {
  background: var(--warm);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background .25s;
}
.ideal-card:hover { background: var(--cream); }
.ic-icon  { font-size: 20px; color: var(--sage); }
.ic-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; line-height: 1.2; }
.ic-desc  { font-size: 13px; line-height: 1.65; color: var(--muted); }

/* ═══════════════════════════════════════
   DESTAQUES DO APARTAMENTO
═══════════════════════════════════════ */
#destaques { display: grid; grid-template-columns: 1fr 1fr; min-height: 440px; }

.feat-img {
  position: relative;
  overflow: hidden;
}
.feat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.feat-img:hover img { transform: scale(1.03); }
.feat-img-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(253,252,249,.88);
  padding: 6px 12px;
  border-radius: 2px;
}

.feat-content {
  background: var(--cream);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feat-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: .5rem;
}
.feat-heading em { font-style: italic; color: var(--sage); }

.feat-list { display: flex; flex-direction: column; margin-top: 2rem; }
.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 0.5px solid var(--border);
}
.feat-item:first-child { border-top: 0.5px solid var(--border); }
.fi-num   { font-family: 'Cormorant Garamond', serif; font-size: 13px; color: var(--terra); min-width: 20px; padding-top: 2px; }
.fi-title { font-size: 14px; font-weight: 500; margin-bottom: 3px; }
.fi-desc  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════
   ZONA / LUMIAR
═══════════════════════════════════════ */
#zona {
  padding: 5rem 3rem;
  background: var(--warm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.zona-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.zona-title em { font-style: italic; color: var(--sage); }
.zona-intro { font-size: 14px; line-height: 1.8; color: var(--muted); margin-bottom: 2rem; }

.poi-list { display: flex; flex-direction: column; }
.poi {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 0.5px solid var(--border);
  font-size: 13px;
}
.poi:first-child { border-top: 0.5px solid var(--border); }
.poi-icon { color: var(--sage); font-size: 15px; min-width: 22px; }
.poi-dist { margin-left: auto; font-size: 11px; letter-spacing: .06em; color: var(--terra); white-space: nowrap; }
.poi-video { margin-left: .75rem; font-size: 11px; letter-spacing: .04em; color: var(--navy); text-decoration: none; white-space: nowrap; opacity: .7; }
.poi-video:hover { opacity: 1; text-decoration: underline; }

.map-frame {
  border: 0.5px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  height: 360px;
}
.map-frame iframe { width: 100%; height: 100%; border: none; }

/* ═══════════════════════════════════════
   GALERIA
═══════════════════════════════════════ */
#galeria { padding: 5rem 3rem; background: var(--cream); }

.galeria-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3rem;
}
.galeria-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
}
.galeria-title em { font-style: italic; color: var(--sage); }
.galeria-desc { font-size: 13px; line-height: 1.75; color: var(--muted); }

.gallery-section { margin-bottom: 2.5rem; }
.gallery-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .75rem;
  padding: 0 2px;
}
.gs-num   { font-size: 9px; color: var(--muted); letter-spacing: .12em; font-weight: 300; }
.gs-label { font-size: 10px; text-transform: uppercase; letter-spacing: .16em; color: var(--navy); font-weight: 500; white-space: nowrap; }
.gs-line  { flex: 1; height: .5px; background: var(--border); }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
}
.pg { overflow: hidden; border-radius: 2px; cursor: pointer; position: relative; }
.pg img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pg:hover img { transform: scale(1.05); }

/* Apartamento — 6 fotos, 2 linhas */
.pga { grid-template-rows: 260px 200px; }
.pga .pg:nth-child(1) { grid-column:1/7;   grid-row:1/2; }
.pga .pg:nth-child(2) { grid-column:7/10;  grid-row:1/2; }
.pga .pg:nth-child(3) { grid-column:10/13; grid-row:1/2; }
.pga .pg:nth-child(4) { grid-column:1/5;   grid-row:2/3; }
.pga .pg:nth-child(5) { grid-column:5/9;   grid-row:2/3; }
.pga .pg:nth-child(6) { grid-column:9/13;  grid-row:2/3; }

/* Lisboa Verde — 7 fotos, 3 linhas */
.pgv { grid-template-rows: 240px 220px 200px; }
.pgv .pg:nth-child(1) { grid-column:1/7;   grid-row:1/2; }
.pgv .pg:nth-child(2) { grid-column:7/13;  grid-row:1/2; }
.pgv .pg:nth-child(3) { grid-column:1/5;   grid-row:2/3; }
.pgv .pg:nth-child(4) { grid-column:5/9;   grid-row:2/3; }
.pgv .pg:nth-child(5) { grid-column:9/13;  grid-row:2/3; }
.pgv .pg:nth-child(6) { grid-column:1/7;   grid-row:3/4; }
.pgv .pg:nth-child(7) { grid-column:7/13;  grid-row:3/4; }

/* Lisboa — 4 fotos, 2 linhas */
.pgl { grid-template-rows: 220px 220px; }
.pgl .pg:nth-child(1) { grid-column:1/7;   grid-row:1/2; }
.pgl .pg:nth-child(2) { grid-column:7/13;  grid-row:1/2; }
.pgl .pg:nth-child(3) { grid-column:1/5;   grid-row:2/3; }
.pgl .pg:nth-child(4) { grid-column:5/13;  grid-row:2/3; }

.pg-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(28,28,26,.55));
  padding: 1.75rem .875rem .7rem;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(253,252,249,.9);
  opacity: 0;
  transition: opacity .3s;
}
.pg:hover .pg-caption { opacity: 1; }

/* ═══════════════════════════════════════
   DISPONIBILIDADE
═══════════════════════════════════════ */
#disponibilidade {
  padding: 5rem 3rem;
  background: var(--warm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.agosto-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.agosto-title em { font-style: italic; color: var(--sage); }
.agosto-text { font-size: 14px; line-height: 1.8; color: var(--muted); margin-bottom: 2rem; }

.info-blocks { display: flex; flex-direction: column; }
.info-block {
  display: flex;
  gap: 1.25rem;
  padding: 1.1rem 0;
  border-bottom: 0.5px solid var(--border);
  align-items: flex-start;
}
.info-block:first-child { border-top: 0.5px solid var(--border); }
.ib-icon  { color: var(--sage); font-size: 16px; min-width: 22px; padding-top: 1px; }
.ib-label { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.ib-val   { font-size: 14px; font-weight: 400; }

.preco-card {
  border: 0.5px solid var(--border);
  border-radius: 4px;
  padding: 2.25rem;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.preco-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  padding-bottom: 1.25rem;
  border-bottom: 0.5px solid var(--border);
}
.preco-linha { display: flex; justify-content: space-between; align-items: baseline; font-size: 13px; }
.pl-label { color: var(--muted); }
.pl-val   { font-size: 15px; font-weight: 400; }
.pl-note  { font-size: 11px; color: var(--muted); margin-left: 4px; }
.preco-divider { height: 0.5px; background: var(--border); }
.preco-nota { font-size: 12px; line-height: 1.65; color: var(--muted); font-style: italic; }
.preco-cta { display: flex; flex-direction: column; gap: .75rem; }

.btn-full {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--warm);
  background: var(--dark);
  border: none;
  padding: 14px 20px;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s;
  width: 100%;
  text-align: center;
  text-decoration: none;
  display: block;
}
.btn-full:hover { background: var(--sage); }

.btn-wa-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  color: var(--sage);
  border: 0.5px solid var(--sage);
  padding: 12px 20px;
  border-radius: 2px;
  text-decoration: none;
  transition: background .2s;
}
.btn-wa-full:hover { background: rgba(74,103,65,.06); }

/* ═══════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════ */
#cta-final {
  background: var(--dark);
  padding: 5.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
.cta-eyebrow { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: rgba(253,252,249,.4); }
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  max-width: 560px;
}
.cta-title em { font-style: italic; color: rgba(107,143,97,.9); }
.cta-sub { font-size: 14px; color: rgba(253,252,249,.5); max-width: 440px; line-height: 1.7; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.btn-cream {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--cream);
  border: none;
  padding: 14px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity .2s;
  text-decoration: none;
  display: inline-block;
}
.btn-cream:hover { opacity: .85; }

.btn-outline-cream {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cream);
  background: transparent;
  border: 0.5px solid rgba(253,252,249,.3);
  padding: 14px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-outline-cream:hover { border-color: rgba(253,252,249,.7); }

.cta-contact-strip {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 0.5px solid rgba(253,252,249,.1);
  width: 100%;
  max-width: 600px;
  justify-content: center;
  flex-wrap: wrap;
}
.ccs-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.ccs-label { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: rgba(253,252,249,.35); }
.ccs-val   { font-size: 13px; color: rgba(253,252,249,.7); }

/* ═══════════════════════════════════════
   CONTACTO
═══════════════════════════════════════ */
#contacto {
  padding: 5rem 3rem;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contacto-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.contacto-title em { font-style: italic; color: var(--sage); }
.contacto-intro { font-size: 14px; line-height: 1.8; color: var(--muted); margin-bottom: 2.5rem; max-width: 340px; }

.contacto-direct { display: flex; flex-direction: column; }
.cd-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 0.5px solid var(--border);
  font-size: 13px;
  text-decoration: none;
  color: var(--dark);
  transition: color .2s;
}
.cd-item:first-child { border-top: 0.5px solid var(--border); }
.cd-item:hover { color: var(--sage); }
.cd-icon  { color: var(--sage); font-size: 16px; min-width: 20px; }
.cd-label { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 2px; }
.cd-arrow { margin-left: auto; color: var(--muted); }

/* Form */
.form-wrap {
  background: var(--warm);
  border: 0.5px solid var(--border);
  border-radius: 4px;
  padding: 2.25rem;
}
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 0.5px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }

label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
input[type="text"],
input[type="email"],
input[type="date"],
input[type="tel"],
select,
textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--dark);
  background: var(--cream);
  border: 0.5px solid var(--border-mid);
  border-radius: 2px;
  padding: 10px 12px;
  width: 100%;
  transition: border-color .2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--sage); }
input::placeholder, textarea::placeholder { color: var(--muted); }
textarea { resize: vertical; min-height: 100px; line-height: 1.65; }
select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236B6760' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.form-submit { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.btn-submit {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--warm);
  background: var(--dark);
  border: none;
  padding: 14px 20px;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s;
  width: 100%;
}
.btn-submit:hover { background: var(--sage); }
.btn-submit:disabled { opacity: .6; cursor: default; }
.form-note { font-size: 11px; color: var(--muted); line-height: 1.6; text-align: center; font-style: italic; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--dark);
  padding: 4rem 3rem 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 0.5px solid rgba(253,252,249,.08);
}
.footer-logo    { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--cream); margin-bottom: .5rem; }
.footer-tagline { font-size: 12px; color: rgba(253,252,249,.35); letter-spacing: .06em; margin-bottom: 1.5rem; font-style: italic; }
.footer-desc    { font-size: 13px; line-height: 1.75; color: rgba(253,252,249,.4); max-width: 280px; }
.footer-col-title { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: rgba(253,252,249,.3); margin-bottom: 1.25rem; }
.footer-links   { display: flex; flex-direction: column; gap: .6rem; }
.footer-link    { font-size: 13px; color: rgba(253,252,249,.5); text-decoration: none; transition: color .2s; }
.footer-link:hover { color: var(--cream); }
.footer-contact-items { display: flex; flex-direction: column; gap: .75rem; }
.fci {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: 13px;
  color: rgba(253,252,249,.5);
  text-decoration: none;
  transition: color .2s;
}
.fci:hover { color: var(--cream); }
.fci-icon { color: var(--sage-light); font-size: 14px; flex-shrink: 0; }

.social-row { display: flex; gap: .75rem; margin-top: 1.5rem; }
.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 2px;
  border: 0.5px solid rgba(253,252,249,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(253,252,249,.4);
  font-size: 14px;
  text-decoration: none;
  transition: all .2s;
}
.social-btn:hover { border-color: rgba(253,252,249,.35); color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 11px; color: rgba(253,252,249,.2); letter-spacing: .04em; }

.footer-lang { display: flex; gap: .5rem; }
.flang-btn {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(253,252,249,.3);
  background: none;
  border: 0.5px solid rgba(253,252,249,.12);
  padding: 4px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: all .2s;
}
.flang-btn.active,
.flang-btn:hover { color: var(--cream); border-color: rgba(253,252,249,.35); }

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 11px; color: rgba(253,252,249,.2); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: rgba(253,252,249,.5); }

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  h1.hero-title { font-size: 42px; }
  .ideal-grid { grid-template-columns: 1fr 1fr; }
  #zona { gap: 2.5rem; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════ */
@media (max-width: 860px) {
  #navbar { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--warm);
    border-bottom: 0.5px solid var(--border);
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    z-index: 99;
  }

  #hero { grid-template-columns: 1fr; height: auto; }
  .hero-right { height: 300px; }
  .hero-left { padding: 3rem 1.75rem; }
  h1.hero-title { font-size: 38px; }

  #stats { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 0.5px solid var(--border); }

  #ideal { padding: 3.5rem 1.75rem; }
  .ideal-grid { grid-template-columns: 1fr; }

  #destaques { grid-template-columns: 1fr; }
  .feat-img { height: 280px; }
  .feat-content { padding: 3rem 1.75rem; }

  #zona { grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem 1.75rem; }
  .map-frame { height: 280px; }

  #galeria { padding: 3.5rem 1.75rem; }
  .galeria-intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .photo-grid { grid-template-columns: 1fr 1fr; }

  .pga { grid-template-rows: 160px 150px 150px 150px; }
  .pga .pg:nth-child(1) { grid-column:1/3; grid-row:1/2; }
  .pga .pg:nth-child(2) { grid-column:1/2; grid-row:2/3; }
  .pga .pg:nth-child(3) { grid-column:2/3; grid-row:2/3; }
  .pga .pg:nth-child(4) { grid-column:1/2; grid-row:3/4; }
  .pga .pg:nth-child(5) { grid-column:2/3; grid-row:3/4; }
  .pga .pg:nth-child(6) { grid-column:1/3; grid-row:4/5; }

  .pgv { grid-template-rows: repeat(4, 150px); }
  .pgv .pg:nth-child(1) { grid-column:1/3; grid-row:1/2; }
  .pgv .pg:nth-child(2) { grid-column:1/2; grid-row:2/3; }
  .pgv .pg:nth-child(3) { grid-column:2/3; grid-row:2/3; }
  .pgv .pg:nth-child(4) { grid-column:1/2; grid-row:3/4; }
  .pgv .pg:nth-child(5) { grid-column:2/3; grid-row:3/4; }
  .pgv .pg:nth-child(6) { grid-column:1/2; grid-row:4/5; }
  .pgv .pg:nth-child(7) { grid-column:2/3; grid-row:4/5; }

  .pgl { grid-template-rows: 150px 150px 150px; }
  .pgl .pg:nth-child(1) { grid-column:1/3; grid-row:1/2; }
  .pgl .pg:nth-child(2) { grid-column:1/2; grid-row:2/3; }
  .pgl .pg:nth-child(3) { grid-column:2/3; grid-row:2/3; }
  .pgl .pg:nth-child(4) { grid-column:1/3; grid-row:3/4; }

  #disponibilidade { grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem 1.75rem; }

  #cta-final { padding: 4rem 1.75rem; }
  .cta-title { font-size: 34px; }

  #contacto { grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem 1.75rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .cta-contact-strip { gap: 1.5rem; }
}

@media (max-width: 480px) {
  h1.hero-title { font-size: 32px; }
  .cta-title { font-size: 28px; }
  .zona-title, .agosto-title, .contacto-title { font-size: 30px; }
}
