/* RESET + BASE */
* {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    min-height: 100%;
}

html {
    scroll-behavior: smooth;
}

*:focus-visible {
    outline: 2px solid #c50101;
    outline-offset: 3px;
}

body {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding-top: 100px;
    font-family: 'Poppins', sans-serif;
    overflow-x: clip;
    color: #222;
}

main {
    flex: 1;
}

/* HEADER */
header {
    background: linear-gradient(
        to bottom,
        #f5e4ce,
        #ffffff
    );

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    transition: background 0.45s ease, box-shadow 0.45s ease;
}

/* ── HERO MODE: header transparente sobre el banner ── */
header.hero-mode {
    background: linear-gradient(to bottom, rgba(0,0,0,0.42), transparent);
    box-shadow: none;
}

@media (min-width: 769px) {
    header.hero-mode nav a {
        color: #fff;
    }

    header.hero-mode nav a.active {
        border-bottom-color: rgba(255, 255, 255, 0.75);
    }
}

header.hero-mode .lang-btn {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
}

header.hero-mode .lang-btn svg {
    stroke: #fff;
}

header.hero-mode .hamburger span {
    background: #fff;
}

/* Header brand (logo + phone side by side) */
.header-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Header phone */
.header-phone {
    font-size: 0.95rem;
    font-weight: 700;
    color: #c50101;
    text-decoration: none;
    letter-spacing: 0.01em;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.header-phone:hover {
    opacity: 0.75;
}
header.hero-mode .header-phone {
    color: #fff;
}

/* Logo */
.logo {
    height: 80px;
    width: auto;
    cursor: pointer;
}

/* NAV */
nav {
    display: flex;
    align-items: center;
    gap: 70px;
}

@media (min-width: 769px) {
    nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

nav a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

nav a:hover {
    opacity: 0.7;
}

nav a.active {
    border-bottom: 2px solid #000;
    pointer-events: none;
    cursor: default;
}

/* GRUPO DERECHO DEL HEADER (status + lang + reservar) */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* ── HEADER STATUS INDICATOR ── */
.header-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #444;
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.08);
}

header.hero-mode .header-status {
    color: rgba(255,255,255,0.88);
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-dot.open {
    background: #22c55e;
    box-shadow: 0 0 0 2px rgba(34,197,94,0.25);
}

.status-dot.closed {
    background: #ef4444;
    box-shadow: 0 0 0 2px rgba(239,68,68,0.25);
}

/* ══════════════════════════════════════════════
   BUTTON SYSTEM
═══════════════════════════════════════════════ */

/* Primary: red filled pill */
.btn-primary {
    background: #c50101;
    color: #fff;
    border: 2px solid #c50101;
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    transition: 0.3s;
    cursor: pointer;
}

.btn-primary:hover {
    background: #990808;
    border-color: #990808;
    transform: scale(1.04);
}

/* Secondary: transparent with border */
.btn-secondary {
    background: transparent;
    color: #c50101;
    border: 2px solid #c50101;
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(197,1,1,0.06);
    transform: scale(1.04);
}

/* On dark backgrounds: secondary becomes white-outlined */
.home-banner .btn-secondary,
.home-schedule .btn-secondary,
.home-about .btn-secondary,
.home-menu-banner .btn-secondary,
.menu-recipes .btn-secondary,
.menu-features .btn-secondary {
    color: #fff;
    border-color: rgba(255,255,255,0.7);
}

/* CTA inline link (secondary-style text link) */
.cta-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
    opacity: 0.75;
    transition: opacity 0.2s;
    margin-top: 12px;
}

.cta-link:hover {
    opacity: 1;
}

.home-menu-banner .cta-link,
.menu-cta .cta-link {
    color: rgba(255,255,255,0.85);
}

/* BOTÓN NAV — matches btn-primary */
.nav-btn {
    background: #c50101;
    color: #fff;
    border: 2px solid #c50101;
    border-radius: 50px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    transition: 0.3s;
    cursor: pointer;
}

.nav-btn:hover {
    background: #990808;
    border-color: #990808;
    transform: scale(1.04);
}

/* BANNER */
.home-banner {
    height: 100vh;
    margin-top: -100px;
    position: relative;
    display: flex;
    align-items: center;
}

.home-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.home-banner-content {
    color: white;
    margin-left: clamp(20px, 4vw, 60px);
    max-width: clamp(280px, 34vw, 500px);
    animation: fadeInUp 0.9s ease forwards;
    position: relative;
    z-index: 3;
}

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

.home-banner-subtitle {
    font-size: clamp(10px, 0.9vw, 13px);
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 12px 0;
}

