/* =============================================
   BAR ENTREAMIGOS — THE MIDNIGHT SOMMELIER v3.0
   ============================================= */

:root {
    --primary: #ffb68d;
    --primary-dark: #d9834e;
    --gold: #eebd8e;
    --surface: #0e1012;
    --surface-low: #161819;
    --surface-mid: #1e2023;
    --surface-highest: #2a2d31;
    --on-surface: #e8e8ec;
    --text-white: #e8e8ec;
    --text-muted: #9a9aa4;
    --border-color: rgba(255,182,141,0.12);
    --glow: rgba(255,182,141,0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Manrope', sans-serif;
    background: var(--surface);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Noise texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(255,182,141,0.4); }
    70% { box-shadow: 0 0 0 18px rgba(255,182,141,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,182,141,0); }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.fade-in { animation: fadeInUp 0.8s ease forwards; }
.fade-in-right { animation: fadeInRight 0.8s ease 0.2s forwards; opacity: 0; }

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== URGENCY BAR ===== */
.urgency-bar {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-dark));
    background-size: 200% auto;
    animation: shimmer 4s linear infinite;
    color: var(--surface);
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    position: relative;
    z-index: 101;
}
.urgency-bar a {
    color: var(--surface);
    font-weight: 800;
    text-decoration: underline;
}
.urgency-bar i { margin-right: 0.4rem; }

/* ===== NAV ===== */
.floating-nav {
    position: fixed;
    top: 34px;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(14,16,18,0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    transition: top 0.3s ease, background 0.3s ease;
}
.floating-nav.scrolled {
    top: 0;
    background: rgba(14,16,18,0.95);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    font-family: 'Noto Serif', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}
.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}
.nav-menu a:hover { color: var(--primary); }
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}
.nav-menu a:hover::after { width: 100%; }

.nav-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--surface) !important;
    text-decoration: none !important;
    padding: 0.55rem 1.3rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 100px;
    white-space: nowrap;
    transition: all 0.3s ease;
    animation: pulse-ring 2.5s infinite;
    box-shadow: 0 4px 15px rgba(255,182,141,0.2), inset 0 1px 0 rgba(255,255,255,0.15);
}
.nav-call-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 30px rgba(255,182,141,0.35);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    display: block;
}

/* ===== WHATSAPP ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.9rem;
    z-index: 99;
    box-shadow: 0 8px 30px rgba(37,211,102,0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-ring 2.5s infinite;
}
.whatsapp-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 15px 40px rgba(37,211,102,0.5);
}
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: var(--surface-mid);
    color: var(--text-white);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border: 1px solid var(--border-color);
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

/* ===== MOBILE STICKY BAR ===== */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 98;
    background: var(--surface-mid);
    border-top: 1px solid var(--border-color);
    padding: 0.6rem 0.5rem;
    gap: 0.5rem;
}
.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 0.5rem;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: all 0.2s ease;
}
.sticky-call { background: var(--surface-highest); color: var(--text-white); }
.sticky-whatsapp { background: #25D366; color: #fff; }
.sticky-reserve { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--surface); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.9rem 2rem;
    text-decoration: none !important;
    font-weight: 700;
    border: none;
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 0.88rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    opacity: 0;
    transition: opacity 0.2s ease;
    border-radius: inherit;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--surface) !important;
    box-shadow: 0 4px 20px rgba(255,182,141,0.2), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255,182,141,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-call {
    background: rgba(255,255,255,0.06) !important;
    color: var(--text-white) !important;
    border: 1.5px solid rgba(255,255,255,0.15) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn-call:hover {
    background: rgba(255,182,141,0.1) !important;
    border-color: rgba(255,182,141,0.5) !important;
    color: var(--primary) !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255,182,141,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
}

.btn-secondary {
    background: transparent !important;
    color: var(--primary) !important;
    border: 1.5px solid rgba(255,182,141,0.35) !important;
}
.btn-secondary:hover {
    border-color: var(--primary) !important;
    background: rgba(255,182,141,0.07) !important;
    transform: translateY(-2px);
}

.btn-white {
    background: rgba(14,16,18,0.9) !important;
    color: var(--primary) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.btn-white:hover {
    background: var(--surface-mid) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.btn-outline-white {
    background: rgba(255,255,255,0.06) !important;
    color: #fff !important;
    border: 1.5px solid rgba(255,255,255,0.3) !important;
}
.btn-outline-white:hover {
    border-color: rgba(255,255,255,0.7) !important;
    background: rgba(255,255,255,0.1) !important;
}

.btn-large { padding: 1rem 2.5rem; font-size: 0.92rem; }
.btn-full { width: 100%; border-radius: 12px; }

/* ===== HERO ===== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    padding: 4.5rem 3rem 3rem;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,182,141,0.08);
    border: 1px solid var(--border-color);
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}
.hero-badge .stars { color: var(--gold); letter-spacing: 2px; }

.hero-title {
    font-family: 'Noto Serif', serif;
    font-size: clamp(1.7rem, 2.8vw, 2.8rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 0.8rem;
    letter-spacing: -0.03em;
    color: var(--text-white);
}

.hero-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.65;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.hero-note i { color: var(--primary); }

.hero-image {
    position: relative;
    height: 620px;
    overflow: hidden;
    border-radius: 2px;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
}
.hero-image:hover img { transform: scale(1.04); }
.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14,16,18,0.3) 0%, transparent 60%);
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--surface-low);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 2rem;
    overflow: hidden;
}
.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    text-transform: uppercase;
}
.trust-item i { color: var(--primary); font-size: 0.9rem; }
.trust-divider {
    width: 1px;
    height: 16px;
    background: var(--border-color);
}

/* ===== SECTION COMMONS ===== */
.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.8rem;
    display: block;
}
.section-header { margin-bottom: 4rem; }
.section-header.centered { text-align: center; }
.section-title {
    font-family: 'Noto Serif', serif;
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ===== COCINA ===== */
.cocina {
    padding: 7rem 3rem;
    background: var(--surface-low);
}
.cocina .section-header { text-align: center; }
.cocina-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}
.cocina-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}
.cocina-item:hover { transform: translateY(-6px); }
.cocina-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: 2px;
}
.cocina-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.cocina-item:hover .cocina-image img { transform: scale(1.06); }
.cocina-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}
.cocina-label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    border: 1px solid rgba(255,182,141,0.5);
    padding: 0.3rem 0.7rem;
    border-radius: 1px;
}
.cocina-text h3 {
    font-family: 'Noto Serif', serif;
    font-size: 1.45rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.cocina-text p { color: var(--text-muted); font-size: 0.95rem; }
.cocina-cta {
    text-align: center;
    margin-top: 3.5rem;
}

/* ===== CTA BAND ===== */
.cta-band {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--gold) 100%);
    padding: 5rem 3rem;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
}
.cta-band-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
}
.cta-band-text h2 {
    font-family: 'Noto Serif', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--surface);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}
