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

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.8;
    color: #2c3e50;
    background: #f4f1e8;
}

.container {
    max-width: 100%;
    margin: 0px auto;
    background: #fff;
    box-shadow: 0 0 30px rgba(0,0,0,0.15);
}

header {
    background: linear-gradient(to bottom, #1a4d2e 0%, #2d5a3d 100%);
    color: #f8f5e4;
    padding: 50px 30px;
    text-align: center;
    border-bottom: 5px solid #8b6f47;
    position: relative;
}

header::after {
    content: '✦ ✦ ✦ ✦ ✦';
    display: block;
    margin-top: 20px;
    font-size: 1.2em;
    color: #d4af37;
    letter-spacing: 10px;
}

footer a, .phone {
    color: #ffff;
    text-decoration: none;
}

footer a:visited, .phone:visited {
    color: #ffff;
}

footer a:hover, .phone:hover {
    color: #ffff;
}

footer a:active, .phone:active {
    color: #fffff;
}

.phone {
    color: #8b6f47;
    text-decoration: none;
}

.phone:visited, .phone:hover, .phone:active {
    color: #8b6f47;
}

h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #f8f5e4;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
}

.subtitle {
    font-size: 1.4em;
    font-style: italic;
    color: #d4af37;
    margin-top: 10px;
}

.hero {
    background: linear-gradient(135deg, #8b6f47 0%, #6b5435 100%);
    color: #f8f5e4;
    padding: 60px 30px;
    text-align: center;
    border-bottom: 3px solid #d4af37;
}

.hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto;
    line-height: 2;
    font-style: italic;
}

.section {
    padding: 50px 40px;
}

.section-alt {
    background: #faf8f3;
    border-top: 2px dashed #8b6f47;
    border-bottom: 2px dashed #8b6f47;
}

h2 {
    color: #1a4d2e;
    font-size: 2.8em;
    margin-bottom: 35px;
    text-align: center;
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 20px;
}

h2::before {
    content: '❖';
    display: block;
    color: #d4af37;
    font-size: 0.6em;
    margin-bottom: 10px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: #8b6f47;
}

h3 {
    color: #2d5a3d;
    font-size: 1.8em;
    margin: 25px 0 15px;
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    border-left: 4px solid #d4af37;
    padding-left: 15px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.info-card {
    background: #faf8f3;
    padding: 25px;
    border-radius: 8px;
    border: 2px solid #8b6f47;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.info-card h3 {
    font-size: 1.4em;
    border: none;
    padding: 0;
    margin-bottom: 15px;
    text-align: center;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 8px 0;
    border-bottom: 1px dotted #d4af37;
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card li::before {
    content: '◆ ';
    color: #d4af37;
    font-weight: bold;
}

.horario-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.horario-item {
    background: white;
    padding: 20px;
    border-radius: 5px;
    border: 2px solid #8b6f47;
    text-align: center;
}

.dia {
    font-weight: bold;
    color: #1a4d2e;
    font-size: 1.2em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hora {
    color: #555;
    font-size: 1em;
    line-height: 1.8;
}

.cerrado {
    color: #c0392b;
    font-style: italic;
    font-weight: bold;
}

.opiniones {
    background: #f8f5e4;
    padding: 40px;
    margin: 30px 0;
    border-left: 5px solid #d4af37;
    border-radius: 5px;
}

.opinion-item {
    background: white;
    padding: 25px;
    margin: 20px 0;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.opinion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.opinion-fecha {
    color: #888;
    font-style: italic;
    font-size: 0.9em;
}

.opinion-texto {
    color: #444;
    line-height: 1.8;
    font-size: 1.05em;
}

.estrellas {
    color: #d4af37;
    font-size: 1.3em;
}

.ventajas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.ventaja-tag {
    background: #2d5a3d;
    color: #f8f5e4;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    border: 2px solid #1a4d2e;
}

.precio {
    font-size: 1.8em;
    color: #d4af37;
    text-align: center;
    margin: 20px 0;
    font-weight: bold;
}

footer {
    background: #1a4d2e;
    color: #f8f5e4;
    text-align: center;
    padding: 30px;
    font-size: 1.1em;
    border-top: 5px solid #8b6f47;
}

footer p {
    margin: 10px 0;
}

.destacado {
    background: #fff8dc;
    border-left: 5px solid #d4af37;
    padding: 25px;
    margin: 30px 0;
    border-radius: 5px;
    font-size: 1.2em;
    text-align: center;
    font-style: italic;
    color: #2d5a3d;
}

/* Menú de navegación */
.navbar {
    background: linear-gradient(135deg, #1a4d2e 0%, #234d35 50%, #2d5a3d 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    border-bottom: 3px solid #d4af37;
    padding: 0;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

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

.nav-logo {
    color: #f8f5e4;
    font-size: 1.8em;
    font-weight: bold;
    padding: 12px 0;
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.02);
}

.nav-logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    background: white;
    padding: 6px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.nav-logo:hover img {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #f8f5e4;
    text-decoration: none;
    padding: 15px 18px;
    display: block;
    font-size: 0.95em;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    border-radius: 4px 4px 0 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f0d77a, #d4af37);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    background: rgba(212, 175, 55, 0.15);
    color: #f0d77a;
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 80%;
}

/* Enlace activo */
.nav-link.active {
    color: #f0d77a;
    background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.1) 100%);
    border-bottom: 3px solid #d4af37;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.nav-link.active::before {
    width: 80%;
    background: #f0d77a;
}

/* Indicador de punto en activo */
.nav-link.active::after {
    display: none;
}

/* Ajuste texto activo */
.nav-link.active span {
    display: inline;
}

.nav-link.nav-carta {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.15) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 6px;
    margin: 0 5px;
    color: #f0d77a;
    font-weight: 600;
}

.nav-link.nav-carta:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4) 0%, rgba(212, 175, 55, 0.25) 100%);
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.nav-link.nav-carta::before {
    display: none;
}

