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

:root {
    --cyan: #76e2e2;
    --magenta: #df2397;
    --magenta-dark: #c41d84;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fff5f9 0%, #e8fafa 100%);
    min-height: 100vh;
    color: #333;
}

/* Header */
header {
    background: linear-gradient(180deg, var(--magenta) 0%, var(--magenta-dark) 100%);
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(180deg, var(--magenta) 0%, var(--magenta-dark) 100%);
    border-radius: 0 0 50% 50%;
}

.logo-badge {
    display: inline-block;
    padding: 1.5rem 2rem;
}

.logo-badge h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: white;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.gourmet {
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    color: var(--cyan);
    display: block;
    margin-top: -10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Main */
main {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Section Titles */
h2 {
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    color: var(--magenta);
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Menu Section */
.menu-section {
    background: linear-gradient(180deg, #fff9e6 0%, #fff5dc 100%);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(223, 35, 151, 0.15);
    position: relative;
    overflow: hidden;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: linear-gradient(90deg,
        var(--magenta) 0%,
        var(--magenta) 20%,
        var(--cyan) 20%,
        var(--cyan) 40%,
        var(--magenta) 40%,
        var(--magenta) 60%,
        var(--cyan) 60%,
        var(--cyan) 80%,
        var(--magenta) 80%);
    border-radius: 20px 20px 0 0;
}

.menu-container {
    padding-top: 0.5rem;
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.menu-list li {
    font-family: 'Pacifico', cursive;
    font-size: 1.3rem;
    color: var(--magenta);
    text-align: center;
    padding: 0.5rem;
    transition: transform 0.2s ease;
}

.menu-list li:hover {
    transform: scale(1.05);
    color: var(--magenta-dark);
}

/* Payment Section */
.payment-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(223, 35, 151, 0.15);
    text-align: center;
    border: 3px solid var(--cyan);
}

.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.qr-code {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 3px solid var(--magenta);
    padding: 10px;
    background: white;
}

.qr-container p {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--magenta) 0%, var(--magenta-dark) 100%);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(223, 35, 151, 0.3);
}

.contact-section h2 {
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--cyan);
    color: var(--magenta-dark);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(118, 226, 226, 0.4);
}

.whatsapp-btn:hover {
    background: #5fd3d3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(118, 226, 226, 0.5);
}

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

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.5);
}

.instagram-btn svg {
    width: 28px;
    height: 28px;
}

.contact-text {
    color: white;
    font-size: 1rem;
    opacity: 0.9;
}

/* Footer */
footer {
    text-align: center;
    padding: 1.5rem;
    color: var(--magenta);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 480px) {
    .logo-badge h1 {
        font-size: 1.8rem;
    }

    .gourmet {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .menu-list li {
        font-size: 1.1rem;
    }

    .whatsapp-btn,
    .instagram-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .qr-code {
        max-width: 200px;
    }
}

/* Sprinkles animation */
@keyframes sprinkle {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(10deg);
    }
}

.menu-list li:nth-child(odd) {
    animation: sprinkle 3s ease-in-out infinite;
}

.menu-list li:nth-child(even) {
    animation: sprinkle 3s ease-in-out infinite;
    animation-delay: 0.5s;
}
