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

:root {
    --green-dark:  #1a2b1e;
    --green-mid:   #2a4030;
    --gold:        #b8955a;
    --gold-light:  #d4aa70;
    --cream:       #f6f1e9;
    --cream-dark:  #ede5d6;
    --text-dark:   #1a1a18;
    --text-mid:    #4a4a42;
    --text-light:  #f5f0e7;
    --white:       #ffffff;
    --radius:      2px;
    --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ─── TYPOGRAPHY ────────────────────────────────────────────────── */
.section-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.section-tag.light { color: var(--gold-light); }

.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--green-dark);
    margin-bottom: 1.5rem;
}
.section-title.light { color: var(--text-light); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-sub {
    font-size: 0.95rem;
    color: var(--text-mid);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--green-dark);
    margin: 1.5rem 0 2rem;
    padding-left: 1.2rem;
    border-left: 2px solid var(--gold);
}
.quote-text.light { color: var(--text-light); border-left-color: var(--gold-light); }

/* ─── BUTTONS ───────────────────────────────────────────────────── */
.btn-primary {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--green-dark);
    padding: 0.85rem 2.2rem;
    border: 1px solid var(--green-dark);
    transition: background var(--transition), color var(--transition);
}
.btn-primary:hover {
    background: var(--gold);
    border-color: var(--gold);
}
.btn-primary.large {
    padding: 1rem 3rem;
    font-size: 0.8rem;
}

/* ─── FADE-IN ───────────────────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.delay { transition-delay: 0.2s; }
.fade-in.visible { opacity: 1; transform: none; }

/* ─── SECTION BASE ──────────────────────────────────────────────── */
.section { padding: 6rem 0; }

/* ─── NAVBAR ────────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.4rem 0;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
    background: rgba(26, 43, 30, 0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
    padding: 0.9rem 0;
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-right: auto;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.nav-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 2.2rem;
}
.nav-links a {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 240, 231, 0.8);
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid rgba(184, 149, 90, 0.6);
    padding: 0.55rem 1.4rem;
    transition: border-color var(--transition), background var(--transition);
    white-space: nowrap;
}
.nav-cta:hover { border-color: var(--gold); background: rgba(184,149,90,0.12); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--white);
    transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── HERO ──────────────────────────────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-img-wrap {
    position: absolute;
    inset: 0;
}
.hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.04);
    animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 25, 16, 0.35) 0%,
        rgba(10, 18, 12, 0.65) 60%,
        rgba(8, 14, 10, 0.82) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 1.5rem;
    animation: fadeUp 1.2s 0.4s both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: none; }
}

.hero-location {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 0 2px 30px rgba(0,0,0,0.4);
    margin-bottom: 1.8rem;
}

.hero-divider {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 1.8rem;
}

.hero-cta {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--cream);
    border-bottom: 1px solid rgba(184,149,90,0.5);
    padding-bottom: 2px;
    transition: color var(--transition), border-color var(--transition);
}
.hero-cta:hover { color: var(--gold-light); border-color: var(--gold-light); }

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(245,240,231,0.6);
    width: 28px;
    animation: bounce 2.5s infinite;
    transition: color var(--transition);
}
.hero-scroll:hover { color: var(--gold-light); }
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─── QUICK FACTS ───────────────────────────────────────────────── */
.quick-facts {
    background: var(--green-dark);
    padding: 1.6rem 2rem;
}
.facts-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.fact {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: rgba(245,240,231,0.85);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.5rem 2.2rem;
}
.fact svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.fact-divider {
    width: 1px;
    height: 28px;
    background: rgba(245,240,231,0.15);
}

/* ─── LA CASA ───────────────────────────────────────────────────── */
.la-casa { background: var(--cream); }

.casa-layout {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    gap: 4rem;
    align-items: center;
}

.casa-text p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: 1rem;
}

/* ─── CAROUSEL ──────────────────────────────────────────────────── */
.carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--green-dark);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.carousel-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.carousel-slide:hover img { transform: scale(1.03); }

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26,43,30,0.7);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.15);
    width: 44px; height: 44px;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: background var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.carousel-btn:hover { background: var(--gold); border-color: var(--gold); }
.carousel-btn.prev { left: 0.75rem; }
.carousel-btn.next { right: 0.75rem; }

