/* Variables y Reset */
:root {
    --primary: #2d5016;
    --primary-light: #4a7c23;
    --secondary: #8b1a1a;
    --accent: #c9a227;
    --bg-cream: #faf7f2;
    --bg-white: #ffffff;
    --text-dark: #2c2c2c;
    --text-medium: #5a5a5a;
    --text-light: #8a8a8a;
    --border: #e8e2d9;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* Dark Mode - removido */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.4s ease, color 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100dvh;
    height: 100vh; /* fallback para navegadores antiguos */
    overflow: hidden;
}

@supports (height: 100dvh) {
    body { height: 100dvh; }
}

/* Splash Screen / Portada */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c1810 0%, #1a1a1a 50%, #2c1810 100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.splash-screen.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.splash-image,
.splash-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.splash-video-desktop {
    display: block;
}

.splash-video-mobile {
    display: none;
}

@media (max-width: 768px) {
    .splash-video-desktop {
        display: none;
    }
    .splash-video-mobile {
        display: block;
    }
}

.splash-logos {
    position: absolute;
    top: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
    background: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.splash-logos img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.splash-logo-main {
    height: 70px !important;
}

.splash-logo-secondary {
    height: 28px !important;
    width: 60px !important;
    object-fit: contain !important;
}

@media (max-width: 768px) {
    .splash-logos {
        gap: 1rem;
        padding: 0.4rem 1rem;
    }
    .splash-logos img {
        height: 30px;
    }
    .splash-logo-main {
        height: 52px !important;
    }
    .splash-logo-secondary {
        height: 22px !important;
        width: 50px !important;
        object-fit: contain !important;
    }
}

.splash-btn {
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    animation: bounceUp 1.5s ease infinite;
}

.splash-btn:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.splash-btn i {
    animation: arrowBounce 1.5s ease infinite;
}

@keyframes bounceUp {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@media (max-width: 600px) {
    .splash-btn {
        bottom: 3.5rem;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Animaciones de entrada */
.animate-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

body.loading .animate-in { opacity: 0; transform: translateY(20px); }

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.header-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-about {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-about:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.1);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex: 1;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}

.logo-text { text-align: left; }

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.logo .year { color: var(--accent); font-weight: 800; }

.subtitle {
    font-size: 0.85rem;
    opacity: 0.85;
    font-weight: 300;
    margin-top: 0.1rem;
}

/* Sabías que Banner */
.sabias-que-banner {
    background: linear-gradient(90deg, #fff8e1, #fff3cd);
    border-top: 2px solid var(--accent);
    padding: 0.6rem 1.5rem;
    padding-bottom: calc(0.6rem + env(safe-area-inset-bottom, 0px));
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    flex-shrink: 0;
}

[data-theme="dark"] .sabias-que-banner {
    background: linear-gradient(90deg, #fff8e1, #fff3cd);
}

.sabias-que-content {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    flex: 1;
}

.sabias-que-label {
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
    font-size: 0.82rem;
}

.sabias-que-label i { margin-right: 0.25rem; }

.sabias-que-text {
    color: var(--text-dark);
    font-size: 0.82rem;
    line-height: 1.3;
}

.sabias-que-next {
    background: var(--accent);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.sabias-que-next:hover { background: #b08d1f; transform: scale(1.1); }

/* Main Layout */
.main-container {
    display: flex;
    flex: 1;
    min-height: 0;
}

/* Sidebar (desktop) */
.sidebar {
    width: 360px;
    background: var(--bg-white);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.sidebar-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.sidebar-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.sidebar-header h2 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.6rem;
}

.sidebar-header h2 i { margin-right: 0.5rem; }

.search-box { position: relative; margin-bottom: 0.6rem; }

.search-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 0.85rem;
}

.search-box input {
    width: 100%;
    padding: 0.55rem 0.75rem 0.55rem 2.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition);
    background: var(--bg-cream);
    color: var(--text-dark);
}

.search-box input:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(74, 124, 35, 0.1);
}

/* Filtros */
.filters {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
}

.filter-group {
    flex: 1;
}

.filter-group label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-light);
    margin-bottom: 0.2rem;
    font-weight: 500;
}

.filter-group label i { margin-right: 0.2rem; }

.filter-group select {
    width: 100%;
    padding: 0.4rem 0.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    background: var(--bg-cream);
    color: var(--text-dark);
    cursor: pointer;
    outline: none;
}

.btn-nearest {
    width: 100%;
    padding: 0.5rem;
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.btn-nearest:hover {
    background: var(--primary);
    color: white;
}

/* Restaurant List */
.restaurant-list {
    overflow-y: auto;
    flex: 1;
    padding: 0.5rem;
}

.restaurant-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.85rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.restaurant-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.restaurant-card.active {
    border-color: var(--primary);
    background: rgba(74, 124, 35, 0.04);
    box-shadow: 0 0 0 2px rgba(74, 124, 35, 0.15);
}

.restaurant-card-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.restaurant-card-address {
    font-size: 0.75rem;
    color: var(--text-medium);
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
}

.restaurant-card-address i {
    color: var(--secondary);
    margin-top: 2px;
    flex-shrink: 0;
}

.restaurant-card-zone {
    display: inline-block;
    margin-top: 0.4rem;
    font-size: 0.65rem;
    background: rgba(74, 124, 35, 0.1);
    color: var(--primary);
    padding: 0.15rem 0.45rem;
    border-radius: 20px;
    font-weight: 500;
}

.restaurant-card-price {
    font-size: 0.72rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: 0.3rem;
}

/* Map */
.map-container { flex: 1; position: relative; }
#map { width: 100%; height: 100%; }

/* Google Maps InfoWindow */
.gm-style-iw-c { padding: 0 !important; max-height: none !important; }
.gm-style-iw-d { overflow: hidden !important; padding: 0 !important; max-height: none !important; }
.gm-style-iw { padding: 0 !important; }
.gm-style-iw-tc { display: none; }
.gm-style-iw-chr { position: absolute !important; top: 0 !important; right: 0 !important; height: auto !important; padding: 0 !important; }
.gm-style-iw-ch { padding-top: 0 !important; }

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 2rem;
    backdrop-filter: blur(4px);
}

.modal-overlay.active { display: flex; }

.modal {
    background: var(--bg-white);
    border-radius: var(--radius);
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
    position: absolute;
    top: 1rem; right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 36px; height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    z-index: 10;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.modal-close:hover { background: white; transform: scale(1.1); }

/* Modal Logo Section */
.modal-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: var(--bg-cream);
    border-bottom: 1px solid var(--border);
}

.modal-logo-section img {
    max-height: 80px;
    max-width: 200px;
    object-fit: contain;
}

/* Carrusel */
.modal-carousel {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
    cursor: pointer;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.85);
    border: none;
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-dark);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.carousel-btn:hover { background: white; transform: translateY(-50%) scale(1.1); }
.carousel-prev { left: 0.75rem; }
.carousel-next { right: 0.75rem; }

.carousel-dots {
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.4rem;
}

.carousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transition: var(--transition);
    cursor: pointer;
}