.cta-band-text p {
    font-size: 1.05rem;
    color: rgba(14,16,18,0.75);
    font-weight: 500;
}
.cta-band-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== EVENTOS ===== */
.eventos {
    padding: 7rem 3rem;
    background: var(--surface);
}
.eventos-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}
.eventos-text .section-title { text-align: left; }
.eventos-description {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 1.5rem 0;
    line-height: 1.8;
}
.eventos-cta { color: var(--text-white); font-weight: 500; margin: 1rem 0; }
.social-inline {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.social-link {
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
}
.social-link:hover { transform: translateX(5px); }
.eventos-image {
    height: 520px;
    overflow: hidden;
    border-radius: 2px;
}
.eventos-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.eventos-image:hover img { transform: scale(1.04); }

/* ===== POSTRES ===== */
.postres {
    padding: 7rem 3rem;
    background: var(--surface-low);
}
.postres-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.postre-card {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: var(--surface-mid);
    border: 1px solid var(--border-color);
    overflow: hidden;
    border-radius: 2px;
}
.postre-image {
    width: 300px;
    min-width: 300px;
    height: 220px;
    overflow: hidden;
}
.postre-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.postre-card:hover .postre-image img { transform: scale(1.05); }
.postre-content {
    padding: 1.5rem 2rem 1.5rem 0;
}
.postre-content h3 {
    font-family: 'Noto Serif', serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}
.postre-content p { color: var(--text-muted); }
.postres-text {
    text-align: center;
    padding: 2.5rem;
    background: var(--surface);
    border-left: 3px solid var(--primary);
    max-width: 800px;
    margin: 2rem auto 0;
}
.postres-text p {
    color: var(--text-muted);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ===== RESEÑAS ===== */
.resenas {
    padding: 7rem 3rem;
    background: var(--surface);
}
.resenas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}
.resena-card {
    background: var(--surface-low);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 2px;
}
.resena-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,182,141,0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,182,141,0.1);
}
.resena-stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 3px;
}
.resena-texto {
    font-family: 'Noto Serif', serif;
    font-size: 0.98rem;
    line-height: 1.9;
    color: var(--text-white);
    flex: 1;
    font-style: italic;
}
.resena-autor {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border-color);
}
.resena-nombre {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}
.resena-badge {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.resenas-cta {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== RESERVAS ===== */
.reservas {
    padding: 7rem 3rem;
    background: var(--surface-low);
}
.reservas-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    max-width: 1300px;
    margin: 0 auto;
}
.reservas-subtitle {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.reservas-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}
.form-group {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--border-color);
    padding: 0.75rem 0;
    color: var(--text-white);
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--primary);
}
.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group select:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:not(:placeholder-shown) ~ label {
    transform: translateY(-1.5rem);
    font-size: 0.75rem;
    color: var(--primary);
}
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: all 0.3s ease;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.form-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
}
.form-note a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
.form-note a:hover { color: var(--primary-dark); }