.home-banner-title {
    font-size: clamp(24px, 3.2vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.15;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

/* FOOTER */
footer {
    background-color: #f7f3ee;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 60px;
    gap: 40px;
    border-top: 3px solid #c50101;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.08);
}

.footer-left {
    display: flex;
    gap: 20px;
}

.footer-logo {
    height: 70px;
    width: auto;
}

.footer-info p {
    margin: 5px 0;
    font-size: 14px;
}

/* HORARIO FOOTER */
.footer-schedule {
    display: flex;
    gap: 40px;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
}

.footer-right {
    text-align: center;
}

.schedule-block {
    max-width: 180px;
}

.schedule-block p {
    margin: 3px 0;
    font-size: 14px;
}

/* CRÉDITO FOOTER */
.footer-credit {
    width: 100%;
    text-align: center;
    padding-top: 20px;
    margin-top: 8px;
    border-top: 1px solid rgba(0,0,0,0.12);
    font-size: 13px;
    color: #444;
    font-weight: 500;
}

.footer-credit a {
    color: #c50101;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-credit a:hover {
    opacity: 0.75;
}

.footer-sep {
    color: #ccc;
    margin: 0 10px;
    font-size: 13px;
}

.legal-link {
    color: #888;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-link:hover {
    color: #c50101;
    text-decoration: underline;
}

/* LEGAL MODAL */
.legal-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.legal-modal-overlay.active {
    display: flex;
}

.legal-modal-box {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px 28px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: legalFadeIn 0.25s ease;
}

@keyframes legalFadeIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.legal-modal-box p {
    font-size: 15px;
    color: #333;
    margin: 0 0 20px;
    line-height: 1.5;
}

.legal-modal-box button {
    background: #c50101;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.legal-modal-box button:hover {
    background: #a10000;
    transform: translateY(-1px);
}

/* REDES SOCIALES */
.contact-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.social-btn {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-btn img {
    width: 28px;
    height: 28px;
}

.social-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* CONTACT MAIN */
.contact-main {
    padding: 50px 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* TOP */
.contact-top {
    display: flex;
    gap: 60px;
}

/* CARDS */
.contact-form-box,
.contact-schedule-box {
    flex: 1;
    padding: 30px;
    border-radius: 20px;
    margin: 20px 0 80px 0;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-schedule-box {
    display: flex;
    flex-direction: column;
}

/* TITLES */
.contact-form h2,
.contact-schedule-box h2 {
    text-align: center;
    color: #c50101;
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 600;
}

/* FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-form label {
    font-size: 13px;
    font-weight: 500;
    color: #666;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form textarea {
    resize: none;
    overflow: hidden;
    min-height: 48px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #c50101;
    box-shadow: 0 0 0 3px rgba(197, 1, 1, 0.1);
    outline: none;
}

/* LEGAL CHECKBOX */
.form-legal {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #f9f6f2;
    border-radius: 10px;
    padding: 12px 14px;
    margin-top: 4px;
}

.form-legal input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #c50101;
    pointer-events: none;
    cursor: not-allowed;
}

.form-legal label {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    cursor: default;
    font-weight: 400;
}

/* BOTÓN FORM */
.contact-form button {
    background-color: #c50101;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
}

.contact-form button:hover {
    background-color: #990808;
    transform: scale(1.05);
}

.form-field-hint {
    font-size: 12px;
    color: rgba(100,100,100,0.85);
    margin: 6px 0 0;
    line-height: 1.4;
}
.form-field-hint a {
    color: #c50101;
    text-decoration: none;
}
.form-field-hint a:hover { text-decoration: underline; }

.contact-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}
.contact-form select:focus { border-color: #c50101; }

.reserva-msg {
    display: none;
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}
.reserva-msg.success {
    display: block;
    background: rgba(34,197,94,0.12);
    border: 1px solid rgba(34,197,94,0.3);
    color: #16a34a;
}
.reserva-msg.error {
    display: block;
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.3);
    color: #dc2626;
}

/* MAPA EN SIDEBAR */
.contact-sidebar-map {
    width: 100%;
    flex: 1;
    min-height: 200px;
    border-radius: 14px;
    border: none;
    margin-top: 20px;
    display: block;
}

/* Fecha + hora en línea */
.date-time-group {
    display: flex;
    gap: 10px;
}

.date-time-group .form-group {
    flex: 1;
}

.date-time-group input,
.date-time-group select {
    height: 45px;
    box-sizing: border-box;
}

/* SECCIÓN SOBRE EL RESTAURANTE */
.home-about {
    background: linear-gradient(135deg, #c50101, #8b0000);
    padding: 80px 40px;
    color: white;
}

.home-about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.home-about-text {
    flex: 1;
}

.home-about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 18px;
}

.home-about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.home-about-text p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    opacity: 0.95;
}

/* Platos destacados */
.dish {
    background: rgba(255, 255, 255, 0.2);
    padding: 1px 9px;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
}

/* Parking badge (about section) */
.parking-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    margin-top: 12px;
    border-left: 3px solid #c50101;
    padding-left: 10px;
}

/* Parking link (contact section) */
.parking-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #c50101;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    background: rgba(197,1,1,0.06);
    border: 1px solid rgba(197,1,1,0.15);
    border-radius: 8px;
    padding: 7px 12px;
    margin-top: 6px;
    transition: background 0.2s;
}

.parking-link:hover {
    background: rgba(197,1,1,0.12);
}

