* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
    background: #f5f5f7;
    color: #111;
}

/* NAV SUPERIOR */
.top-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(245,245,247,0.9);
    backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    padding: 10px 18px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.menu-btn {
    border: none;
    background: transparent;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.menu-btn span {
    width: 20px;
    height: 2px;
    background: #111;
    border-radius: 999px;
    transition: 0.3s;
}

/* Animación del botón (X) */
.menu-btn.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.menu-btn.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.brand {
    display: flex;
    align-items: center;
    margin-left: 12px;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007aff, #34c759);
}

.brand-name {
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* OVERLAY */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.25);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1400;
}

.overlay.show {
    opacity: 1;
    pointer-events: auto;
}

/* DRAWER */
.drawer {
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 0 30px rgba(0,0,0,0.08);
    padding: 24px 18px;
    transition: left 0.35s ease;
    z-index: 1500;
}

.drawer.open {
    left: 0;
}

.drawer-header h2 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.drawer-header p {
    margin: 4px 0 16px;
    font-size: 0.9rem;
    color: #555;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.drawer-links a {
    text-decoration: none;
    color: #111;
    padding: 8px 0;
    font-size: 0.98rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: 0.2s;
}

.drawer-links a:hover {
    color: #007aff;
    transform: translateX(4px);
}

/* HERO */
.hero {
    padding: 60px 18px 40px;
    display: flex;
    justify-content: center;
}

.hero-inner {
    max-width: 900px;
    text-align: center;
    animation: heroFade 0.9s ease-out;
}

@keyframes heroFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.hero-sub {
    font-size: 1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* SECCIONES */
.section {
    padding: 32px 18px;
    max-width: 1100px;
    margin: 0 auto;
}

.section h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.section p {
    font-size: 0.98rem;
    color: #444;
    line-height: 1.6;
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.section-sub {
    margin-bottom: 20px;
}

/* CARDS */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 10px;
}

.card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.08);
}

.card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.card-info {
    padding: 14px 16px 16px;
}

.card-title {
    font-size: 0.98rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.precio {
    font-weight: 600;
    color: #111;
    font-size: 0.98rem;
}

.btn-reservar {
    border: none;
    background: #007aff;
    color: #fff;
    font-size: 0.86rem;
    padding: 7px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.btn-reservar:hover {
    background: #0059c9;
    transform: translateY(-1px);
}

/* FOOTER */
footer {
    padding: 18px;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-top: 30px;
}