.carousel-dot.active { background: white; transform: scale(1.2); }

.modal-hero-overlay {
    display: none;
}

/* Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-img-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: background 0.2s;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.3); }

.lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.modal-body { padding: 1.5rem; }

.modal-section {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.modal-section:last-of-type { border-bottom: none; }

.modal-section h3 {
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-section h3 i { margin-right: 0.4rem; }

.modal-section p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.modal-sabias-que {
    background: #fff8e1;
    padding: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.modal-sabias-que h3 { color: var(--accent); }

.zone-tag {
    display: inline-block;
    margin-top: 0.3rem;
    font-size: 0.75rem !important;
    background: rgba(74, 124, 35, 0.1);
    color: var(--primary) !important;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-weight: 500;
}

.modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-1px); }

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}
.btn-secondary:hover { background: rgba(74, 124, 35, 0.05); transform: translateY(-1px); }

.btn-whatsapp { background: #25d366; color: white; }
.btn-whatsapp:hover { background: #1fb855; transform: translateY(-1px); }

/* FAB - Botón flotante (móvil) */
.fab-restaurants {
    display: none;
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: #c0392b;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(192, 57, 43, 0.4);
    transition: var(--transition);
    gap: 0.5rem;
    align-items: center;
    white-space: nowrap;
}

.fab-restaurants i { font-size: 1rem; }
.fab-restaurants:hover {
    background: #e74c3c;
    transform: translateX(-50%) translateY(-2px);
}
.fab-restaurants:active { transform: translateX(-50%) translateY(0); }

/* FAB geolocalización */
.fab-nearest {
    display: none;
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1000;
    background: var(--bg-white);
    color: var(--primary);
    border: 2px solid var(--primary);
    width: 44px; height: 44px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.fab-nearest:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* Bottom Sheet */
.bottom-sheet-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1999;
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bottom-sheet-overlay.active { display: block; opacity: 1; }

.bottom-sheet {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--bg-white);
    border-radius: 20px 20px 0 0;
    z-index: 2000;
    max-height: 75vh;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
}

