@charset "UTF-8";

/* ===================================================
   pinamarmegusta.com.ar — Main Stylesheet
   Palette: Ocean · Sand · Pine
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;1,500&display=swap');

/* ── CSS Custom Properties ─────────────────────────── */
:root {
  --ocean:      #0B2D48;
  --ocean-mid:  #1A4A6E;
  --ocean-light:#2E7CB8;
  --sand:       #D4A853;
  --sand-light: #F0D9A0;
  --pine:       #2D6A4F;
  --pine-light: #52B788;
  --cream:      #F8F5EE;
  --white:      #FFFFFF;
  --dark:       #0D1B2A;
  --gray-100:   #F4F6F8;
  --gray-200:   #E8ECEF;
  --gray-400:   #9BA5B0;
  --gray-600:   #5A6470;

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 12px rgba(11,45,72,.08);
  --shadow-md:  0 8px 32px rgba(11,45,72,.14);
  --shadow-lg:  0 20px 60px rgba(11,45,72,.20);

  --transition: all .35s cubic-bezier(.4,0,.2,1);
  --nav-h:      76px;
}

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

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

body {
  font-family: 'Manrope', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: auto; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Scrollbar ─────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--ocean-light); border-radius: 99px; }

/* ── Typography ────────────────────────────────────── */
h1,h2,h3,h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }
.serif { font-family: 'Playfair Display', serif; }

/* ── Utility classes ───────────────────────────────── */
.container { width: min(1240px, 92%); margin: 0 auto; }
.section-pad { padding: 90px 0; }
.text-ocean   { color: var(--ocean); }
.text-sand    { color: var(--sand); }
.text-pine    { color: var(--pine); }
.text-center  { text-align: center; }
.badge {
  display: inline-block;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .06em;
  padding: .3rem .9rem;
  border-radius: 99px;
  background: var(--sand-light);
  color: var(--ocean);
}
.pill-ocean {
  background: var(--ocean); color: var(--white);
}

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.8rem;
  border-radius: 99px;
  font-family: 'Manrope', sans-serif;
  font-size: .95rem; font-weight: 600;
  border: none; cursor: pointer;
  transition: var(--transition);
}
.btn-primary {
  background: var(--sand);
  color: var(--ocean);
  box-shadow: 0 4px 20px rgba(212,168,83,.4);
}
.btn-primary:hover {
  background: #c09540;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,168,83,.5);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--ocean);
}
.btn-ocean {
  background: var(--ocean);
  color: var(--white);
}
.btn-ocean:hover {
  background: var(--ocean-mid);
  transform: translateY(-2px);
}
.btn-sm { padding: .5rem 1.2rem; font-size: .85rem; }

/* ── Section header ────────────────────────────────── */
.section-header {
  margin-bottom: 52px;
}
.section-header .badge { margin-bottom: 14px; }
.section-header p {
  margin-top: 12px;
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 560px;
}
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 12px auto 0; }

/* ═══════════════════════════════════════════════════
   SITE HEADER & NAVBAR
═══════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  /* Always readable: dark gradient from the top */
  background: linear-gradient(to bottom, rgba(11,45,72,.95) 0%, rgba(11,45,72,.75) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(11,45,72,.98);
  box-shadow: 0 4px 28px rgba(0,0,0,.35);
}

/* Inner wrapper */
.nav-container {
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* ── Logo ───────────────────────────────────────── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--sand) 0%, #c09540 100%);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.logo-words {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}
.logo-name em {
  font-style: normal;
  color: var(--sand);
}
.logo-tagline {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
}

/* ── Desktop nav links ──────────────────────────── */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex: 1;
  justify-content: center;
}
.nav-link {
  position: relative;
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  font-weight: 500;
  padding: .45rem .85rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: color .25s ease, background .25s ease;
}
.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}
.nav-link.active {
  color: var(--sand);
  background: rgba(212,168,83,.12);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 2px;
  background: var(--sand);
  border-radius: 99px;
}