/* ── CARRUSEL HOME (manual con botones) ── */
.home-about-carousel-wrapper {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.home-about-carousel {
    position: relative;
    width: 100%;
    max-height: 450px;
    overflow: hidden;
    border-radius: 20px;
}

.about-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.about-carousel-img {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 20px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s;
}

.carousel-btn.prev {
    left: 15px;
}

.carousel-btn.next {
    right: 15px;
}

.carousel-btn:hover {
    background: rgba(0,0,0,0.8);
}

/* Dots del carrusel */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.dot.active {
    background: #fff;
    transform: scale(1.35);
}

/* SECCIÓN MENÚ BANNER */
.home-menu-banner {
    height: 300px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-menu-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url("images/collage.webp") repeat-x;
    background-size: contain;
    animation: scrollBackground 20s linear infinite;
    z-index: 0;
}

@keyframes scrollBackground {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.home-menu-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.home-menu-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.home-menu-eyebrow {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}

/* SECCIÓN HORARIO HOME */
.home-schedule {
    background: linear-gradient(135deg, #c50101, #8b0000);
    padding: 70px 40px;
    color: white;
    text-align: center;
}

.home-schedule-container {
    max-width: 960px;
    margin: 0 auto;
}

.home-schedule h2 {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 30px;
}

.home-schedule-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.home-schedule-item {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    transition: background 0.25s, transform 0.25s;
}

.home-schedule-item:hover {
    background: rgba(255,255,255,0.17);
    transform: translateY(-3px);
}

/* Nombre del día */
.schedule-day {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    margin: 0 0 12px 0;
}

/* ── SEPARADOR SECCIÓN ── */
/* ═══ CTA RESERVA ═══ */
.home-reserve-cta {
    background: #c50101;
    padding: 80px 24px;
    text-align: center;
}

.home-reserve-cta-inner {
    max-width: 680px;
    margin: 0 auto;
}

.reserve-cta-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin: 0 0 12px;
}

.reserve-cta-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.15;
}

.reserve-cta-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin: 0 0 36px;
    line-height: 1.6;
}

.reserve-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.reserve-cta-btn-primary {
    background: #fff;
    color: #c50101;
    padding: 15px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.reserve-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

.reserve-cta-btn-secondary {
    background: transparent;
    color: #fff;
    padding: 15px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.5);
    transition: border-color 0.2s, background 0.2s;
}
.reserve-cta-btn-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .reserve-cta-title { font-size: 30px; }
    .home-reserve-cta { padding: 60px 20px; }
}

.separador {
    background: #c50101;
    height: 5px;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    line-height: 0;
    font-size: 0;
}

/* Línea separadora */
.schedule-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.18);
    margin-bottom: 16px;
}

/* Contenedor de horas */
.schedule-hours {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

/* Badge "Cerrado" */
.schedule-closed-badge {
    display: inline-block;
    align-self: center;
    color: rgba(255,200,200,0.9);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Fila etiqueta + hora */
.schedule-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.slot-label {
    font-size: 10px;
    color: rgba(255,255,255,0.48);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.slot-time {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
    font-variant-numeric: tabular-nums;
}

/* SECCIÓN CONTACTO HOME */
.home-contact {
    padding: 80px 40px;
    background: #f9f6f2;
}

.home-contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.home-contact-map {
    flex: 1;
}

.home-contact-map iframe {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    border: none;
}

.home-contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.home-social {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.home-contact-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-contact-text h3 {
    font-size: 22px;
    color: #c50101;
    margin-bottom: 10px;
    font-weight: 600;
}

.home-contact-text p {
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
}

/* ── MODAL PDF ── */
.pdf-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pdf-modal-overlay.active {
    display: flex;
}

.pdf-modal-box {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    width: 92vw;
    max-width: 960px;
    height: 88vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
    animation: modalIn 0.22s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(16px); }
    to   { opacity: 1; transform: scale(1)    translateY(0); }
}

.pdf-modal-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #f5e4ce;
    border-bottom: 1px solid #e4cdb0;
    flex-shrink: 0;
    gap: 12px;
}

.pdf-modal-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #2c1810;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pdf-modal-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.pdf-modal-download {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #c71f1f;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.pdf-modal-download:hover {
    background: #a51a1a;
}

.pdf-modal-close {
    background: none;
    border: 1.5px solid rgba(44, 24, 16, 0.25);
    font-size: 18px;
    cursor: pointer;
    color: #2c1810;
    line-height: 1;
    padding: 6px 10px;
    border-radius: 8px;
    transition: background 0.2s, border-color 0.2s;
    font-family: 'Poppins', sans-serif;
}

.pdf-modal-close:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(44, 24, 16, 0.45);
}

.pdf-modal-body {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.pdf-modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.pdf-fallback {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 18px;
    padding: 40px 30px;
    text-align: center;
}

.pdf-fallback p {
    font-family: 'Poppins', sans-serif;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.pdf-fallback-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #c71f1f;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s;
}

.pdf-fallback-link:hover {
    background: #a51a1a;
}

/* ══════════════════════════════════════════════
   HERO — Overlay + nuevos elementos
═══════════════════════════════════════════════ */
.home-banner {
    position: relative;
}

.home-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(0,0,0,0.62) 0%,
        rgba(0,0,0,0.30) 60%,
        rgba(0,0,0,0.10) 100%
    );
    pointer-events: none;
    z-index: 2;
}

