:root {
    --golden-yellow: #F9B036;
    --medium-brown: #A35D3F;
    --light-gray: #E6E6E6;
    --medium-gray: #737373;
    --nude: #FCCE9E;
    --dark-brown: #634036;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-gray);
    color: var(--dark-brown);
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 30px;
    background-color: rgba(252, 206, 158, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 4px 30px;
    background-color: rgba(99, 64, 54, 0.95);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .logo img.primary-logo {
    display: none;
}

.navbar.scrolled .logo img.secondary-logo {
    display: block;
    height: 60px;
}

.navbar.scrolled .menu-toggle span {
    background-color: var(--golden-yellow);
}

.logo {
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.logo img.secondary-logo {
    display: none;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark-brown);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--nude);
    padding: 80px 20px;
    transition: right 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.menu-logo {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 120px;
    height: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.menu-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.menu.active {
    right: 0;
}

.menu-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--medium-brown);
    border-radius: 50%;
    padding: 5px;
}

.menu-close::before,
.menu-close::after {
    content: '';
    position: absolute;
    width: 70%;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

.menu-close::before {
    transform: rotate(45deg);
}

.menu-close::after {
    transform: rotate(-45deg);
}

.menu-close:hover {
    background-color: var(--dark-brown);
}

.menu-close:hover::before,
.menu-close:hover::after {
    background-color: var(--golden-yellow);
}

.menu ul {
    list-style: none;
    margin-top: 80px;
    width: 100%;
}

.menu ul li {
    margin-bottom: 25px;
}

.menu ul li a {
    text-decoration: none;
    color: var(--dark-brown);
    font-size: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 12px 15px;
    position: relative;
}

.menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--medium-brown);
    transition: width 0.3s ease;
}

.menu ul li a:hover {
    color: var(--medium-brown);
    transform: translateX(5px);
}

.menu ul li a:hover::after {
    width: 100%;
}

.menu ul li a i {
    margin-right: 15px;
    width: 24px;
    text-align: center;
    color: var(--medium-brown);
}

/* Hero Section */
#inicio {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
    opacity: 0;
    animation: fadeIn 1.5s forwards 0.5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.hero-logo {
    max-width: 100%;
    width: 360px;
    height: auto;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.5));
    display: block;
    transition: all 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -40%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 24px;
    animation: bounce 2s infinite;
    opacity: 0.8;
    cursor: pointer;
    z-index: 10;
}

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

/* Smooth Scroll Transition */
.section-transition {
    position: relative;
    margin-top: -100px;
    padding-top: 150px;
    background: white;
    border-radius: 50px 50px 0 0;
    z-index: 5;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.section-transition.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--golden-yellow);
    color: var(--dark-brown);
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--medium-brown);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
section {
    padding: 80px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 40px;
    color: var(--medium-brown);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--golden-yellow);
}

/* Menu Section */
#menu {
    background-color: white;
    padding: 80px 5%;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.menu-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background-color: var(--light-gray);
    color: var(--medium-brown);
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 150px;
}

.menu-category i {
    font-size: 24px;
}

.menu-category span {
    font-size: 16px;
}

.menu-category:hover, .menu-category.active {
    background-color: var(--golden-yellow);
    color: var(--dark-brown);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.menu-category-container {
    min-height: 0;
    transition: min-height 0.3s;
}

.menu-category-section {
    position: relative;
    display: none;
    opacity: 0;
    transition: opacity 0.4s;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

.menu-category-section.active {
    display: block;
    opacity: 1;
    height: auto;
    pointer-events: auto;
    animation: fadeInMenu 0.4s;
}

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

.category-header {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s ease 0.2s;
}

.menu-category-section.active .category-header {
    opacity: 1;
    transform: translateY(0);
}

.menu-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.menu-category-section.active .menu-items {
    opacity: 1;
    transform: translateY(0);
}

.menu-item {
    background: linear-gradient(135deg, rgba(249,176,54,0.10) 0%, rgba(163,93,63,0.10) 100%);
    border: 2px solid var(--golden-yellow);
    box-shadow: 0 8px 24px rgba(163,93,63,0.10);
    border-radius: 15px;
    width: 320px;
    max-width: 90vw;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.menu-item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 32px rgba(163,93,63,0.18);
}

.menu-item .menu-item-image {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    margin: 0 0 10px 0;
    background: none;
}

.menu-item .menu-item-image img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
    margin: 0;
    padding: 0;
    display: block;
    align-self: flex-start;
}

.menu-item .menu-item-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 1.25em;
    color: var(--medium-brown);
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 14px;
    padding: 0 18px;
}

