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

:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --dark-bg: #1a1a1a;
    --light-text: #ffffff;
    --gray-text: #b0b0b0;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --premium-gold: #ffd700;
    --special-purple: #9b59b6;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    background-image: url('7aeefa89f69151b0a49c7281314bff85.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 600"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.4"/></svg>'),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,.015) 2px, rgba(255,255,255,.015) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,.02) 2px, rgba(0,0,0,.02) 4px),
        repeating-linear-gradient(45deg, rgba(255,255,255,.008) 0px, transparent 2px, transparent 4px, rgba(255,255,255,.008) 6px),
        repeating-linear-gradient(-45deg, rgba(0,0,0,.015) 0px, transparent 2px, transparent 4px, rgba(0,0,0,.015) 6px);
    opacity: 0.8;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(255, 107, 53, 0.2);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 10px rgba(255, 107, 53, 0.3));
}

.logo:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 15px;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.nav-link.active {
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(155, 89, 182, 0.15));
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

.pizza-slice-float {
    position: absolute;
    font-size: 4rem;
    opacity: 0.15;
    animation: floatAround 20s infinite;
    pointer-events: none;
}

.slice-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.slice-2 {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.slice-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes floatAround {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, -50px) rotate(90deg); }
    50% { transform: translate(0, -100px) rotate(180deg); }
    75% { transform: translate(-50px, -50px) rotate(270deg); }
}

.hero-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15), transparent);
    animation: pulse 8s infinite;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    animation-delay: 2s;
}

.circle-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.2); opacity: 0.05; }
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-word {
    display: inline-block;
    margin: 0 10px;
    animation: wordSlide 0.8s ease forwards;
    opacity: 0;
}

.title-word:nth-child(1) { animation-delay: 0.2s; color: var(--light-text); }
.title-word:nth-child(2) { animation-delay: 0.3s; color: var(--light-text); }
.title-word:nth-child(3) { animation-delay: 0.4s; }
.title-word:nth-child(4) { animation-delay: 0.5s; }

.highlight-word {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

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

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

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-text);
    margin-bottom: 30px;
    font-weight: 300;
    animation: fadeIn 1s ease 0.6s backwards;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: fadeIn 1s ease 0.8s backwards;
}

.feature-badge {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--light-text);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5);
    animation: fadeIn 1s ease 1s backwards;
    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.3), transparent);
    transition: left 0.5s ease;
}

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

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.7);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

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

/* Sizes Section */
.sizes-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 60px;
}

.sizes-display {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 80px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.size-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.pizza-svg {
    filter: drop-shadow(0 15px 30px rgba(139, 69, 19, 0.5));
    transition: transform 0.3s ease;
}

.pizza-svg:hover {
    transform: scale(1.05) rotate(3deg);
}

.pizza-svg.broto {
    width: 140px;
    height: 140px;
}

.pizza-svg.grande {
    width: 220px;
    height: 220px;
}

.pizza-svg.gigante {
    width: 300px;
    height: 300px;
}

.size-circle.broto {
    width: 140px;
    height: 140px;
}

.size-circle.grande {
    width: 220px;
    height: 220px;
}

.size-circle.gigante {
    width: 300px;
    height: 300px;
}

.size-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.size-info {
    font-size: 1.1rem;
    color: var(--gray-text);
    font-weight: 500;
}

/* Price Tables */
.price-table-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.6);
}

.price-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.price-card {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.price-card.special {
    border-color: var(--special-purple);
}

.price-card.premium {
    border-color: var(--premium-gold);
}

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.price-card.special h3 {
    color: var(--special-purple);
}

.price-card.premium h3 {
    color: var(--premium-gold);
}

.prices {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    font-size: 1.1rem;
}

.price {
    font-weight: 700;
    color: var(--secondary-color);
}

/* Menu Section */
.menu-section {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category {
    margin-bottom: 80px;
}

.category-title {
    margin-bottom: 40px;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-traditional {
    background: linear-gradient(135deg, #3498db, #2980b9);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.badge-special {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    box-shadow: 0 8px 25px rgba(155, 89, 182, 0.4);
}

.badge-premium {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

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

.menu-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.menu-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.menu-item.highlight {
    border-color: var(--premium-gold);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 107, 53, 0.05));
}

.menu-item.highlight:hover {
    border-color: var(--premium-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.menu-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--light-text);
    font-weight: 600;
}

.menu-item p {
    color: var(--gray-text);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Doces Section */
.doces-section {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(52, 152, 219, 0.1));
}

/* Bordas Section */
.bordas-section {
    background: rgba(0, 0, 0, 0.6);
    padding: 80px 0;
}

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

.borda-item {
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.borda-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.borda-item h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light-text);
}

.borda-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Esfirras Section */
.esfirras-section {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1), rgba(230, 126, 34, 0.1));
}