.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}
.dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    padding: 0;
}
.dot.active { background: var(--gold); transform: scale(1.3); }

/* Expand icon on casa slides */
.slide-expand {
    position: absolute;
    top: 0.8rem; right: 0.8rem;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
    line-height: 1;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.carousel-slide:hover .slide-expand { opacity: 1; }

/* ─── UBICACIÓN / MAPA ───────────────────────────────────────────── */
.ubicacion { background: var(--cream-dark); padding-bottom: 0; }

.map-wrap {
    width: 100%;
    height: 480px;
    position: relative;
    overflow: hidden;
}
.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(20%) contrast(1.05);
}

/* ─── EL BARRIO ─────────────────────────────────────────────────── */
.el-barrio { padding: 0; overflow: hidden; }

.barrio-hero {
    position: relative;
    height: 70vh;
    min-height: 480px;
    display: flex;
    align-items: center;
}
.barrio-hero-img {
    position: absolute;
    inset: 0;
    object-fit: cover;
}
.barrio-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 20, 12, 0.88) 0%,
        rgba(10, 20, 12, 0.55) 60%,
        rgba(10, 20, 12, 0.2) 100%
    );
}
.barrio-hero-text {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 3rem 3rem 3rem 4rem;
    color: var(--text-light);
}
.barrio-hero-text p {
    font-size: 0.97rem;
    line-height: 1.85;
    color: rgba(245,240,231,0.8);
    margin-bottom: 1rem;
}

.barrio-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 310px;
    gap: 3px;
}
.barrio-grid-item {
    position: relative;
    overflow: hidden;
}
.barrio-grid-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.barrio-grid-item:hover img { transform: scale(1.07); }

/* ─── GALERÍA ───────────────────────────────────────────────────── */
.galeria { background: var(--green-dark); }
.galeria .section-tag { color: var(--gold-light); }
.galeria .section-title { color: var(--text-light); }

.gallery-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.gallery-carousel {
    border-radius: 0;
    width: 100%;
    display: block;
}
.gallery-track {
    display: flex;
    width: 100%;
}
.gallery-track .carousel-slide {
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
    height: 540px;
    aspect-ratio: unset;
}

/* ─── CIERRE ────────────────────────────────────────────────────── */
.cierre {
    position: relative;
    height: 70vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.cierre-img-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.cierre-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.cierre-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,20,12,0.72);
}
.cierre-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 0 1.5rem;
}
.cierre-pre {
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
}
.cierre-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 2.5rem;
}

/* ─── CONTACTO ──────────────────────────────────────────────────── */
.contacto { background: var(--cream); }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.1rem;
    padding: 2.5rem 1.5rem;
    border: 1px solid var(--cream-dark);
    background: var(--white);
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(26,43,30,0.08);
}
.contact-card.whatsapp .contact-icon { color: #25D366; }
.contact-card.featured {
    background: var(--green-dark);
    border-color: var(--green-dark);
}
.contact-card.featured:hover { border-color: var(--gold); }
.contact-card.featured .contact-type,
.contact-card.featured .contact-value { color: var(--text-light); }
.contact-card.featured .contact-icon { color: var(--gold-light); }

.contact-icon {
    width: 42px; height: 42px;
    color: var(--green-dark);
}
.contact-icon svg { width: 100%; height: 100%; }

.contact-info { display: flex; flex-direction: column; gap: 0.3rem; }
.contact-type {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}
.contact-value {
    font-size: 0.88rem;
    color: var(--text-dark);
    word-break: break-all;
}

/* ─── FOOTER ────────────────────────────────────────────────────── */
.footer {
    background: var(--green-dark);
    padding: 3rem 2rem;
    text-align: center;
}
.footer-inner { display: flex; flex-direction: column; gap: 0.6rem; align-items: center; }

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.05em;
}
.footer-location {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245,240,231,0.45);
}
.footer-links {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}
.footer-links a {
    font-size: 0.78rem;
    color: rgba(245,240,231,0.65);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-links span { color: rgba(245,240,231,0.25); font-size: 0.7rem; }
.footer-copy {
    font-size: 0.68rem;
    color: rgba(245,240,231,0.3);
    margin-top: 0.4rem;
}

/* ─── WhatsApp flotante ─────────────────────────────────────────── */
.wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: #111;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.35);
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.wa-float svg { width: 22px; height: 22px; color: var(--white); }
.wa-float:hover {
    background: var(--green-dark);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ─── QUÉ HAY CERCA ─────────────────────────────────────────────── */
.cercas { background: var(--cream); padding-bottom: 0; }

.cercas-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 310px 310px;
    gap: 3px;
    margin-top: 0;
}
.cercas-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.cercas-item.featured {
    grid-row: 1 / 3;
}
.cercas-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.cercas-item:hover img { transform: scale(1.07); }

.cercas-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8,16,10,0.82) 0%,
        rgba(8,16,10,0.1) 55%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.3rem 1.5rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.cercas-item:hover .cercas-overlay { opacity: 1; }