.menu-item .menu-item-name {
    flex: 1 1 auto;
    text-align: left;
    font-size: 1.14em;
    font-weight: bold;
    color: var(--dark-brown);
}

.menu-item .menu-item-price {
    flex: 0 0 auto;
    text-align: right;
    color: var(--golden-yellow);
    font-size: 1.14em;
    font-weight: bold;
    margin-left: 10px;
    white-space: nowrap;
}

.menu-item .menu-item-description {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 0;
    margin: 8px 0 10px 0;
    border-radius: 10px;
    background: rgba(255,255,255,0.7);
    color: var(--dark-brown);
    font-size: 1em;
    min-height: 48px;
    box-shadow: 0 2px 8px rgba(249,176,54,0.07);
    word-break: break-word;
}

.menu-item-description ul {
    padding-left: 0;
    margin-left: 0;
    list-style-position: inside;
    width: 100%;
}

.menu-item-description li {
    padding-left: 0.5em;
    margin-bottom: 2px;
}

@media (max-width: 600px) {
    .menu-item-description {
        font-size: 12px;
        min-height: 32px;
        padding: 8px 0;
    }
}

/* Historia Section */
#historia {
    background-color: var(--nude);
    position: relative;
    overflow: hidden;
}

.historia-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.historia-image {
    max-width: 240px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.historia-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(99, 64, 54, 0.2));
}

.historia-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-brown);
}

.bg-decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    opacity: 0.1;
    z-index: 0;
}

.bg-decoration:nth-child(1) {
    top: 10%;
    left: 5%;
    background-color: var(--golden-yellow);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 8s ease-in-out infinite;
}

.bg-decoration:nth-child(2) {
    bottom: 15%;
    right: 8%;
    background-color: var(--medium-brown);
    border-radius: 64% 36% 27% 73% / 55% 58% 42% 45%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(15px, 15px) rotate(5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* Location Section */
#ubicacion {
    background-color: white;
}

.location-container {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: 0 auto;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

#custom-map {
    height: 400px;
    width: 100%;
    border-radius: 8px;
}

.gm-style-cc {
    display: none;
}

.gm-style .gm-style-iw-c {
    padding: 12px !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.gm-style .gm-style-iw-d {
    overflow: hidden !important;
    padding: 0 !important;
}

.location-info {
    text-align: center;
}

.location-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--medium-brown);
}

.location-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.location-detail {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.location-detail i {
    font-size: 22px;
    color: var(--golden-yellow);
    margin-right: 10px;
    display: flex;
    align-items: center;
    height: 1em;
}

.location-detail span {
    font-size: 16px;
    color: var(--medium-gray);
    display: flex;
    align-items: center;
}

/* Social Media Section */
#redes {
    background-color: var(--dark-brown);
    color: white;
    text-align: center;
    padding: 50px 5%;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    font-size: 24px;
    color: var(--dark-brown);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    transform: translateY(-8px) scale(1.1);
    background-color: var(--golden-yellow);
}

/* Footer */
footer {
    background-color: var(--dark-brown);
    color: white;
    padding: 20px 5%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    height: 60px;
    filter: brightness(1.5);
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
}

.footer-contact-item i {
    color: var(--golden-yellow);
    margin-right: 8px;
}

