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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(26, 0, 0, 0.95) 0%, rgba(45, 0, 0, 0.95) 25%, rgba(31, 10, 0, 0.95) 50%, rgba(45, 18, 0, 0.95) 75%, rgba(26, 0, 0, 0.95) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('attached_assets/stock_images/grilled_meat_barbecu_8818df8c.jpg') center/cover no-repeat;
    opacity: 0.12;
    z-index: 0;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 69, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 140, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.container {
    width: 90%;
    max-width: 480px;
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 1;
}

.logo-container {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
    perspective: 1000px;
}

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

.logo {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(255, 140, 0, 0.4));
    animation: logoRotate3D 8s linear infinite;
    transform-style: preserve-3d;
}

@keyframes logoRotate3D {
    0%, 100% {
        transform: rotateY(0deg);
    }
    25% {
        transform: rotateY(-90deg);
    }
    50% {
        transform: rotateY(0deg);
    }
    75% {
        transform: rotateY(90deg);
    }
}

.content {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 2rem;
    border: 1px solid rgba(255, 140, 0, 0.3);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

.buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out both;
}

.btn:nth-child(1) { animation-delay: 0.4s; }
.btn:nth-child(2) { animation-delay: 0.5s; }
.btn:nth-child(3) { animation-delay: 0.6s; }
.btn:nth-child(4) { animation-delay: 0.7s; }
.btn:nth-child(5) { animation-delay: 0.8s; }

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

.btn:hover::before {
    left: 100%;
}

.icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-location {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF4757 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

.btn-location:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-menu {
    background: linear-gradient(135deg, #FFB84D 0%, #FF8C00 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

.btn-menu:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-especial {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a0000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    font-weight: 700;
}

.btn-especial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-ifood {
    background: linear-gradient(135deg, #EA1D2C 0%, #C8102E 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(234, 29, 44, 0.4);
}

.btn-ifood:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(234, 29, 44, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn:active {
    transform: translateY(-1px);
}

.social {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 140, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFD700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 10px;
}

.social-link:hover {
    color: #FFA500;
    transform: scale(1.05);
    background: rgba(255, 215, 0, 0.1);
}

.social-icon {
    width: 24px;
    height: 24px;
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 1.5rem 1rem;
    }
    
    .content {
        padding: 2rem 1.5rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    .subtitle {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 0.9rem 1.2rem;
        font-size: 1rem;
    }
    
    .logo {
        width: 180px;
    }
}

@media (max-width: 360px) {
    .logo {
        width: 160px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
}
