/* ═══════════════════════════════════════════════════════
   DACOSTA — Reservas Page
   ═══════════════════════════════════════════════════════ */

.dc-reservas-page {
    padding-top: 80px; /* clear fixed header */
}

/* Hero */
.dc-reservas__hero {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(40px, 7vw, 80px) clamp(16px, 4vw, 40px) 30px;
}

.dc-reservas__hero .dc-section-tag {
    margin-bottom: 18px;
}

.dc-reservas__title {
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 14px;
}

.dc-reservas__subtitle {
    font-size: 15px;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto;
}

.dc-reservas__subtitle--detail {
    max-width: 640px;
    font-size: 13px;
    line-height: 1.6;
    margin-top: 12px;
}

/* Booking Section */
.dc-reservas__booking-section {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px) 40px;
}

.dc-reservas__booking-wrap {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: clamp(20px, 4vw, 40px);
}

/* Info cards */
.dc-reservas__info {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px) clamp(50px, 8vw, 80px);
}

.dc-reservas__info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.dc-reservas__info-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.dc-reservas__info-icon {
    font-size: 28px;
    color: var(--brand);
    margin-bottom: 4px;
}

.dc-reservas__info-card h3 {
    font-size: 15px;
    margin: 0;
}

.dc-reservas__info-card p {
    font-size: 12px;
    color: var(--muted);
    margin: 0 0 8px;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .dc-reservas__info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .dc-reservas__info-grid { grid-template-columns: 1fr; }
}