/* Badge de rating en el hero */
.home-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(8px);
    padding: 7px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 500;
}

.badge-stars {
    color: #ffd557;
    font-size: 14px;
    letter-spacing: 1px;
}

.badge-text {
    color: rgba(255,255,255,0.92);
}

/* Descripción bajo el H1 */
.home-banner-desc {
    font-size: clamp(13px, 1.1vw, 16px);
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255,255,255,0.88);
    margin: 0 0 32px 0;
}

/* Contenedor doble CTA */
.home-banner-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

/* CTA secundario (Ver carta) */
.home-banner-secondary {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 2px;
    white-space: nowrap;
    transition: border-color 0.2s, opacity 0.2s;
}

.home-banner-secondary:hover {
    border-color: #fff;
    opacity: 0.85;
}

/* ══════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════ */
.trust-bar {
    background: #fff;
    border-bottom: 1px solid #ede8e3;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 22px 40px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.055);
}

.trust-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 0 44px;
    text-align: center;
    transition: transform 0.2s;
    cursor: default;
}

.trust-bar-item:hover {
    transform: translateY(-2px);
}

.trust-bar-item strong {
    font-size: 17px;
    font-weight: 700;
    color: #c50101;
    letter-spacing: 0.2px;
}

.trust-bar-item span {
    font-size: 12px;
    color: #777;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.trust-bar-divider {
    width: 1px;
    height: 36px;
    background: #ddd;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   ABOUT — Eyebrow + CTA link
═══════════════════════════════════════════════ */
.about-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin: 0 0 10px 0;
}

.about-cta-link {
    display: inline-block;
    margin-top: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255,255,255,0.5);
    padding-bottom: 2px;
    transition: border-color 0.2s, opacity 0.2s;
}

.about-cta-link:hover {
    border-color: #fff;
    opacity: 0.82;
}

/* ══════════════════════════════════════════════
   MENÚ BANNER — Título y descripción
═══════════════════════════════════════════════ */
.home-menu-title {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.home-menu-desc {
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    font-weight: 300;
    text-align: center;
    max-width: 480px;
    line-height: 1.6;
    margin: 0;
}

/* ══════════════════════════════════════════════
   TESTIMONIOS
═══════════════════════════════════════════════ */
.home-testimonials {
    background: #faf7f4;
    padding: 80px 40px;
    border-top: 1px solid #ede8e3;
}

.home-testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 52px;
}

.testimonials-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c50101;
    margin: 0 0 10px 0;
}

.testimonials-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.testimonials-global-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
}

.global-stars {
    color: #f5a623;
    font-size: 18px;
    letter-spacing: 2px;
}

.global-score {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.global-count {
    color: #888;
    font-size: 14px;
}

/* Grid de tarjetas */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 28px 26px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid #f0ebe5;
    transition: transform 0.25s, box-shadow 0.25s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.11);
}

.testimonial-stars {
    color: #f5a623;
    font-size: 18px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    margin: 0;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    border-top: 1px solid #f0ebe5;
    padding-top: 16px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c50101, #8b0000);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-info strong {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
}

.testimonial-info span {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 4px;
}

.google-icon {
    width: 13px;
    height: 13px;
    vertical-align: middle;
    flex-shrink: 0;
}

/* CTA Google Reviews */
.testimonials-google-cta {
    margin-top: 40px;
    text-align: center;
}

.google-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1.5px solid #e0dbd5;
    border-radius: 50px;
    padding: 13px 28px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.google-reviews-btn:hover {
    border-color: #4285F4;
    box-shadow: 0 6px 20px rgba(66,133,244,0.18);
    transform: translateY(-2px);
    color: #1a1a1a;
}

.google-btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   HORARIO — Eyebrow
═══════════════════════════════════════════════ */
.schedule-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin: 0 0 6px 0;
}

/* ══════════════════════════════════════════════
   CONTACTO — Eyebrow + teléfono
═══════════════════════════════════════════════ */
.contact-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c50101;
    margin: 0 0 8px 0;
}

.contact-phone-link {
    color: #c50101;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.contact-phone-link:hover {
    opacity: 0.75;
}

/* ── MENÚ PAGE ── */
.menu-section {
    min-height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 60px 80px;
    background: linear-gradient(160deg, #fff9f5 0%, #ffffff 60%, #fff3ee 100%);
}

.menu-dia-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 60px 80px;
    background: linear-gradient(135deg, #c50101 0%, #a10000 100%);
    position: relative;
    overflow: hidden;
}

.menu-dia-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.menu-dia-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    text-align: left;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    white-space: nowrap;
}

.menu-dia-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    margin: 0 0 0;
    text-align: left;
    font-weight: 400;
}