.footer-hours {
    margin-bottom: 15px;
}

.footer-hours h4 {
    color: var(--golden-yellow);
    margin-bottom: 8px;
}

.footer-credit {
    font-size: 14px;
    color: var(--light-gray);
    margin-top: 20px;
}

/* Scroll Progress Bar */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: transparent;
    z-index: 1002;
}

.progress-bar {
    height: 100%;
    background: var(--golden-yellow);
    width: 0;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
}

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

/* Delivery Section */
#domicilio {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
    padding: 80px 5%;
}

.delivery-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.delivery-info {
    width: 100%;
}

.delivery-info h3 {
    font-size: 28px;
    color: var(--medium-brown);
    margin-bottom: 20px;
}

.delivery-info p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-brown);
    margin-bottom: 25px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 30px auto;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-button i {
    font-size: 20px;
    margin-right: 10px;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-button-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Pollo Campestre estilos especiales */
.menu-item.pollo-campestre {
    overflow: visible !important;
}

.menu-item.pollo-campestre .menu-item-image {
    overflow: visible;
}

.menu-item.pollo-campestre .menu-item-image img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(2.2);
    background: transparent;
    border-radius: 18px;
    box-shadow: none;
    object-fit: contain;
    width: 100%;
    height: 100%;
    max-width: 1000px;
    max-height: 1000px;
    mix-blend-mode: multiply;
    display: block;
    margin: 0 auto;
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 576px) {
    .menu-item.pollo-campestre .menu-item-image {
        height: 200px;
        min-height: 140px;
        max-height: 260px;
    }

    .menu-item.pollo-campestre .menu-item-image img {
        max-height: 240px;
        transform: translate(-50%, -50%) scale(2.2);
    }
}

/* Pollo Tradicional ajuste de imagen */
.menu-item .menu-item-image img[alt="Pollo Tradicional"] {
    width: 100%;
    height: 100%;
    max-width: 220px;
    max-height: 180px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    position: static;
    transform: none;
}

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 48px;
    }
    
    .hero-content p {
        font-size: 20px;
    }
    
    .menu-items {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .hero-logo {
        width: 352px;
    }
}