.reservas-image {
    position: relative;
    height: 650px;
    overflow: hidden;
    border-radius: 2px;
}
.reservas-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.reservas-image-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(14,16,18,0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 1.2rem 1.5rem;
    border-radius: 2px;
}
.ric-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 0.4rem; }
.reservas-image-card p {
    font-family: 'Noto Serif', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-white);
    margin-bottom: 0.3rem;
}
.reservas-image-card span { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.05em; }

/* ===== CONTACTO ===== */
.contacto {
    padding: 7rem 3rem;
    background: var(--surface);
}
.contacto-container { max-width: 1300px; margin: 0 auto; }
.contacto-header { margin-bottom: 4rem; }
.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contacto-mapa {
    height: 420px;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.info-block { display: flex; flex-direction: column; gap: 0.75rem; }
.info-block h3 {
    font-family: 'Noto Serif', serif;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-white);
}
.info-block h3 i { color: var(--primary); }
.info-block p { color: var(--text-muted); line-height: 1.7; }
.info-block ul { list-style: none; color: var(--text-muted); }
.info-block li { margin-bottom: 0.4rem; }
.info-block li strong { color: var(--text-white); }
.contact-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.social-links { display: flex; gap: 0.8rem; }
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255,182,141,0.08);
    border: 1px solid var(--border-color);
    border-radius: 2px;
    color: var(--primary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-icon:hover {
    background: rgba(255,182,141,0.15);
    transform: translateY(-3px);
    border-color: var(--primary);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--surface-low);
    border-top: 1px solid var(--border-color);
    padding: 4rem 3rem 1.5rem;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}
.footer-section h4 {
    font-family: 'Noto Serif', serif;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: var(--primary);
    letter-spacing: -0.01em;
}
.footer-section p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 0.4rem;
    line-height: 1.7;
}
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.5rem; }
.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s ease;
}
.footer-section a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,182,141,0.07);
    border: 1px solid var(--border-color);
    border-radius: 2px;
    color: var(--primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background: rgba(255,182,141,0.15);
    transform: translateY(-2px);
}
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
    max-width: 1300px;
    margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-menu { gap: 1.2rem; }
    .cocina-grid { grid-template-columns: 1fr 1fr; }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .urgency-bar { font-size: 0.78rem; }

    .floating-nav { top: 30px; }
    .floating-nav.scrolled { top: 0; }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(14,16,18,0.98);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1.2rem;
        border-bottom: 1px solid var(--border-color);
    }
    .nav-menu.open { display: flex; }
    .nav-toggle { display: flex; }
    .nav-call-btn { display: none; }

    .whatsapp-btn { display: none; }
    .mobile-sticky-bar { display: flex; }

    .hero {
        grid-template-columns: 1fr;
        padding: 7rem 1.5rem 3rem;
        gap: 2.5rem;
        min-height: auto;
    }
    .hero-title { font-size: 2rem; }
    .hero-image { height: 300px; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; justify-content: center; }

    .trust-bar-inner { gap: 1rem; }
    .trust-divider { display: none; }

    .cocina { padding: 4rem 1.5rem; }
    .cocina-grid { grid-template-columns: 1fr; }

    .cta-band { padding: 3.5rem 1.5rem; }
    .cta-band-content { flex-direction: column; text-align: center; gap: 2rem; }
    .cta-band-actions { justify-content: center; }

    .eventos { padding: 4rem 1.5rem; }
    .eventos-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .eventos-image { height: 280px; order: -1; }

    .postres { padding: 4rem 1.5rem; }
    .postre-card { flex-direction: column; }
    .postre-image { width: 100%; min-width: unset; height: 200px; }
    .postre-content { padding: 1.5rem; }

    .resenas { padding: 4rem 1.5rem; }
    .resenas-grid { grid-template-columns: 1fr; }

    .reservas { padding: 4rem 1.5rem; }
    .reservas-container { grid-template-columns: 1fr; gap: 3rem; }
    .reservas-image { height: 320px; }
    .form-row { grid-template-columns: 1fr; }

    .contacto { padding: 4rem 1.5rem; }
    .contacto-grid { grid-template-columns: 1fr; }

    .footer { padding: 3rem 1.5rem 5rem; }
    .footer-content { grid-template-columns: 1fr 1fr; }

    .section-title { font-size: 1.8rem; }
    .btn-large { padding: 0.9rem 1.8rem; font-size: 0.88rem; }
}

@media (max-width: 480px) {
    .footer-content { grid-template-columns: 1fr; }
    .trust-bar-inner { flex-direction: column; gap: 0.5rem; }
}

/* ===== CARTA BAND ===== */
.carta-band {
    padding: 4rem 2rem;
    background: var(--surface-2);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.carta-band-inner {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.carta-band-text { flex: 1; }

.carta-band-title {
    font-family: 'Noto Serif', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--text-white);
    margin: 0.4rem 0 0.6rem;
    line-height: 1.2;
}

.carta-band-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 420px;
}

.carta-band-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .carta-band-inner {
        flex-direction: column;
        text-align: center;
    }
    .carta-band-sub { max-width: 100%; }
    .carta-band-btn { width: 100%; justify-content: center; }
}