.menu-dia-header {
    flex: 0 0 auto;
}

.menu-dia-section .menu-card-label {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

.menu-dia-section .menu-img-link:hover {
    filter: drop-shadow(0 12px 28px rgba(0,0,0,0.35));
}

.menu-dia-section .menu-img {
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    border: 3px solid rgba(255,255,255,0.15);
}

.menu-header {
    text-align: left;
    margin-bottom: 0;
    flex: 0 0 auto;
}

.menu-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -1px;
    line-height: 1.2;
    white-space: nowrap;
}

.menu-subtitle {
    font-size: 16px;
    color: #999;
    margin: 10px 0 0 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.menu-cards {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
}

.menu-img-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.menu-img-link:hover {
    transform: translateY(-6px) scale(1.03);
    filter: drop-shadow(0 12px 24px rgba(197, 1, 1, 0.2));
}

.menu-img {
    width: 260px;
    height: auto;
    display: block;
    border-radius: 20px;
}

.menu-card-title {
    text-align: center;
    margin: 0 0 10px 0;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

.menu-card-label {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

/* ── SECCIÓN MEJORES RECETAS ── */
.menu-recipes {
    background-color: #c50101;
    padding: 80px 40px;
    text-align: center;
}

.recipes-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -1px;
}

/* ── CARRUSEL MENÚ (automático) ── */
.recipes-carousel {
    overflow: hidden;
    width: 100%;
    margin-top: 50px;
}

.recipes-carousel-track {
    display: flex;
    gap: 20px;
    animation: scroll-left 20s linear infinite;
    width: max-content;
}

.recipes-carousel-track:hover {
    animation-play-state: paused;
}

.recipes-carousel-img {
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    flex-shrink: 0;
}

@keyframes scroll-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── ESPECIALIDADES ── */
.menu-specialties {
    padding: 80px 40px;
    background: #faf8f5;
}

.menu-specialties-container {
    max-width: 1200px;
    margin: 0 auto;
}

.menu-section-header {
    text-align: center;
    margin-bottom: 55px;
}

.menu-section-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c50101;
    margin: 0 0 12px 0;
}

.menu-section-title {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.5px;
}

.menu-specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.specialty-card {
    background: #fff;
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-bottom: 3px solid transparent;
    transition: transform 0.3s, box-shadow 0.3s, border-bottom-color 0.3s;
}

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

.specialty-card-body {
    padding: 22px 24px 28px;
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
    border-bottom-color: #c50101;
}

.specialty-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c50101;
    background: rgba(197, 1, 1, 0.08);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.specialty-name {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.specialty-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.65;
    margin: 0;
}

/* ── PILARES ── */
.menu-features {
    background: linear-gradient(135deg, #c50101, #8b0000);
    padding: 55px 40px;
    color: white;
}

.menu-features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
}

.menu-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.menu-feature-icon {
    font-size: 34px;
    margin-bottom: 4px;
}

.menu-feature-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.menu-feature-text {
    font-size: 13px;
    opacity: 0.82;
    margin: 0;
}

/* ── CTA RESERVA ── */
.menu-cta {
    padding: 90px 40px;
    background: #f9f6f2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-cta-title {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.menu-cta-text {
    font-size: 16px;
    color: #888;
    margin: 0 auto 40px auto;
    max-width: 500px;
    line-height: 1.6;
}

/* ══════════════════════════════════════════════
   SELECTOR DE IDIOMA
═══════════════════════════════════════════════ */
.lang-switcher {
    position: relative;
    z-index: 1100;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1.5px solid rgba(0,0,0,0.18);
    border-radius: 9px;
    padding: 7px 11px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    transition: border-color 0.2s, background 0.2s;
    white-space: nowrap;
}

.lang-btn:hover {
    border-color: #c50101;
    background: rgba(197,1,1,0.05);
    color: #c50101;
}

.lang-btn svg {
    flex-shrink: 0;
    color: currentColor;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 36px rgba(0,0,0,0.14);
    overflow: hidden;
    min-width: 155px;
    z-index: 1500;
    border: 1px solid #ede8e3;
    animation: dropIn 0.15s ease;
}

@keyframes dropIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.lang-dropdown.open {
    display: block;
}

.lang-option {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 11px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: #333;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-option:hover {
    background: #fdf5f0;
}

.lang-option.active {
    background: #fef0ec;
    color: #c50101;
    font-weight: 700;
}

.lang-option .lang-flag {
    font-size: 18px;
    line-height: 1;
}

/* ── HAMBURGER ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #222;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
header.hero-mode .hamburger.open span,
.hamburger.open span {
    background: #222;
}

/* Link "Reservar" que solo aparece en el menú móvil */
.nav-reservar-mobile {
    display: none !important;
}

/* ══════════════════════════════════════════════
   DIRECTIONS SECTION
═══════════════════════════════════════════════ */
.directions-section {
    background: #1a1a1a;
    padding: 70px 40px;
    text-align: center;
    color: white;
}

.directions-container {
    max-width: 700px;
    margin: 0 auto;
}

.directions-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin: 0 0 12px 0;
}

