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

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000000;
    color: #FFFFFF;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 111, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(139, 69, 19, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    animation: slideDown 0.8s ease-out;
}

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

.logo {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FF6F00 0%, #FF8C00 50%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    margin-bottom: 20px;
    filter: drop-shadow(0 6px 12px rgba(255, 111, 0, 0.5));
}

.tagline {
    font-size: 1.2rem;
    color: #FFB366;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
}

.products {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.menu-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 50px;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.menu-section {
    margin-bottom: 40px;
    background: rgba(45, 24, 16, 0.7);
    border: 2px solid rgba(255, 111, 0, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FF6F00, #FFA500, #FF6F00);
    border-radius: 20px 20px 0 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6F00 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 111, 0, 0.3);
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(69, 42, 27, 0.4);
    border-left: 4px solid #FF6F00;
    padding: 20px 28px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.05rem;
    border: 1px solid rgba(255, 111, 0, 0.15);
}

.menu-item:hover {
    background: rgba(255, 111, 0, 0.15);
    transform: translateX(10px);
    box-shadow: 0 5px 25px rgba(255, 111, 0, 0.3);
    border-left-color: #FFA500;
}

.menu-item.special {
    background: rgba(255, 111, 0, 0.2);
    border-left-color: #FFA500;
    font-weight: 700;
    border: 2px solid rgba(255, 111, 0, 0.4);
}

.menu-item.special:hover {
    background: rgba(255, 111, 0, 0.3);
    box-shadow: 0 8px 30px rgba(255, 111, 0, 0.5);
}

.menu-item.aderezzo,
.menu-item.bebida {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-left: none;
    border-top: 4px solid #FF6F00;
    padding: 18px 20px;
    transform: none;
}

.menu-item.aderezzo:hover,
.menu-item.bebida:hover {
    border-top-color: #FFA500;
    transform: translateY(-5px);
}

.item-name {
    color: #FFFFFF;
    font-weight: 600;
    flex: 1;
    text-align: left;
}

.menu-item.aderezzo .item-name,
.menu-item.bebida .item-name {
    text-align: center;
    margin-bottom: 10px;
}

.item-price {
    color: #FF6F00;
    font-weight: 700;
    font-size: 1.2rem;
    margin-left: 20px;
}

.menu-item.aderezzo .item-price,
.menu-item.bebida .item-price {
    margin-left: 0;
}

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

.product-card {
    background: linear-gradient(145deg, rgba(69, 42, 27, 0.6) 0%, rgba(45, 24, 16, 0.8) 100%);
    border: 2px solid rgba(255, 111, 0, 0.25);
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF6F00, #FFA500);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 45px rgba(255, 111, 0, 0.4);
    background: linear-gradient(145deg, rgba(69, 42, 27, 0.8) 0%, rgba(45, 24, 16, 0.95) 100%);
    border-color: #FF6F00;
}

.product-emoji {
    font-size: 4.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(255, 111, 0, 0.3));
}

.product-name {
    font-size: 1.5rem;
    color: #FFFFFF;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
}

.cta-button {
    padding: 18px 55px;
    font-size: 1.25rem;
    background: linear-gradient(135deg, #FF6F00 0%, #FF8C00 50%, #FFA500 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(255, 111, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 2px;
    animation: slideUp 0.8s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 111, 0, 0.7);
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 50%, #FFB84D 100%);
}

.cta-button:active {
    transform: translateY(0);
}

/* Modal de ubicaciones */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease-out;
}

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

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: linear-gradient(145deg, rgba(45, 24, 16, 0.98) 0%, rgba(69, 42, 27, 0.96) 100%);
    border: 3px solid rgba(255, 111, 0, 0.5);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
    animation: slideUp 0.4s ease-out;
    max-width: 520px;
    backdrop-filter: blur(25px);
}

.modal-title {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #FF6F00 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 35px;
    letter-spacing: 2px;
    font-weight: 800;
    text-transform: uppercase;
}

.location-buttons {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 25px;
}

.location-btn {
    padding: 18px 40px;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #FF6F00 0%, #FF8C00 50%, #FFA500 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(255, 111, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 1.5px;
}

.location-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 111, 0, 0.7);
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 50%, #FFB84D 100%);
}

.location-btn:active {
    transform: translateY(0);
}

.close-btn {
    padding: 14px 32px;
    font-size: 1.05rem;
    background: transparent;
    color: #FFB366;
    border: 2px solid #FFB366;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
}

.close-btn:hover {
    background: rgba(255, 111, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 111, 0, 0.4);
    border-color: #FF6F00;
    color: #FF6F00;
}