/* ── Right side: CTA + hamburger ───────────────── */
.nav-end {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.btn-publish {
  display: inline-flex;
  align-items: center;
  padding: .5rem 1.2rem;
  background: var(--sand);
  color: var(--ocean);
  font-size: .85rem;
  font-weight: 700;
  border-radius: 99px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .25s ease, transform .25s ease;
  box-shadow: 0 3px 14px rgba(212,168,83,.35);
}
.btn-publish:hover {
  background: #c09540;
  transform: translateY(-1px);
}

/* Hamburger — only shows on mobile */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 4px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger .bar {
  display: block;
  width: 18px; height: 2px;
  background: #fff;
  border-radius: 99px;
  transition: transform .3s ease, opacity .3s ease;
  margin: 0 auto;
}
.hamburger.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Drawer ──────────────────────────────── */
.mobile-drawer {
  display: none; /* hidden by default; JS toggles body class */
}

/* Overlay backdrop */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 950;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
/* Drawer slide panel */
.drawer-panel {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: var(--ocean);
  z-index: 960;
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
/* Open state */
.mobile-drawer.open .drawer-overlay {
  opacity: 1;
  pointer-events: all;
}
.mobile-drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  flex-shrink: 0;
}
.drawer-logo {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.drawer-logo em { font-style: normal; color: var(--sand); }
.drawer-close {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s ease;
}
.drawer-close:hover { background: rgba(255,255,255,.2); }

.drawer-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .2s ease, color .2s ease;
}
.drawer-link span { font-size: 1.25rem; }
.drawer-link:hover,
.drawer-link.active {
  background: rgba(255,255,255,.08);
  color: var(--sand);
}
.drawer-publish {
  display: block;
  margin: 1.5rem;
  padding: .85rem 1.5rem;
  background: var(--sand);
  color: var(--ocean);
  font-weight: 700;
  border-radius: 99px;
  text-align: center;
  text-decoration: none;
  transition: background .25s ease;
}
.drawer-publish:hover { background: #c09540; }

/* ── Nav Dropdown "Información" (desktop) ───────── */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-btn {
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
}
.nav-chevron {
  transition: transform .25s ease;
  opacity: .65;
  flex-shrink: 0;
  display: block;
}
.nav-dropdown:hover .nav-chevron,
.nav-dropdown-btn[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 215px;
  background: #0c3050;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.05);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 600;
}
/* Arrow tip */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 11px; height: 11px;
  background: #0c3050;
  border-left: 1px solid rgba(255,255,255,.13);
  border-top: 1px solid rgba(255,255,255,.13);
}
/* Show on hover */
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Show on aria-expanded (click/touch) */
.nav-dropdown-btn[aria-expanded="true"] ~ .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: .65rem 1rem;
  border-radius: 9px;
  color: rgba(255,255,255,.82);
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .18s ease, color .18s ease;
  white-space: nowrap;
}
.nav-dropdown-item span { font-size: 1.05rem; line-height: 1; }
.nav-dropdown-item:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}
.nav-dropdown-item.active {
  color: var(--sand);
  background: rgba(212,168,83,.15);
}
.nav-dropdown.has-active > .nav-dropdown-btn {
  color: var(--sand);
}
.nav-dropdown.has-active > .nav-dropdown-btn::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 2px;
  background: var(--sand);
  border-radius: 99px;
}