@media (max-width: 992px) {
    .historia-content {
        padding: 0 20px;
    }
    
    .location-container {
        flex-direction: column;
    }
    
    .map-container {
        margin-bottom: 30px;
    }
    
    .location-details {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-logo {
        width: 308px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 4px 12px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .menu-categories {
        gap: 10px;
    }
    
    .menu-category {
        padding: 15px 20px;
        min-width: 120px;
    }
    
    .menu-category i {
        font-size: 20px;
    }
    
    .menu-category span {
        font-size: 14px;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .category-header h3 {
        font-size: 28px;
    }
    
    .category-header p {
        font-size: 16px;
    }
    
    .social-icons {
        gap: 20px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .hero-logo {
        width: 264px;
    }
}

@media (max-width: 576px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .menu-item-image {
        height: 200px;
        min-height: 140px;
        max-height: 260px;
    }
    
    .menu-item-name,
    .menu-item-price {
        font-size: 16px;
    }
    
    .menu-item-description {
        font-size: 13px;
    }
    
    .whatsapp-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero-logo {
        width: 220px;
    }
    .location-detail {
        align-items: flex-start;
    }
    .location-detail i {
        font-size: 20px;
        margin-right: 8px;
        margin-top: 2px;
        align-items: flex-start;
        height: 1.2em;
        min-width: 22px;
        display: flex;
        justify-content: center;
    }
    .location-detail span {
        font-size: 15px;
        line-height: 1.3;
        display: flex;
        align-items: flex-start;
    }
}

@media (max-width: 400px) {
    .hero-logo {
        width: 176px;
    }
}

.promo-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.promo-image {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.8);
    transition: transform 0.3s ease;
    object-fit: cover;
    max-height: 400px;
}

.promo-container:hover .promo-image {
    transform: scale(1.05);
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px;
}

.delivery-logos-container {
    background-color: rgba(80, 80, 80, 0.7);
    padding: 20px 25px;
    border-radius: 15px;
    backdrop-filter: blur(2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    max-width: 90%;
}

.delivery-logos-container:hover {
    background-color: rgba(90, 90, 90, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.delivery-logos-container h3 {
    color: white;
    font-family: 'Arial', sans-serif;
    font-size: 2.5vw;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.delivery-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 20px;
}

.delivery-logo {
    height: auto;
    max-width: 104px;
    filter: brightness(1.2) contrast(1.1) drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    padding: 5px;
}

.delivery-logo:hover {
    transform: scale(1.15);
    filter: brightness(1.3) contrast(1.15) drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.4));
}

.delivery-logo.didi-logo {
    max-width: 114px;
}

@media (max-width: 768px) {
    .delivery-logos-container {
        padding: 15px 20px;
    }
    
    .delivery-logos-container h3 {
        font-size: 4.5vw;
    }
    
    .delivery-logo {
        max-width: 89px;
    }
    
    .delivery-logos {
        gap: 20px;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .delivery-logos-container {
        padding: 12px 15px;
    }
    
    .delivery-logos-container h3 {
        font-size: 5.5vw;
    }
    
    .delivery-logo {
        max-width: 76px;
    }
    
    .delivery-logos {
        gap: 15px;
        margin-top: 12px;
    }
}

/* Altura especial para Pollo Campestre en escritorio */
@media (min-width: 577px) {
    .menu-item.pollo-campestre .menu-item-image {
        height: 240px;
        min-height: 180px;
        max-height: 320px;
    }
}

@media (max-width: 900px) {
    .menu-item {
        width: 45vw;
        min-width: 220px;
        max-width: 95vw;
    }
}

@media (max-width: 600px) {
    .menu-items {
        gap: 16px;
        padding: 10px;
    }
    .menu-item {
        width: 98vw;
        min-width: 0;
        max-width: 100vw;
    }
}

.menu-item > img {
    margin: 0;
}

.menu-item.pollo-campestre > img {
    max-width: 352px;
    max-height: 256px;
}

/* Botón cerrar categoría global fijo arriba a la derecha */
.close-category-btn {
    position: fixed;
    top: 50%;
    right: 6vw;
    transform: translateY(-50%);
    z-index: 1200;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(99,64,54,0.12);
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, opacity 0.3s;
    opacity: 1;
    font-size: 22px;
}

.close-category-btn:hover {
    background: var(--golden-yellow);
    color: var(--dark-brown);
    box-shadow: 0 4px 16px rgba(163,93,63,0.18);
}

.close-category-btn i {
    pointer-events: none;
}

@media (max-width: 900px) {
    .close-category-btn {
        right: 2vw;
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .close-category-btn {
        right: 2vw;
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

/* Eliminar reglas antiguas relacionadas con .menu-category-section.active .close-category-btn y .close-category-btn-visible */
.menu-category-section.active .close-category-btn,
.close-category-btn-visible {
    display: none !important;
    opacity: 0 !important;
    animation: none !important;
}

/* Producto especial de promoción */
.menu-item.menu-item-promocion {
    border: 3px solid var(--golden-yellow);
    background: linear-gradient(135deg, #fffbe6 0%, #ffe0b2 100%);
    box-shadow: 0 8px 32px rgba(249,176,54,0.18);
    position: relative;
    animation: promoPulse 1.5s infinite alternate;
}
.menu-item.menu-item-promocion .menu-item-image {
    position: relative;
}
.promo-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #F9B036;
    color: #fff;
    font-weight: bold;
    font-size: 1em;
    padding: 4px 14px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(249,176,54,0.18);
    letter-spacing: 1px;
    z-index: 2;
    border: 2px solid #fff3cd;
}
.menu-item.menu-item-promocion .promo-price {
    color: #d32f2f;
    font-weight: bold;
    font-size: 1.2em;
}
.menu-item.menu-item-promocion .old-price {
    color: #888;
    text-decoration: line-through;
    font-size: 0.95em;
    margin-left: 8px;
    font-weight: normal;
}
@keyframes promoPulse {
    0% { box-shadow: 0 0 0 0 rgba(249,176,54,0.18); }
    100% { box-shadow: 0 0 16px 6px rgba(249,176,54,0.18); }
}

/* Producto especial Día de las Madres */
.menu-item.menu-item-madres {
    border: 3px solid #e91e63;
    background: linear-gradient(135deg, #fff0f6 0%, #ffe0ec 100%);
    box-shadow: 0 8px 32px rgba(233,30,99,0.13);
    position: relative;
    animation: madresPulse 1.5s infinite alternate;
}
.menu-item.menu-item-madres .menu-item-image {
    position: relative;
}
.madres-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e91e63;
    color: #fff;
    font-weight: bold;
    font-size: 1em;
    padding: 4px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(233,30,99,0.18);
    letter-spacing: 1px;
    z-index: 2;
    border: 2px solid #fff0f6;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}
.menu-item.menu-item-madres .madres-price {
    color: #e91e63;
    font-weight: bold;
    font-size: 1.2em;
}
.menu-item.menu-item-madres .old-price {
    color: #888;
    text-decoration: line-through;
    font-size: 0.95em;
    margin-left: 8px;
    font-weight: 400;
    opacity: 0.85;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    letter-spacing: 0.5px;
    text-decoration-thickness: 2px;
    text-decoration-color: #e91e63;
}
@keyframes madresPulse {
    0% { box-shadow: 0 0 0 0 rgba(233,30,99,0.13); }
    100% { box-shadow: 0 0 16px 6px rgba(233,30,99,0.18); }
}

.menu-category.destacado[data-category="descuentos"] {
    box-shadow: 0 0 0 0 #ff9800, 0 0 8px 2px #ffd700, 0 0 16px 4px #ff9800;
    border: 2.5px solid #ff9800;
    animation: flameGlow 1.2s infinite alternate;
    background: linear-gradient(120deg, #fffbe6 60%, #ffe0b2 100%);
    color: var(--dark-brown);
}

.menu-category[data-category="descuentos"]:hover, 
.menu-category[data-category="descuentos"].active {
    box-shadow: 0 0 0 0 #ff9800, 0 0 16px 4px #ffd700, 0 0 32px 8px #ff9800;
    border-color: #ffd700;
    background: linear-gradient(120deg, #fffbe6 60%, #ffe0b2 100%);
}

@keyframes flameGlow {
    0% {
        box-shadow: 0 0 0 0 #ff9800, 0 0 4px 1px #ffd700, 0 0 8px 2px #ff9800;
        border-color: #ff9800;
    }
    50% {
        box-shadow: 0 0 0 0 #ffd700, 0 0 12px 4px #ff9800, 0 0 24px 6px #ffd700;
        border-color: #ffd700;
    }
    100% {
        box-shadow: 0 0 0 0 #ff9800, 0 0 8px 2px #ffd700, 0 0 16px 4px #ff9800;
        border-color: #ff9800;
    }
}

/* Botón de categoría del menú lateral */
.boton-categoria {
    display: flex;
    flex-direction: column;
    /* ... */
}
/* Estado activo del botón de categoría */
.boton-categoria-activa {
    background-color: var(--golden-yellow);
}
/* Efecto destacado para la categoría de descuentos */
/* Removed empty rule set for .boton-categoria-destacada[data-categoria="descuentos"] */

/* Mantiene el tamaño visual del marcador al hacer zoom y en hover */
.leaflet-marker-icon {
  transform: scale(1.1);
  transition: transform 0.2s;
}
.leaflet-marker-icon:hover {
  /* Evita que crezca demasiado al hacer hover */
  transform: scale(1.13);
}