.bottom-sheet.active { transform: translateY(0); }

.bottom-sheet-handle {
    width: 40px; height: 4px;
    background: var(--border);
    border-radius: 2px;
    margin: 0.75rem auto 0;
    flex-shrink: 0;
}

.bottom-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem 0.5rem;
}

.bottom-sheet-header h2 { font-size: 1.1rem; color: var(--primary); font-weight: 700; }
.bottom-sheet-header h2 i { margin-right: 0.5rem; }

.bottom-sheet-close {
    background: none;
    border: 1px solid var(--border);
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-medium);
    transition: var(--transition);
}

.bottom-sheet-close:hover { background: var(--bg-cream); color: var(--text-dark); }

.bottom-sheet-search {
    position: relative;
    padding: 0 1.25rem 0.5rem;
}

.bottom-sheet-search i {
    position: absolute;
    left: 2rem; top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 0.85rem;
}

.bottom-sheet-search input {
    width: 100%;
    padding: 0.6rem 0.75rem 0.6rem 2.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    font-family: inherit;
    background: var(--bg-cream);
    color: var(--text-dark);
}

.bottom-sheet-search input:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(74, 124, 35, 0.1);
}

.bottom-sheet-filters {
    display: flex;
    gap: 0.5rem;
    padding: 0 1.25rem 0.75rem;
}

.bottom-sheet-filters select {
    flex: 1;
    padding: 0.4rem 0.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    background: var(--bg-cream);
    color: var(--text-dark);
    cursor: pointer;
    outline: none;
}

.bottom-sheet-list {
    overflow-y: auto;
    flex: 1;
    padding: 0 1rem 1rem;
}

.bottom-sheet-list .restaurant-card { margin-bottom: 0.6rem; }

/* Responsive */
@media (max-width: 900px) {
    .main-container { flex-direction: column; flex: 1; min-height: 0; }
    .sidebar { display: none; }
    .fab-restaurants { display: flex; }
    .fab-nearest { display: flex; }
    .map-container { flex: 1; min-height: 300px; }
    .logo-text h1 { font-size: 1.3rem; }
    .logo-img { height: 45px; }
    .modal { max-height: 90vh; margin: 1rem; }
    .modal-actions { flex-direction: column; }
}

@media (max-width: 600px) {
    .header { padding: 0.5rem 0.75rem; }
    .logo { gap: 0.6rem; }
    .logo-text h1 { font-size: 1rem; }
    .logo-img { height: 36px; }
    .subtitle { font-size: 0.7rem; }
    .main-container { flex: 1; min-height: 0; }
    .sabias-que-banner { padding: 0.5rem 0.75rem; }
    .sabias-que-content { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
    .sabias-que-text { font-size: 0.78rem; }
    .sabias-que-label { font-size: 0.8rem; }
    .map-container { min-height: 250px; }
    .fab-restaurants { padding: 0.65rem 1.25rem; font-size: 0.85rem; bottom: 1rem; }
    .fab-nearest { bottom: 3.8rem; left: 0.75rem; top: auto; width: 40px; height: 40px; }
    .modal-carousel { height: 220px; }
}

/* Modal Acerca de */
.about-modal {
    max-width: 440px;
    text-align: center;
}

.about-content {
    padding: 2.5rem 2rem;
}

.about-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.about-logo {
    width: auto;
    height: 80px;
    max-width: 150px;
    object-fit: contain;
    border-radius: 0;
}

.about-content h2 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.about-tagline {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 1.25rem;
}

.about-description {
    text-align: left;
    margin-bottom: 1.25rem;
}

.about-description p {
    font-size: 0.88rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 0.6rem;
}

.about-season {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(74, 124, 35, 0.08);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-footer {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.about-footer p {
    font-size: 0.8rem;
    color: var(--text-medium);
    margin-bottom: 0.25rem;
}

.about-copy {
    font-size: 0.7rem !important;
    color: var(--text-light) !important;
}

/* Scrollbar */
.restaurant-list::-webkit-scrollbar,
.modal::-webkit-scrollbar { width: 6px; }
.restaurant-list::-webkit-scrollbar-track,
.modal::-webkit-scrollbar-track { background: transparent; }
.restaurant-list::-webkit-scrollbar-thumb,
.modal::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.restaurant-list::-webkit-scrollbar-thumb:hover,
.modal::-webkit-scrollbar-thumb:hover { background: var(--text-light); }