/* ── Drawer group accordion (mobile) ────────────── */
.drawer-group {
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.drawer-group-summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  cursor: pointer;
  user-select: none;
  transition: background .2s ease, color .2s ease;
}
.drawer-group-summary::-webkit-details-marker { display: none; }
.drawer-group-summary:hover { background: rgba(255,255,255,.06); color: var(--sand); }
.drawer-group[open] .drawer-group-summary,
.drawer-group-summary.active { color: var(--sand); }
.dg-icon { font-size: 1.2rem; }
.dg-arrow {
  margin-left: auto;
  font-size: 1rem;
  opacity: .55;
  transition: transform .25s ease;
  display: inline-block;
  line-height: 1;
}
.drawer-group[open] .dg-arrow { transform: rotate(90deg); opacity: 1; }
.drawer-sub {
  padding-left: 3.2rem;
  background: rgba(0,0,0,.15);
  font-size: .93rem;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.drawer-sub:last-of-type { border-bottom: none; }

/* ── Responsive breakpoint ──────────────────────── */
@media (max-width: 900px) {
  .desktop-nav { display: none; }   /* hide desktop links */
  .btn-publish  { display: none; }  /* hide CTA on mobile (in drawer instead) */
  .hamburger    { display: flex; }  /* show hamburger */
  .mobile-drawer { display: block; } /* enable drawer layout */
}


/* ═══════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center; align-items: stretch;
  overflow: visible;
  background: var(--ocean);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero.jpg') center/cover no-repeat;
  opacity: .75;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,45,72,.6) 0%,
    rgba(11,45,72,.35) 50%,
    rgba(46,124,184,.15) 100%
  );
}
.hero-particles {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  animation: float-up linear infinite;
}
@keyframes float-up {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .5; }
  100% { transform: translateY(-10vh) scale(1.2); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 2;
  width: min(1240px, 92%); margin: 0 auto;
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 80px;
  flex: 1;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.hero-eyebrow .line {
  width: 40px; height: 2px;
  background: var(--sand);
}
.hero-eyebrow span {
  color: var(--sand);
  font-size: .85rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--sand);
  font-family: 'Playfair Display', serif;
}
.hero-desc {
  color: rgba(255,255,255,.8);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
}
.hero-stat .num {
  font-size: 1.8rem; font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat .num span { color: var(--sand); }
.hero-stat .lbl {
  font-size: .8rem; font-weight: 400;
  color: rgba(255,255,255,.6);
  text-transform: uppercase; letter-spacing: .06em;
}

/* hero search bar */
.hero-search {
  position: relative; z-index: 3;
  margin-bottom: -50px;
  padding: 0 4%;
}
.hero-search-inner {
  width: min(980px, 100%); margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.1rem 1rem 1.1rem .5rem;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 0;
}
.search-field {
  flex: 1; min-width: 140px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 3px;
  padding: .35rem 1.2rem;
}
.search-field label {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .06em; color: var(--gray-400);
  white-space: nowrap;
}
.search-field select,
.search-field input {
  border: none; outline: none;
  font-family: 'Manrope', sans-serif;
  font-size: .95rem; font-weight: 500;
  color: var(--dark);
  background: transparent;
  width: 100%;
  cursor: pointer;
  -webkit-appearance: auto;
  appearance: auto;
  padding: 0;
}
.search-field input::placeholder { color: var(--gray-400); font-weight: 400; }
.search-divider {
  width: 1px; height: 44px; background: var(--gray-200);
  flex-shrink: 0; align-self: center;
}
.search-btn {
  background: var(--sand);
  color: var(--white);
  border: none; border-radius: 99px;
  padding: .9rem 2.2rem;
  font-family: 'Manrope', sans-serif;
  font-size: .95rem; font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; gap: .5rem;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: .75rem;
  box-shadow: 0 4px 18px rgba(212,168,83,.35);
}
.search-btn:hover {
  background: var(--ocean);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(11,45,72,.3);
}
@media (max-width: 760px) {
  .hero-search { padding: 0 4%; }
  .hero-search-inner {
    flex-direction: column; align-items: stretch;
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.2rem;
    gap: .75rem;
  }
  .search-field { padding: 0; min-width: unset; }
  .search-divider { display: none; }
  .search-btn { width: 100%; justify-content: center; margin-left: 0; }
}

/* ═══════════════════════════════════════════════════
   CATEGORIES SECTION
═══════════════════════════════════════════════════ */
.categories {
  padding: 100px 0 90px;
  background: var(--cream);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cat-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.cat-card:hover img { transform: scale(1.08); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,45,72,.9) 0%, rgba(11,45,72,.2) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.8rem;
  transition: var(--transition);
}
.cat-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius-md);
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin-bottom: 12px;
  transition: var(--transition);
}
.cat-card:hover .cat-icon {
  background: var(--sand);
}
.cat-title {
  color: var(--white);
  font-size: 1.25rem; font-weight: 700;
  margin-bottom: 6px;
}
.cat-count {
  color: rgba(255,255,255,.7);
  font-size: .82rem;
}
.cat-arrow {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--white); font-size: 1rem;
  transition: var(--transition);
  opacity: 0; transform: translateX(-8px);
}
.cat-card:hover .cat-arrow { opacity: 1; transform: translateX(0); }

@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .cat-grid { grid-template-columns: 1fr 1fr; gap: 14px; } }

/* ═══════════════════════════════════════════════════
   FEATURED LISTINGS
═══════════════════════════════════════════════════ */
.featured { background: var(--white); }