/* Botón flotante WhatsApp y Redes */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #1a4d2e 0%, #2d5a3d 100%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    border: 3px solid #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    background: linear-gradient(135deg, #2d5a3d 0%, #1a4d2e 100%);
}

.whatsapp-btn svg {
    width: 40px;
    height: 40px;
    fill: #f8f5e4;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: #1a4d2e;
    color: #f8f5e4;
    padding: 12px 20px;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 1em;
    font-weight: bold;
    border: 2px solid #d4af37;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid #d4af37;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(0,0,0,0.3), 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        box-shadow: 0 6px 20px rgba(0,0,0,0.3), 0 0 0 15px rgba(212, 175, 55, 0);
    }
}

.social-float {
    position: fixed;
    bottom: 120px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
    align-items: center;
    pointer-events: auto;
}

.social-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 3px solid #d4af37;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    background: linear-gradient(135deg,#1a4d2e 0%, #2d5a3d 100%);
}

.social-btn svg { width: 26px; height: 26px; fill: #f8f5e4; }

.social-btn:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    background: linear-gradient(135deg,#2d5a3d 0%, #1a4d2e 100%);
}

.social-btn[title] { position: relative; }
.social-btn[title]:hover::after {
    content: attr(title);
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #1a4d2e;
    color: #f8f5e4;
    padding: 8px 12px;
    border-radius: 6px;
    border: 2px solid #d4af37;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    font-size: 0.95rem;
}

/* Menú de idiomas */
.language-dropdown {
    position: relative;
    margin-left: 10px;
}

.language-btn {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    color: #f8f5e4;
    border: 2px solid rgba(212, 175, 55, 0.6);
    padding: 10px 18px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.language-btn:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4) 0%, rgba(212, 175, 55, 0.2) 100%);
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.language-btn::after {
    content: '▼';
    font-size: 0.65em;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.language-dropdown:hover .language-btn::after,
.language-dropdown.open .language-btn::after {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: linear-gradient(135deg, #1a4d2e 0%, #234d35 100%);
    border: 2px solid #d4af37;
    border-radius: 12px;
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s ease;
    z-index: 1001;
    overflow: hidden;
}

.language-dropdown:hover .language-menu,
.language-dropdown.open .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.language-option {
    padding: 14px 20px;
    color: #f8f5e4;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    font-size: 0.95em;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.25) 0%, transparent 100%);
    padding-left: 28px;
    color: #f0d77a;
}

.language-option.active {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
    font-weight: 600;
    color: #f0d77a;
}

.language-option.active::before {
    content: '✓';
    color: #d4af37;
    font-weight: bold;
    margin-right: -5px;
}

.flag-icon {
    font-size: 1.2em;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.flag-icon.senyera {
    width: 32px;
    height: 20px;
    display: inline-block;
    background: repeating-linear-gradient(
    to bottom,
    #d40000 0px,
    #d40000 4px,
    #ffd700 4px,
    #ffd700 8px
    );
    border-radius: 4px;
    position: relative;
    animation: wave 2s infinite ease-in-out;
}

@keyframes wave {
    0% { transform: skewX(0deg); }
    50% { transform: skewX(-5deg); }
    100% { transform: skewX(0deg); }
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #f8f5e4;
    font-size: 1.8em;
    cursor: pointer;
    padding: 10px;
}

.slide-title {
    font-size: 2.5em;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
    .nav-link {
        padding: 20px 15px;
        font-size: 0.95em;
    }
    
    .section {
        padding: 40px 30px;
    }
}

@media (max-width: 991px) {
    h1 {
        font-size: 2.8em;
    }
    
    h2 {
        font-size: 2.2em;
    }
    
    .hero {
        padding: 40px 25px;
    }
    
    .hero-description {
        font-size: 1.15em;
    }
    
    .slider-container {
        height: 400px !important;
    }
    
    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .horario-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .opiniones {
        padding: 25px;
    }
    
    .opinion-item {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }
    
    h2 {
        font-size: 2em;
    }
    
    .slide-title {
        font-size: 1.7em;
    }

    .section {
        padding: 30px 20px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px; /* Ajustado a la altura aproximada del navbar */
        height: calc(100vh - 70px); /* Ocupa toda la altura restante */
        overflow-y: auto; /* Permite scroll si la pantalla es muy pequeña */
        flex-direction: column;
        background: linear-gradient(180deg, #1a4d2e 0%, #234d35 50%, #2d5a3d 100%);
        width: 100%;
        text-align: center;
        transition: left 0.4s ease-in-out;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        border-top: 3px solid #d4af37;
        gap: 0;
        padding-bottom: 40px; /* Espacio extra abajo para scroll */
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 18px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        width: 100%;
        display: block;
    }

    .nav-toggle {
        display: block;
    }

    .nav-logo {
        font-size: 1.5em;
    }

    .nav-logo img {
        height: 45px;
    }

    .language-dropdown {
        order: -1;
        margin-bottom: 10px;
    }

    .language-btn {
        width: 90%;
        margin: 10px auto;
        justify-content: center;
    }

    .language-menu {
        position: static;
        width: 90%;
        margin: 0 auto;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        display: none;
    }

    .language-dropdown:hover .language-menu,
    .language-dropdown.active .language-menu {
        display: block;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        width: 60px;
        height: 60px;
    }

    .whatsapp-btn svg {
        width: 35px;
        height: 35px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .social-float {
        bottom: 110px;
        right: 18px;
        gap: 10px;
    }
    .social-btn { width: 50px; height: 50px; border-width: 2px; }
    .social-btn[title]:hover::after { display: none; }
    
    /* Footer responsive */
    footer {
        padding: 25px 15px;
        font-size: 1em;
    }
    
    footer div[style*="font-size: 0.9em"] a {
        display: block;
        margin: 8px 0 !important;
    }
}

/* Banner de Cookies */
#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a4d2e 0%, #2d5a3d 100%);
    color: #f8f5e4;
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    display: none;
    border-top: 3px solid #d4af37;
}

#cookieBanner.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    margin: 0 0 10px 0;
    color: #d4af37;
    font-size: 1.3em;
    border: none;
    padding: 0;
}

.cookie-text p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95em;
}

.cookie-text a {
    color: #d4af37;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 25px;
    border: 2px solid #d4af37;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: all 0.3s;
    font-family: Georgia, serif;
}

.cookie-btn-accept {
    background: #d4af37;
    color: #1a4d2e;
}

.cookie-btn-accept:hover {
    background: #f8f5e4;
    transform: translateY(-2px);
}

.cookie-btn-reject {
    background: transparent;
    color: #f8f5e4;
}

.cookie-btn-reject:hover {
    background: rgba(248, 245, 228, 0.1);
}

.cookie-btn-config {
    background: transparent;
    color: #d4af37;
}

.cookie-btn-config:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Modal de Configuración de Cookies */
#cookieModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    overflow-y: auto;
}

#cookieModal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    max-width: 700px;
    width: 90%;
    margin: 20px;
    border-radius: 10px;
    border: 3px solid #8b6f47;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    background: linear-gradient(135deg, #1a4d2e 0%, #2d5a3d 100%);
    color: #f8f5e4;
    padding: 25px;
    border-radius: 7px 7px 0 0;
    position: relative;
}