.cercas-label {
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
}
.cercas-plus {
    font-size: 1.8rem;
    font-weight: 100;
    color: var(--gold-light);
    line-height: 1;
    transition: transform 0.3s ease;
}
.cercas-item:hover .cercas-plus { transform: rotate(45deg); }

/* ─── LIGHTBOX ──────────────────────────────────────────────────── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(6, 12, 8, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.lightbox.active {
    opacity: 1;
    pointer-events: all;
}
.lightbox-img-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    max-width: 90vw;
    max-height: 90vh;
}
.lightbox-img-wrap img {
    max-width: 90vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: opacity 0.18s ease;
    box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}
.lightbox-caption {
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(245,240,231,0.5);
    text-align: center;
}
.lightbox-close {
    position: absolute;
    top: 1.5rem; right: 2rem;
    background: none;
    border: none;
    color: rgba(245,240,231,0.6);
    font-size: 2.8rem;
    font-weight: 100;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition);
    z-index: 10;
}
.lightbox-close:hover { color: var(--gold-light); }
.lightbox-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: none;
    border: 1px solid rgba(245,240,231,0.15);
    color: rgba(245,240,231,0.6);
    font-size: 2.2rem;
    width: 52px; height: 52px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: border-color var(--transition), color var(--transition);
    z-index: 10;
}
.lightbox-nav:hover { border-color: var(--gold); color: var(--gold-light); }
.lightbox-nav.prev { left: 1.5rem; }
.lightbox-nav.next { right: 1.5rem; }

/* ─── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .barrio-grid { grid-template-rows: 220px; }
}

@media (max-width: 860px) {
    .casa-layout { grid-template-columns: 1fr; gap: 3rem; }
    .carousel-wrap { order: -1; }
    .barrio-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 220px 220px;
    }
    .gallery-track .carousel-slide { height: 380px; }
    .cercas-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 220px 220px;
    }
    .cercas-item.featured { grid-row: 1 / 2; grid-column: 1 / 3; }
    .lightbox-nav.prev { left: 0.5rem; }
    .lightbox-nav.next { right: 0.5rem; }
}

@media (max-width: 700px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(26,43,30,0.98);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1.2rem;
    }
    .nav-links.open { display: flex; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .navbar { background: rgba(26,43,30,0.9); }

    .facts-inner { gap: 0; }
    .fact { padding: 0.4rem 1rem; font-size: 0.66rem; }
    .fact-divider { height: 20px; }

    .contact-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .contact-card { padding: 1.8rem 1rem; }

    .barrio-hero { height: 80vw; min-height: 320px; }
    .barrio-hero-text { padding: 2rem 1.5rem; }

    .section { padding: 4rem 0; }
    .gallery-track .carousel-slide { aspect-ratio: 4 / 3; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.4rem; }
    .facts-inner { flex-wrap: wrap; justify-content: center; }
    .fact-divider { display: none; }
    .fact { width: 50%; justify-content: center; padding: 0.7rem 0.5rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .barrio-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 180px); }
    .gallery-track .carousel-slide { height: 280px; }
    .cercas-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 220px);
    }
    .cercas-item.featured { grid-row: 1; grid-column: 1; }
    .footer-links { flex-direction: column; gap: 0.4rem; }
    .footer-links span { display: none; }
    .wa-float { bottom: 1.2rem; right: 1.2rem; width: 48px; height: 48px; }
    .wa-float svg { width: 24px; height: 24px; }
}