/* Frito - El personaje */
.frito {
    position: fixed;
    width: 100px;
    height: 130px;
    pointer-events: none;
    z-index: 10;
    background: url('Frito.png') center/contain no-repeat;
}

.frito-body {
    display: none;
}

.frito-cone {
    width: 50px;
    height: 65px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #d0d0d0 100%);
    position: absolute;
    bottom: 0;
    left: 15px;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    box-shadow: inset -5px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.frito-fries {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    z-index: 3;
}

.frito-fries::before,
.frito-fries::after {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 3px;
}

.frito-fries::before {
    width: 8px;
    height: 35px;
    left: 5px;
    top: 0;
    transform: rotate(-15deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.frito-fries::after {
    width: 8px;
    height: 35px;
    left: 20px;
    top: 0;
    transform: rotate(15deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.frito-topping {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 30px;
    height: 25px;
    background: linear-gradient(135deg, #FF6B35, #FF4500);
    clip-path: polygon(0% 40%, 20% 0%, 80% 0%, 100% 40%, 80% 100%, 20% 100%);
    z-index: 4;
    box-shadow: 0 3px 8px rgba(255, 69, 0, 0.4);
}

.frito-eyes {
    display: flex;
    gap: 14px;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.frito-eye {
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.frito-smile {
    width: 16px;
    height: 8px;
    border: 2px solid #000;
    border-top: none;
    border-radius: 0 0 12px 12px;
    position: absolute;
    top: 73px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.frito-arms {
    position: absolute;
    display: flex;
    gap: 50px;
    width: 100%;
    top: 65px;
    left: 0;
    z-index: 1;
}

.frito-arm {
    width: 14px;
    height: 8px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.frito-legs {
    position: absolute;
    display: flex;
    gap: 18px;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.frito-leg {
    width: 8px;
    height: 20px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.frito-shoe {
    width: 12px;
    height: 6px;
    background: linear-gradient(135deg, #333, #000);
    border-radius: 2px;
    position: absolute;
    bottom: -6px;
    left: -2px;
}

/* Animaciones de Frito */
.frito.walking {
    animation: walk 8s linear forwards;
}

@keyframes walk {
    0% { transform: translateX(0); }
    100% { transform: translateX(100vw); }
}

.frito.running {
    animation: run 4s linear forwards;
}

@keyframes run {
    0% { transform: translateX(0); }
    100% { transform: translateX(100vw); }
}

.frito.flying {
    animation: fly 8s ease-in-out forwards;
}

@keyframes fly {
    0%, 100% { 
        transform: translateX(0) translateY(0) rotateZ(0deg);
    }
    25% {
        transform: translateX(20vw) translateY(-100px) rotateZ(10deg);
    }
    50% { 
        transform: translateX(50vw) translateY(-150px) rotateZ(0deg);
    }
    75% {
        transform: translateX(80vw) translateY(-80px) rotateZ(-10deg);
    }
}

.leg-animation {
    animation: legWalk 0.4s ease-in-out infinite;
}

@keyframes legWalk {
    0%, 100% {
        transform: rotateZ(0deg);
    }
    50% {
        transform: rotateZ(-20deg);
    }
}

.arm-animation {
    animation: armSwing 0.4s ease-in-out infinite;
}

@keyframes armSwing {
    0%, 100% {
        transform: rotateZ(0deg);
    }
    50% {
        transform: rotateZ(30deg);
    }
}

.heart-float {
    position: fixed;
    font-size: 1.8rem;
    animation: floatUp 4s ease-out forwards;
    pointer-events: none;
    opacity: 0.7;
}

@keyframes floatUp {
    0% {
        opacity: 0.7;
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-250px) translateX(60px) rotate(15deg);
    }
}

.info-section {
    position: fixed;
    bottom: 25px;
    left: 25px;
    font-size: 1rem;
    color: #FFB366;
    z-index: 5;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.social-links {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    gap: 18px;
    z-index: 5;
}

.social-links a {
    color: #FF6F00;
    text-decoration: none;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 3px 6px rgba(255, 111, 0, 0.5));
}

.social-links a:hover {
    transform: scale(1.25);
    color: #FFA500;
}

@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }
    .tagline {
        font-size: 1.1rem;
    }
    .menu-wrapper {
        max-width: 100%;
        padding: 0 10px;
    }
    .menu-section {
        padding: 15px;
        margin-bottom: 25px;
    }
    .section-title {
        font-size: 1.4rem;
    }
    .menu-items.grid-3 {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .menu-item {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    .item-price {
        font-size: 1rem;
        margin-left: 10px;
    }
    .products {
        gap: 15px;
    }
    .product-card {
        min-width: 150px;
        padding: 15px;
    }
    .product-emoji {
        font-size: 3rem;
    }
}