.modal-header h2 {
    margin: 0;
    color: #f8f5e4;
    font-size: 1.8em;
    padding: 0;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #f8f5e4;
    font-size: 2em;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.modal-close:hover {
    background: rgba(248, 245, 228, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.cookie-category {
    margin-bottom: 25px;
    padding: 20px;
    background: #faf8f3;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.cookie-category h3 {
    margin: 0 0 10px 0;
    color: #1a4d2e;
    font-size: 1.3em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    padding: 0;
}

.cookie-category p {
    margin: 10px 0;
    color: #555;
    line-height: 1.6;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .toggle-slider {
    background-color: #2d5a3d;
}

.cookie-toggle input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.cookie-toggle input:disabled + .toggle-slider {
    background-color: #8b6f47;
    cursor: not-allowed;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .modal-content {
        margin: 10px;
    }
    
    .modal-body {
        padding: 20px;
    }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20%, 40% { transform: scale(1); }
}

/* ESTILOS PARA LA CARTA (CARTA.HTML) */
.menu-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.section-title h2 {
    margin: 0;
    font-size: 2.5em;
    border-bottom: none;
    padding: 0;
}

.section-title h2::before,
.section-title h2::after {
    display: none;
}

.section-icon {
    font-size: 2.5em;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.menu-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.menu-item-info {
    flex: 1;
}

.menu-item-name {
    font-weight: bold;
    font-size: 1.15em;
    color: #1a4d2e;
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    margin-bottom: 5px;
    line-height: 1.4;
}

.menu-item-desc {
    font-size: 0.95em;
    color: #666;
    font-style: italic;
    margin-top: 5px;
}

.menu-item-extra {
    font-size: 0.85em;
    color: #d4af37;
    margin-top: 5px;
    font-weight: 600;
}

.menu-item-price {
    font-weight: bold;
    color: #8b6f47;
    font-size: 1.25em;
    white-space: nowrap;
    background: #faf8f3;
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px dashed #d4af37;
}

.destacado-icon {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.btn-reservar {
    display: inline-block;
    background: #d4af37;
    color: #1a4d2e;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
    transition: all 0.3s;
    font-family: 'Palatino Linotype', serif;
}

.btn-reservar:hover {
    background: #f8f5e4;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.footer-contact {
    margin: 20px 0;
    font-size: 1.1em;
}

/* Responsive específico para la carta (Móvil) */
@media (max-width: 768px) {
    .menu-section {
        padding: 30px 15px;
    }

    .section-title {
        flex-direction: row;
        gap: 10px;
        margin-bottom: 25px;
        flex-wrap: wrap;
    }

    .section-title h2 {
        font-size: 1.8em;
    }

    .section-icon {
        font-size: 1.8em;
    }

    .menu-items {
        grid-template-columns: 1fr; /* Una sola columna en móvil */
        gap: 15px;
    }

    .menu-item {
        padding: 15px;
        flex-direction: row; /* Mantener precio a la derecha si cabe */
        align-items: flex-start;
    }
    
    .menu-item-name {
        font-size: 1.1em;
    }
    
    .menu-item-price {
        font-size: 1.1em;
        padding: 4px 8px;
    }
    
    /* Si la pantalla es muy pequeña, apilar precio debajo */
    @media (max-width: 400px) {
        .menu-item {
            flex-direction: column;
            gap: 10px;
        }
        
        .menu-item-price {
            align-self: flex-start;
        }
    }
}