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

:root {
    --bg: #F9F8F5;
    --surface: #FFFFFF;
    --text: #111110;
    --muted: #717170;
    --accent: #1B4068;
    --accent-h: #163459;
    --accent-tint: #ECF2FB;
    --border: #E5E3DC;
    --r: 6px;
    --max: 1100px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── NAVBAR ── */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(249, 248, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 62px;
}

.nav-logo {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.02em;
    color: var(--text);
}

.nav-logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.15s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    background: var(--accent);
    color: #fff !important;
    padding: 0.45rem 1.1rem;
    border-radius: var(--r);
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    transition: background 0.15s;
}

.nav-cta:hover {
    background: var(--accent-h) !important;
}

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--text);
}

.mobile-nav {
    display: none;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1rem 24px 1.25rem;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 0.6rem 0;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
    color: var(--accent);
    font-weight: 600;
}

/* ── HERO ── */
.hero {
    padding: 72px 0 0;
    border-bottom: 1px solid var(--border);
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.hero-h1 {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
    max-width: 700px;
    margin-bottom: 1.25rem;
}

.hero-sub {
    font-size: 1.0625rem;
    color: var(--muted);
    max-width: 480px;
    line-height: 1.75;
    margin-bottom: 2.25rem;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 3.5rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--accent);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.7rem 1.6rem;
    border-radius: var(--r);
    transition: background 0.15s;
}

.btn-primary:hover {
    background: var(--accent-h);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--muted);
    border-bottom: 1.5px solid var(--border);
    padding-bottom: 1px;
    transition: color 0.15s, border-color 0.15s;
}

.btn-ghost:hover {
    color: var(--text);
    border-color: var(--text);
}

/* Stats strip */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.stat {
    padding: 1.5rem 1.25rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.3rem;
    color: var(--text);
}

.stat-label {
    font-size: 0.78125rem;
    color: var(--muted);
    font-weight: 400;
    line-height: 1.4;
}

/* ── B2B BAND ── */
.b2b {
    background: var(--accent);
    color: #fff;
    padding: 80px 0;
}

.b2b-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.b2b-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.b2b-h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.b2b-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.b2b-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 2.25rem;
}

.b2b-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.b2b-list li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 12px 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #fff;
    color: var(--accent);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.7rem 1.6rem;
    border-radius: var(--r);
    transition: opacity 0.15s;
}

.btn-white:hover {
    opacity: 0.9;
}

.b2b-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.b2b-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--r);
    padding: 1.5rem;
}

.b2b-card-value {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.b2b-card-label {
    font-size: 0.78125rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

/* ── AMENIDADES ── */
.section {
    padding: 80px 0;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.6rem;
}

.section-h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 0.6rem;
}

.section-sub {
    color: var(--muted);
    font-size: 1rem;
    max-width: 460px;
    line-height: 1.7;
    margin-bottom: 2.75rem;
}

.amenidades-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--border);
    gap: 1px;
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
}

.am-item {
    background: var(--surface);
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.am-icon {
    width: 36px;
    height: 36px;
    background: var(--accent-tint);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.am-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.am-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.am-desc {
    font-size: 0.78125rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ── DEPTOS ── */
.deptos-section {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.deptos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.depto-card {
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    background: var(--surface);
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
}

.depto-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
}

.depto-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: var(--accent-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 500;
    overflow: hidden;
    position: relative;
}

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

.depto-thumb-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.5;
}

.depto-thumb-placeholder svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
}

.depto-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1rem;
}

.depto-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.depto-arrow {
    color: var(--muted);
    font-size: 1rem;
}

/* ── RESEÑAS ── */
.reviews-section {
    padding: 80px 0;
    border-top: 1px solid var(--border);
    background: var(--surface);
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-tint);
    border: 1px solid rgba(27, 64, 104, 0.12);
    border-radius: 100px;
    padding: 0.35rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.rating-badge .stars {
    letter-spacing: 1px;
    color: #F5A623;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.review-card {
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 1.375rem;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.review-meta {
    flex: 1;
}

.review-name {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.3;
}

.review-platform {
    font-size: 0.75rem;
    color: var(--muted);
}

.review-stars {
    color: #F5A623;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.review-text {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.7;
    flex: 1;
}

/* ── MAPA ── */
.map-section {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.map-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
    margin-top: 0.25rem;
}

.map-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted);
}

.map-meta-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    flex-shrink: 0;
    margin-top: 2px;
}

.map-frame {
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
}

.map-frame iframe {
    width: 100%;
    height: 400px;
    display: block;
    border: none;
}

/* ── FOOTER ── */
footer {
    border-top: 1px solid var(--border);
    background: var(--surface);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    padding: 3rem 0 2.5rem;
}

.footer-brand-name {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.footer-brand-name span {
    color: var(--accent);
}

.footer-tagline {
    font-size: 0.8125rem;
    color: var(--muted);
    line-height: 1.6;
}

.footer-col-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 0.875rem;
}

.footer-col a {
    display: block;
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
    transition: color 0.15s;
}

.footer-col a:hover {
    color: var(--text);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 0.78125rem;
    color: var(--muted);
}

/* ── WA FAB ── */
.wa-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
    z-index: 50;
    transition: transform 0.2s;
}

.wa-fab:hover {
    transform: scale(1.07);
}

.wa-fab svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .b2b-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .amenidades-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat:nth-child(2) {
        border-right: none;
    }

    .stat:nth-child(3),
    .stat:nth-child(4) {
        border-bottom: none;
    }

    .amenidades-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .b2b-cards {
        grid-template-columns: 1fr 1fr;
    }
}