.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.listing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}
.listing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.listing-img {
  position: relative;
  height: 220px; overflow: hidden;
}
.listing-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.listing-card:hover .listing-img img { transform: scale(1.06); }
.listing-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--ocean);
  color: var(--white);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .04em;
  padding: .3rem .8rem; border-radius: 99px;
}
.listing-fav {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.listing-fav:hover { transform: scale(1.15); }
.listing-fav.active { color: #e74c3c; }

.listing-body { padding: 1.5rem; }
.listing-cat {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .04em;
  color: var(--ocean-light);
  margin-bottom: 6px;
}
.listing-name {
  font-size: 1.1rem; font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.listing-desc {
  font-size: .88rem;
  color: var(--gray-600);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.listing-meta {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
}
.listing-rating {
  display: flex; align-items: center; gap: 5px;
  font-size: .85rem; font-weight: 600;
}
.stars { color: var(--sand); }
.listing-loc {
  display: flex; align-items: center; gap: 4px;
  font-size: .82rem; color: var(--gray-400);
}
.listing-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--gray-200);
}
.listing-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: .85rem; font-weight: 500;
  color: var(--ocean);
}
.listing-more {
  font-size: .85rem; font-weight: 600;
  color: var(--ocean-light);
  display: flex; align-items: center; gap: 4px;
  transition: var(--transition);
}
.listing-more:hover { color: var(--ocean); gap: 8px; }

@media (max-width: 960px) { .listings-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .listings-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════
   WEATHER WIDGET
═══════════════════════════════════════════════════ */
.weather-section {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-mid) 100%);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.weather-section::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.weather-section::after {
  content: '';
  position: absolute; bottom: -30%; left: -5%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.weather-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.weather-text .section-header { margin-bottom: 24px; }
.weather-text h2 { color: var(--white); }
.weather-text p { color: rgba(255,255,255,.75); }
.weather-text .badge { background: rgba(255,255,255,.15); color: var(--sand); }

.weather-widget {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: var(--white);
}
.weather-current {
  display: flex; align-items: flex-start; gap: 20px;
  margin-bottom: 24px;
}
.weather-icon-main { font-size: 5rem; line-height: 1; }
.weather-temp-main .temp {
  font-size: 4rem; font-weight: 800; line-height: 1;
}
.weather-temp-main .feels-like {
  font-size: .85rem; color: rgba(255,255,255,.65); margin-top: 4px;
}
.weather-temp-main .weather-desc {
  font-size: 1rem; font-weight: 500; margin-top: 6px;
  color: rgba(255,255,255,.9); text-transform: capitalize;
}
.weather-location {
  display: flex; align-items: center; gap: 6px;
  font-size: .82rem; color: rgba(255,255,255,.6);
  margin-bottom: 20px;
}
.weather-details {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-bottom: 24px;
}
.weather-detail {
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: .9rem;
  text-align: center;
}
.weather-detail .d-icon { font-size: 1.4rem; margin-bottom: 4px; }
.weather-detail .d-val {
  font-size: .95rem; font-weight: 700; display: block;
}
.weather-detail .d-lbl {
  font-size: .72rem; color: rgba(255,255,255,.6);
}
.weather-forecast {
  display: flex; gap: 10px; overflow-x: auto;
  scrollbar-width: none;
}
.weather-forecast::-webkit-scrollbar { display: none; }
.forecast-item {
  flex: 0 0 auto;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: .8rem .7rem;
  text-align: center; min-width: 70px;
}
.forecast-item .f-day {
  font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .05em;
  color: rgba(255,255,255,.6);
}
.forecast-item .f-icon { font-size: 1.4rem; margin: 6px 0; }
.forecast-item .f-temp {
  font-size: .9rem; font-weight: 700;
}
.forecast-item .f-min {
  font-size: .75rem; color: rgba(255,255,255,.5);
}
.weather-loading {
  text-align: center; padding: 3rem;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
}
.weather-loading .spinner {
  width: 36px; height: 36px;
  border: 3px solid rgba(255,255,255,.2);
  border-top-color: var(--sand);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  margin: 0 auto 12px;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 860px) {
  .weather-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ═══════════════════════════════════════════════════
   ZONA / BARRIOS — Cards
═══════════════════════════════════════════════════ */
.zones { background: var(--cream); }
.zones-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.zone-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.zone-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.zone-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.zone-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.zone-card:hover .zone-card-img img {
  transform: scale(1.08);
}
.zone-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,45,72,.35) 0%, transparent 60%);
  transition: var(--transition);
}
.zone-card:hover .zone-card-overlay {
  background: linear-gradient(to top, rgba(11,45,72,.5) 0%, transparent 70%);
}
.zone-card-body {
  padding: 1.4rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.zone-card-icon {
  width: 44px; height: 44px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: grid; place-items: center;
  font-size: 1.3rem;
  margin-bottom: 12px;
  margin-top: -38px;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--white);
  transition: var(--transition);
}
.zone-card:hover .zone-card-icon {
  background: var(--sand-light);
}
.zone-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 6px;
  font-family: 'Manrope', sans-serif;
}
.zone-card-desc {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
}
.zone-card-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ocean-light);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.zone-card-link span {
  transition: var(--transition);
}
.zone-card:hover .zone-card-link {
  color: var(--ocean);
  gap: 8px;
}