.esfirras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.esfirra-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.esfirra-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.esfirra-item.premium {
    border-color: var(--premium-gold);
}

.esfirra-item.premium:hover {
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.esfirra-item h4 {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 10px;
}

.esfirra-price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 10px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    animation: floatPulse 3s infinite;
    text-decoration: none;
    overflow: visible;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.whatsapp-float:hover {
    width: 180px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.7);
    justify-content: flex-start;
    padding-left: 20px;
}

.whatsapp-float:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.whatsapp-float-text {
    position: absolute;
    left: 60px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    z-index: 1;
}

.whatsapp-float:hover .whatsapp-float-text {
    opacity: 1;
}

.whatsapp-float.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100px);
}

@keyframes floatPulse {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    }
    50% {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.7);
    }
}

/* WhatsApp CTA */
.whatsapp-cta {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 25px 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    text-decoration: none;
    border-radius: 60px;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.6);
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 15px 50px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 15px 50px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.95);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--card-border);
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
}

.footer p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Mobile */
@media (max-width: 768px) {
    /* Header Mobile */
    .header {
        padding: 12px 0;
    }

    .header .container {
        padding: 0 20px;
    }

    .logo {
        height: 60px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 84px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        border-bottom: 2px solid var(--primary-color);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        padding: 15px 30px;
        border-radius: 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

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

    .nav-link:hover {
        background: rgba(255, 107, 53, 0.1);
        transform: none;
        box-shadow: none;
    }

    /* Hero Mobile */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 20px 60px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .title-word {
        margin: 0 4px;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
        margin-bottom: 25px;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }

    .feature-badge {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .cta-button {
        padding: 16px 40px;
        font-size: 1rem;
    }

    .cta-button svg {
        width: 16px;
        height: 16px;
    }

    .pizza-slice-float {
        font-size: 2rem;
        opacity: 0.08;
    }

    /* Sizes Section Mobile */
    .sizes-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }

    .sizes-display {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .size-item {
        width: 100%;
        max-width: 300px;
        align-items: center;
    }

    .pizza-svg.broto {
        width: 160px;
        height: 160px;
    }

    .pizza-svg.grande {
        width: 220px;
        height: 220px;
    }

    .pizza-svg.gigante {
        width: 260px;
        height: 260px;
    }

    .size-item h3 {
        font-size: 1.4rem;
    }

    .size-info {
        font-size: 0.95rem;
    }

    /* Price Tables Mobile */
    .price-table-section {
        padding: 60px 20px;
    }

    .price-tables {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .price-card {
        padding: 25px;
    }

    .price-card h3 {
        font-size: 1.4rem;
    }

    /* Menu Section Mobile */
    .menu-section {
        padding: 60px 20px;
    }

    .category-title {
        font-size: 1.2rem;
    }

    .badge {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .menu-item {
        padding: 18px;
    }

    .menu-item h4 {
        font-size: 1.1rem;
    }

    .menu-item p {
        font-size: 0.85rem;
    }

    /* Bordas Mobile */
    .bordas-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .borda-item {
        padding: 20px;
    }

    .borda-item h4 {
        font-size: 1.2rem;
    }

    .borda-price {
        font-size: 1.4rem;
    }

    /* Esfirras Mobile */
    .esfirras-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .esfirra-item {
        padding: 15px;
    }

    .esfirra-item h4 {
        font-size: 0.95rem;
    }

    .esfirra-price {
        font-size: 1rem;
    }

    /* WhatsApp Mobile */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }

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

    .whatsapp-float:hover {
        width: 60px;
        padding-left: 0;
        justify-content: center;
    }

    .whatsapp-float-text {
        display: none;
    }

    .whatsapp-cta {
        padding: 50px 20px;
    }

    .whatsapp-button {
        padding: 18px 35px;
        font-size: 1.3rem;
        gap: 12px;
    }

    .whatsapp-icon {
        width: 35px;
        height: 35px;
    }

    /* Footer Mobile */
    .footer {
        padding: 30px 20px;
    }

    .footer-logo {
        height: 60px;
    }

    .footer p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 50px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .title-word {
        margin: 0 2px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .pizza-svg.broto {
        width: 140px;
        height: 140px;
    }

    .pizza-svg.grande {
        width: 190px;
        height: 190px;
    }

    .pizza-svg.gigante {
        width: 230px;
        height: 230px;
    }

    .esfirras-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-button {
        padding: 16px 28px;
        font-size: 1.1rem;
    }

    .whatsapp-button span {
        font-size: 1rem;
    }
}

/* Scroll Animations */
.menu-item {
    animation: none;
    opacity: 1;
}

.price-card,
.borda-item,
.esfirra-item {
    animation: none;
    opacity: 1;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}