.directions-section h2 {
    font-size: 34px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #fff;
}

.directions-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.directions-btns {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.directions-section .btn-secondary {
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

.directions-section .btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: #fff;
}

/* ── RESPONSIVE 768px ── */
@media (max-width: 768px) {

    /* --- Header phone (hide on small screens to avoid clutter) --- */
    .header-phone {
        display: none;
    }

    /* --- Hamburger --- */
    .hamburger {
        display: flex;
    }

    .nav-btn {
        display: none;
    }

    /* En mobile, el header-right solo muestra el lang switcher */
    .header-right {
        gap: 0;
    }

    /* Status indicator hidden on mobile */
    .header-status {
        display: none;
    }

    /* --- Nav overlay --- */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff9f5;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 38px;
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    nav.open {
        opacity: 1;
        pointer-events: all;
    }

    nav a {
        font-size: 24px;
        font-weight: 600;
        color: #1a1a1a;
    }

    nav a:hover {
        opacity: 0.6;
    }

    nav a.active {
        color: #c50101;
        border-bottom: 2px solid #c50101;
        pointer-events: none;
    }

    .nav-reservar-mobile {
        display: block !important;
        background-color: #c71f1f;
        color: #fff !important;
        padding: 13px 32px;
        border-radius: 12px;
        margin-top: 8px;
        font-size: 18px !important;
        font-weight: 600 !important;
        border-bottom: none !important;
    }

    .nav-reservar-mobile:hover {
        opacity: 1 !important;
        background-color: #990808;
    }

    /* --- Header --- */
    header {
        padding: 10px 16px;
    }

    .logo {
        height: 60px;
    }

    /* --- Banner --- */
    .home-banner {
        height: 100vh;
        height: 100dvh;
        min-height: 580px;
        margin-top: -100px;
    }

    .home-banner-content {
        margin-left: 24px;
        max-width: calc(100% - 48px);
    }

    .home-banner-title {
        font-size: 38px;
        margin-bottom: 18px;
    }

    .home-banner-subtitle {
        letter-spacing: 2px;
    }

    .home-banner-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .home-banner-desc {
        font-size: 14px;
    }

    .home-banner-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    /* --- Trust bar --- */
    .trust-bar {
        gap: 14px 0;
        padding: 18px 20px;
    }

    .trust-bar-item {
        padding: 8px 18px;
    }

    .trust-bar-divider {
        display: none;
    }

    /* --- Testimonios --- */
    .home-testimonials {
        padding: 60px 20px;
    }

    .testimonials-title {
        font-size: 26px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    /* --- Menu banner --- */
    .home-menu-banner {
        height: auto;
        padding: 50px 24px;
    }

    .home-menu-title {
        font-size: 26px;
    }

    .home-menu-desc {
        font-size: 14px;
    }

    .home-menu-banner .btn-primary {
        margin-top: 4px;
        text-align: center;
    }

    /* --- About --- */
    .home-about {
        padding: 50px 24px;
    }

    .home-about-container {
        flex-direction: column;
        gap: 35px;
    }

    .home-about-text h2 {
        font-size: 26px;
    }

    .home-about-carousel-wrapper {
        width: 100%;
    }

    .about-schedule {
        gap: 12px;
    }

    /* --- Menu banner --- */
    .home-menu-banner {
        height: auto;
        min-height: 220px;
    }

    /* --- Schedule --- */
    .home-schedule {
        padding: 50px 20px;
    }

    .home-schedule h2 {
        font-size: 26px;
    }

    .home-schedule-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .home-schedule-item {
        padding: 20px 18px;
    }

    /* --- Lang switcher mobile --- */
    .lang-btn {
        padding: 6px 9px;
        font-size: 12px;
    }

    /* --- Contact home --- */
    .home-contact {
        padding: 50px 24px;
    }

    .home-contact-container {
        flex-direction: column;
        gap: 35px;
    }

    .home-contact-map iframe {
        height: 280px;
    }

    .home-contact-text h3 {
        font-size: 18px;
    }

    /* --- Footer --- */
    footer {
        flex-direction: column;
        padding: 30px 24px;
        gap: 25px;
        align-items: flex-start;
    }

    .footer-left {
        gap: 14px;
    }

    .footer-right {
        width: 100%;
    }

    .footer-schedule {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        text-align: left;
    }

    .schedule-block {
        max-width: 100%;
    }

    /* --- Página Contacto --- */
    .contact-main {
        padding: 30px 20px;
    }

    .contact-top {
        flex-direction: column;
        gap: 0;
    }

    .contact-form-box,
    .contact-schedule-box {
        margin: 10px 0 25px 0;
    }

    .contact-form h2,
    .contact-schedule-box h2 {
        font-size: 22px;
    }

    .contact-sidebar-map {
        height: 220px;
    }

    /* --- Página Menú --- */
    .menu-section {
        flex-direction: column;
        padding: 36px 20px 44px;
        gap: 28px;
    }

    .menu-dia-section {
        flex-direction: column;
        padding: 36px 20px 44px;
        gap: 28px;
    }

    .menu-header,
    .menu-dia-header {
        text-align: center;
        max-width: 100%;
        width: 100%;
    }

    .menu-title {
        font-size: 28px;
        white-space: normal;
    }

    .menu-dia-title,
    .menu-dia-subtitle {
        text-align: center;
    }

    .menu-cards {
        display: block;
        text-align: center;
        width: 100%;
    }

    .menu-img-link {
        display: inline-block;
        width: 100%;
        max-width: 300px;
        margin-bottom: 28px;
        text-align: left;
        vertical-align: top;
    }

    .menu-img-link:last-child {
        margin-bottom: 0;
    }

    .menu-img {
        width: 100%;
        height: auto;
        border-radius: 14px;
    }

    .menu-specialties {
        padding: 44px 16px;
    }

    .menu-section-title {
        font-size: 26px;
    }

    .menu-specialties-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .specialty-card-body {
        padding: 18px 18px 22px;
    }

    .specialty-name {
        font-size: 17px;
    }

    .menu-features {
        padding: 45px 20px;
    }

    .menu-features-grid {
        gap: 35px;
    }

    .menu-cta {
        padding: 60px 20px;
    }

    .menu-cta-title {
        font-size: 28px;
    }

    .menu-cta-text {
        font-size: 14px;
    }

    .menu-recipes {
        padding: 60px 0;
    }

    .recipes-title {
        font-size: 30px;
        padding: 0 20px;
    }

    .recipes-carousel-img {
        width: 220px;
        height: 160px;
    }

    /* --- Body --- */
    body {
        padding-top: 80px;
    }

    /* --- Header brand --- */
    .header-brand {
        gap: 10px;
    }

    /* --- Trust bar --- */
    .trust-bar-item strong {
        font-size: 15px;
    }

    .trust-bar-divider {
        height: 28px;
    }

    /* --- Footer logo --- */
    .footer-logo {
        height: 55px;
    }

    /* --- Menú del Día --- */
    .menu-dia-title {
        font-size: 28px;
        white-space: normal;
    }

    .menu-dia-subtitle {
        font-size: 13px;
    }

    /* --- Directions --- */
    .directions-btns {
        flex-direction: column;
        align-items: center;
    }

    .directions-section h2 {
        font-size: 26px;
    }

    .directions-section {
        padding: 50px 24px;
    }
}

/* ── RESPONSIVE TABLET 769px–1024px ── */
@media (min-width: 769px) and (max-width: 1024px) {

    nav {
        gap: 36px;
    }

    nav a {
        font-size: 15px;
    }

    .nav-btn {
        padding: 11px 18px;
        font-size: 14px;
    }

    .home-banner-content {
        margin-left: clamp(20px, 3vw, 40px);
    }

    .trust-bar-item {
        padding: 0 24px;
    }

    .trust-bar-item strong {
        font-size: 15px;
    }

    .home-about-container {
        gap: 36px;
    }

    .menu-section,
    .menu-dia-section {
        gap: 40px;
        padding: 50px 40px;
    }

    .menu-img {
        width: 220px;
    }

    .menu-title {
        font-size: 38px;
    }

    .menu-dia-title {
        font-size: 30px;
    }

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

/* ── RESPONSIVE 480px ── */
@media (max-width: 480px) {

    body {
        padding-top: 70px;
    }

    header {
        padding: 8px 12px;
    }

    .logo {
        height: 55px;
    }

    .footer-logo {
        height: 45px;
    }

    /* --- Banner --- */
    .home-banner {
        margin-top: -70px;
        height: 100vh;
        height: 100dvh;
    }

    .home-banner-title {
        font-size: 30px;
    }

    .home-banner-desc {
        font-size: 13px;
    }

    .btn-primary {
        padding: 12px 22px;
        font-size: 14px;
    }

    /* --- Trust bar --- */
    .trust-bar {
        gap: 8px 0;
        padding: 14px 16px;
    }

    .trust-bar-item {
        padding: 6px 12px;
    }

    .trust-bar-item strong {
        font-size: 13px;
    }

    .trust-bar-item span {
        font-size: 10px;
    }

    .trust-bar-divider {
        height: 22px;
    }

    /* --- About --- */
    .home-about-text h2 {
        font-size: 20px;
    }

    .home-about-text p {
        font-size: 14px;
    }

    /* --- Schedule --- */
    .home-schedule-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .home-schedule-item {
        padding: 16px 12px;
    }

    .schedule-day {
        font-size: 10px;
    }

    .slot-time {
        font-size: 13px;
    }

    /* --- Reserve CTA --- */
    .reserve-cta-title {
        font-size: 26px;
    }

    .reserve-cta-desc {
        font-size: 13px;
    }

    .reserve-cta-btn-primary,
    .reserve-cta-btn-secondary {
        padding: 12px 22px;
        font-size: 14px;
    }

    /* --- Testimonials --- */
    .testimonials-title {
        font-size: 22px;
    }

    .testimonial-card {
        padding: 20px 16px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .testimonial-avatar {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    /* --- Contact --- */
    .home-contact-text h3 {
        font-size: 16px;
    }

    /* --- Footer --- */
    footer {
        padding: 24px 16px;
        gap: 20px;
    }

    .footer-info p {
        font-size: 12px;
    }

    .schedule-block p {
        font-size: 12px;
    }

    /* --- Menú page --- */
    .menu-title {
        font-size: 24px;
    }

    .menu-subtitle {
        font-size: 13px;
    }

    .menu-dia-title {
        font-size: 22px;
        white-space: normal;
    }

    .menu-dia-subtitle {
        font-size: 12px;
    }

    .menu-img {
        width: 100%;
        max-width: 280px;
    }

    .menu-section-title {
        font-size: 22px;
    }

    .specialty-img {
        height: 160px;
    }

    .specialty-card-body {
        padding: 14px 14px 18px;
    }

    .specialty-name {
        font-size: 15px;
    }

    .specialty-desc {
        font-size: 12px;
    }

    .menu-feature-title {
        font-size: 13px;
    }

    .menu-feature-text {
        font-size: 11px;
    }

    .recipes-carousel-img {
        width: 180px;
        height: 140px;
    }

    .menu-cta-title {
        font-size: 22px;
    }

    /* --- Directions --- */
    .directions-section h2 {
        font-size: 22px;
    }
}

/* ── RESPONSIVE 360px ── */
@media (max-width: 360px) {

    body {
        padding-top: 65px;
    }

    header {
        padding: 6px 10px;
    }

    .logo {
        height: 48px;
    }

    .home-banner {
        margin-top: -65px;
        height: 100vh;
        height: 100dvh;
    }

    .home-banner-title {
        font-size: 26px;
    }

    .home-schedule-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .menu-img {
        width: 100%;
        max-width: 240px;
    }

    .specialty-img {
        height: 140px;
    }

    .specialty-card-body {
        padding: 12px 12px 16px;
    }

    .trust-bar-item {
        padding: 4px 8px;
    }

    footer {
        padding: 18px 12px;
    }
}

/* ══════════════════════════════════════════════
   OVERRIDES & IMPROVEMENTS
═══════════════════════════════════════════════ */

/* ── STICKY HEADER: full width fix ── */
header {
    width: 100%;
    box-sizing: border-box;
}

/* ── SCHEDULE: white background (both index & contacto) ── */
.home-schedule {
    background: #faf8f5;
    color: #222;
    border-top: 1px solid #ede8e3;
    border-bottom: 1px solid #ede8e3;
}

.home-schedule h2 {
    color: #1a1a1a;
}

.schedule-eyebrow {
    color: #c50101;
}

.home-schedule-item {
    background: rgba(197,1,1,0.04);
    border-color: rgba(197,1,1,0.12);
}

.home-schedule-item:hover {
    background: rgba(197,1,1,0.09);
}

.schedule-day {
    color: #c50101;
}

.schedule-divider {
    background: rgba(197,1,1,0.15);
}

.schedule-closed-badge {
    color: #c50101;
    border-color: rgba(197,1,1,0.2);
}

.slot-label {
    color: #aaa;
}

.slot-time {
    color: #222;
}

/* ── GOOGLE REVIEWS BUTTON: same as btn-primary ── */
.google-reviews-btn {
    background: #c50101;
    border: 2px solid #c50101;
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
}

.google-reviews-btn:hover {
    background: #990808;
    border-color: #990808;
    box-shadow: 0 6px 22px rgba(197,1,1,0.35);
    transform: scale(1.04);
    color: #fff;
}

.google-btn-icon {
    filter: brightness(0) invert(1);
}

/* ── UNDERLINED BUTTON HOVERS: slide + animate ── */
.home-banner-secondary {
    border-bottom: none;
    padding-bottom: 0;
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.2s;
}

.home-banner-secondary::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: rgba(255,255,255,0.5);
    transition: background 0.3s ease, width 0.3s ease;
}

.home-banner-secondary:hover {
    transform: translateX(10px);
    opacity: 1;
}

.home-banner-secondary:hover::after {
    background: #fff;
    width: 115%;
}

.about-cta-link {
    border-bottom: none;
    padding-bottom: 0;
    position: relative;
    transition: transform 0.3s ease, opacity 0.2s;
}

.about-cta-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: rgba(255,255,255,0.5);
    transition: background 0.3s ease, width 0.3s ease;
}

.about-cta-link:hover {
    opacity: 1;
    transform: translateX(10px);
}

.about-cta-link:hover::after {
    background: #fff;
    width: 115%;
}

.cta-link {
    position: relative;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.2s;
}

.cta-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.cta-link:hover {
    opacity: 1;
    transform: translateX(8px);
}

.cta-link:hover::after {
    width: 115%;
}

/* ── CONTACT ADDRESS INFO (sidebar) ── */
.contact-address-info {
    text-align: center;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.contact-address-info p {
    margin: 0;
    font-size: 14px;
    color: #555;
}