@media (max-width: 960px) { .zones-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .zones-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }

/* ═══════════════════════════════════════════════════
   PROMO / BANNER CTA
═══════════════════════════════════════════════════ */
.promo-banner {
  background: linear-gradient(120deg, var(--pine) 0%, #1a4a35 100%);
  padding: 70px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.promo-banner::before {
  content: '🌊';
  position: absolute; right: 5%; top: 50%;
  transform: translateY(-50%);
  font-size: 8rem; opacity: .08;
}
.promo-banner h2 { color: var(--white); margin-bottom: 14px; }
.promo-banner p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 32px; }

/* ═══════════════════════════════════════════════════
   EVENTS / SHOWS
═══════════════════════════════════════════════════ */
.events { background: var(--white); }
.events-list {
  display: flex; flex-direction: column; gap: 16px;
}
.event-card {
  display: flex; gap: 24px; align-items: stretch;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.event-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.event-date-col {
  flex: 0 0 90px;
  background: var(--ocean);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 1.2rem .5rem;
  color: var(--white);
}
.event-date-col .e-day { font-size: 2rem; font-weight: 800; line-height: 1; }
.event-date-col .e-month { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--sand); }
.event-body {
  flex: 1; padding: 1.2rem 1rem 1.2rem 0;
  display: flex; flex-direction: column; justify-content: center;
}
.event-type {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .04em;
  color: var(--pine); margin-bottom: 4px;
}
.event-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.event-venue { font-size: .85rem; color: var(--gray-600); display: flex; align-items: center; gap: 5px; }
.event-img-col {
  flex: 0 0 120px; overflow: hidden;
}
.event-img-col img { height: 100%; object-fit: cover; }
.event-actions {
  flex: 0 0 auto;
  display: flex; align-items: center;
  padding: 0 1.5rem;
}

@media (max-width: 640px) {
  .event-img-col { display: none; }
  .event-actions { padding: 0 1rem; }
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .f-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.footer-brand .f-logo .logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--sand), #c09540);
  border-radius: 12px;
  display: grid; place-items: center; font-size: 1.4rem;
}
.footer-brand .f-logo .logo-text {
  font-size: 1.05rem; font-weight: 700; color: var(--white);
}
.footer-brand .f-logo .logo-text span { color: var(--sand); }
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 260px; }
.footer-social {
  display: flex; gap: 10px; margin-top: 20px;
}
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: .95rem;
  transition: var(--transition);
  cursor: pointer;
}
.social-btn:hover { background: var(--sand); color: var(--ocean); }

.footer-col h5 {
  color: var(--white);
  font-size: .85rem; font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .9rem; color: rgba(255,255,255,.6);
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--sand); gap: 10px; }

.footer-contact-item {
  display: flex; gap: 12px;
  margin-bottom: 14px;
  font-size: .9rem;
}
.footer-contact-item .f-icon {
  flex: 0 0 20px; color: var(--sand);
}

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 0;
  font-size: .82rem;
}
.footer-bottom a { color: var(--sand); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 8px; text-align: center; } }

/* ═══════════════════════════════════════════════════
   TOAST / ALERT
═══════════════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  background: var(--ocean);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  transform: translateY(20px); opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ═══════════════════════════════════════════════════
   ANIMATIONS (AOS-like)
═══════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="left"]  { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="left"].visible,
[data-reveal="right"].visible { transform: translateX(0); }

/* Staggered children */
[data-stagger] > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
[data-stagger].visible > *:nth-child(1) { transition-delay: .05s; }
[data-stagger].visible > *:nth-child(2) { transition-delay: .15s; }
[data-stagger].visible > *:nth-child(3) { transition-delay: .25s; }
[data-stagger].visible > *:nth-child(4) { transition-delay: .35s; }
[data-stagger].visible > *:nth-child(n+5) { transition-delay: .45s; }
[data-stagger].visible > * { opacity: 1; transform: translateY(0); }

/* ── Back-to-top ────────────────────────────────── */
#backToTop {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 46px; height: 46px;
  background: var(--ocean);
  color: var(--white); border: none; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.1rem;
  cursor: pointer; box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(20px);
  transition: var(--transition);
}
#backToTop.show { opacity: 1; transform: translateY(0); }
#backToTop:hover { background: var(--ocean-mid); transform: translateY(-4px); }

