/* css/styles.css - ESTILOS PRINCIPALES (COMPARTIDOS) */

:root {
    --primary-red: #C62828;
    --primary-red-dark: #8B1E1E;
    --secondary-gold: #BF9B7A;
    --text-dark: #1E1E1E;
    --text-light: #F5F5F5;
    --bg-dark: #0A0A0A;
    --bg-light: #FFFFFF;
    --whatsapp-green: #25D366;
    --didi-pink: #FF4B7A;
    --uber-black: #000000;
    --overlay-bg: rgba(0, 0, 0, 0.95);
    --font-title: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

body.lightbox-open,
body.menu-open {
    overflow: hidden;
}

/* BOTÓN SUBIR */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(198, 40, 40, 0.4);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-red-dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(198, 40, 40, 0.6);
}

/* CURSOR PERSONALIZADO - SOLO DESKTOP */
@media (min-width: 992px) {
    .cursor {
        width: 8px;
        height: 8px;
        background: var(--primary-red);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
    }

    .cursor-follower {
        width: 40px;
        height: 40px;
        border: 1px solid var(--primary-red);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9998;
        transition: transform 0.3s ease, width 0.2s ease, height 0.2s ease;
        transform: translate(-50%, -50%);
    }
}

/* LIGHTBOX SLIDER */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-bg);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10002;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.lightbox-close:hover {
    background: var(--primary-red);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10002;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-red);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    color: white;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px;
    background: rgba(0,0,0,0.7);
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--whatsapp-green);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background: #20b859;
    transform: scale(1.1);
}

.whatsapp-float i {
    transition: var(--transition);
}

.whatsapp-float:hover i {
    transform: rotate(10deg);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: white;
    color: var(--whatsapp-green);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* MENÚ MÓVIL */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: linear-gradient(135deg, #C62828 0%, #8B1E1E 100%);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 30px 25px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.mobile-logo {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
}

.mobile-menu-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    background: white;
    color: #C62828;
    transform: rotate(90deg);
}

.mobile-nav-links {
    list-style: none;
    flex: 1;
}

.mobile-nav-links li {
    margin-bottom: 25px;
    transform: translateX(30px);
    opacity: 0;
    transition: all 0.4s ease;
    transition-delay: calc(0.1s * var(--i));
}

.mobile-menu.active .mobile-nav-links li {
    transform: translateX(0);
    opacity: 1;
}

.mobile-nav-links li:nth-child(1) { --i: 1; }
.mobile-nav-links li:nth-child(2) { --i: 2; }
.mobile-nav-links li:nth-child(3) { --i: 3; }
.mobile-nav-links li:nth-child(4) { --i: 4; }
.mobile-nav-links li:nth-child(5) { --i: 5; }

.mobile-link {
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    font-family: var(--font-title);
    display: block;
    padding: 10px 0;
    position: relative;
    transition: var(--transition);
}

.mobile-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: var(--transition);
}

.mobile-link:hover::after {
    width: 100%;
}

.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.mobile-menu-social a {
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
}

.mobile-menu-social a:hover {
    transform: translateY(-5px);
    color: #FFD700;
}

/* TIPOGRAFÍA */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 600;
    line-height: 1.2;
}

.section {
    padding: 80px 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-subtitle {
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-red);
}

.btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--primary-red);
    color: white;
    border: 2px solid var(--primary-red);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-red);
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    z-index: 1000;
    transition: var(--transition);
    color: white;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    padding: 15px 50px;
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 180px;
    height: auto;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    width: 150px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    cursor: pointer;
    background: rgba(255,255,255,0.2);
    padding: 10px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.burger div {
    width: 25px;
    height: 2px;
    background: white;
    margin: 5px;
    transition: var(--transition);
}

/* HERO */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('../images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: var(--font-title);
    font-weight: 700;
}

.hero-title-line {
    display: block;
    margin-bottom: 5px;
}

.hero-title-line.light {
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    font-size: 0.9em;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 500;
    color: #FFD700;
    letter-spacing: 2px;
}

.hero-cta {
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 400;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; transform: scale(1.02); }
}

/* FILOSOFIA */
.filosofia {
    background: white;
}

.filosofia-header {
    text-align: center;
    margin-bottom: 50px;
}

.filosofia-header .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.filosofia-text-full {
    max-width: 1000px;
    margin: 0 auto;
}

.filosofia-desc {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
}

.filosofia-highlight {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    border-left: 5px solid var(--primary-red);
    box-shadow: 0 10px 30px rgba(198,40,40,0.05);
}

.filosofia-highlight h3 {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.filosofia-highlight p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
}

.filosofia-cuisine-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.cuisine-item {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    text-align: center;
}

.cuisine-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 15px 40px rgba(198, 40, 40, 0.1);
}

.cuisine-item i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.cuisine-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.cuisine-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.filosofia-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.filosofia-tags span {
    background: #f0f0f0;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-red);
}

/* FEATURED TITLE */
.featured-title {
    text-align: center;
    margin: 50px 0 30px;
}

.featured-title h3 {
    font-family: var(--font-title);
    font-size: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.featured-title h3 span {
    color: var(--primary-red);
}

.featured-title h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-red);
}

/* MENU GRID */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.menu-item {
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #eee;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-red);
}

.menu-item-image {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
}

.menu-item-image::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2rem;
    background: rgba(198, 40, 40, 0.9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
}

.menu-item:hover .menu-item-image::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.1);
}

.menu-item-content {
    padding: 20px;
    text-align: center;
}

.menu-item-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item-content .price {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.3rem;
}

.description {
    color: #777;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* PDF SECTION */
.pdf-menu-section {
    margin-top: 60px;
    padding: 60px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.pdf-menu-section::before {
    content: '〆';
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 200px;
    opacity: 0.05;
    color: var(--primary-red);
    font-family: serif;
    transform: rotate(15deg);
}

.pdf-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.pdf-preview-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    aspect-ratio: 4/5;
    max-width: 350px;
    margin: 0 auto;
    cursor: pointer;
}

.pdf-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.pdf-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(198, 40, 40, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    color: white;
}

.pdf-preview-image:hover .pdf-overlay {
    opacity: 1;
}

.pdf-preview-image:hover img {
    transform: scale(1.1);
}

.pdf-overlay i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.pdf-overlay span {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.pdf-preview-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.pdf-preview-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.pdf-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.pdf-features span {
    background: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.pdf-features i {
    color: var(--primary-red);
    margin-right: 8px;
}

.pdf-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    padding: 16px 40px;
}

/* CÓCTELES */
.cocteles {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.cocteles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.coctel-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid rgba(198, 40, 40, 0.1);
    cursor: pointer;
}

.coctel-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(198, 40, 40, 0.15);
}

.coctel-item-image {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
}

.coctel-item-image::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2rem;
    background: rgba(198, 40, 40, 0.9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
    z-index: 2;
}

.coctel-item:hover .coctel-item-image::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.coctel-item-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    z-index: 1;
}

.coctel-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.coctel-item:hover .coctel-item-image img {
    transform: scale(1.1);
}

.coctel-item-content {
    padding: 25px;
}

.coctel-item-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coctel-item-content .price {
    color: var(--primary-red);
    font-size: 1.3rem;
    font-weight: 700;
}

.coctel-item-content .description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.coctel-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.coctel-tags span {
    background: #f0f0f0;
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 0.8rem;
    color: var(--primary-red);
    font-weight: 600;
}

/* SECCIÓN PDF CÓCTELES */
.cocteles-pdf-section {
    margin-top: 50px;
    padding: 50px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #8B1E1E 100%);
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cocteles-pdf-section::before {
    content: '🍸';
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 150px;
    opacity: 0.1;
    transform: rotate(15deg);
}

.cocteles-pdf-section::after {
    content: '🍹';
    position: absolute;
    top: -30px;
    left: -30px;
    font-size: 150px;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.cocteles-pdf-content h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
}

.cocteles-pdf-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cocteles-pdf-button {
    background: white !important;
    color: var(--primary-red) !important;
    border: 2px solid white !important;
    font-size: 1.1rem !important;
    padding: 16px 40px !important;
}

/* RESERVAS */
.reservas {
    background: #f9f9f9;
}

.reservas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details {
    margin: 30px 0;
}

.contact-details p {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
}

.contact-details i {
    color: var(--primary-red);
    font-size: 1.2rem;
    width: 25px;
}

.map-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.map-link:hover {
    color: var(--primary-red);
}

.hours h4 {
    margin-bottom: 10px;
    color: var(--primary-red);
    font-size: 1.2rem;
}

/* DELIVERY APPS */
.delivery-apps {
    margin: 30px 0;
}

.delivery-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-delivery {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    flex: 1;
    min-width: 200px;
}

.btn-delivery.didi {
    background: #FF4B7A;
    color: white;
}

.btn-delivery.didi:hover {
    background: #e63e68;
    transform: translateY(-3px);
}

.btn-delivery.uber {
    background: #000000;
    color: white;
}

.btn-delivery.uber:hover {
    background: #333;
    transform: translateY(-3px);
}

/* RESERVAS FORM */
.reservas-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.reservas-form input,
.reservas-form select {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
}

.reservas-form input:focus,
.reservas-form select:focus {
    outline: none;
    border-color: var(--primary-red);
}

/* FOOTER */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: #999;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 20px;
    color: var(--secondary-gold);
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: #999;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primary-red);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #777;
    font-size: 0.9rem;
}

.terms-link {
    color: var(--secondary-gold);
    text-decoration: none;
    transition: var(--transition);
}

.terms-link:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .filosofia-cuisine-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cocteles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pdf-preview {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .pdf-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .burger {
        display: block;
    }
    
    .logo-img {
        width: 120px;
    }
    
    .navbar.scrolled .logo-img {
        width: 100px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        font-size: 1.1rem;
    }
    
    .filosofia-cuisine-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .cocteles-grid {
        grid-template-columns: 1fr;
    }
    
    .reservas-grid {
        grid-template-columns: 1fr;
    }
    
    .delivery-buttons {
        flex-direction: column;
    }
    
    .btn-delivery {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .reservas-form form {
        padding: 30px 20px;
    }
    
    .scroll-top {
        bottom: 100px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .pdf-preview-image {
        max-width: 250px;
    }
    
    .cocteles-pdf-section {
        padding: 30px 20px;
    }
    
    .cocteles-pdf-content h3 {
        font-size: 1.5rem;
    }
}

/* UTILIDADES */
.img-fluid {
    max-width: 100%;
    height: auto;
}