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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* WebGL Canvas Background */
        #webgl-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        .content-wrapper {
            position: relative;
            z-index: 1;
        }

        /* Header */
        header {
            background: rgba(245, 245, 245, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.5s;
        }

        header.scrolled {
            padding: 5px 50px;
            height: 65px;
            background: rgba(255, 255, 255, 0.98);
            
        }

        .logo img {
            width: 50px;
            height: auto;
        }

        .logo h1 {
            font-size: 16px;
            font-weight: 600;
            color: #333;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav a {
            text-decoration: none;
            color: #333;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            padding: 5px 0;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff4444;
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        nav a:hover {
            color: #ff4444;
        }
                         /* Botão Hamburguer - Visível apenas no Mobile */
                         .hamburger-menu {
                             display: none;
                             /* 🔴 Oculta por padrão no Desktop */
                             background: none;
                             border: none;
                             cursor: pointer;
                             padding: 10px;
                             z-index: 1001;
                         }
            
                         .hamburger-menu .bar {
                             display: block;
                             width: 25px;
                             height: 3px;
                             margin: 5px 0;
                             background-color: var(--secondary-color);
                             /* Cor do texto */
                             transition: all 0.3s ease-in-out;
                         }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 95vh;
            position: relative;
            overflow: hidden;
            padding-left: 300px;
            padding-right: 300px;
        }



        .hero-content {
            flex: 1;
            max-width: 500px;
        }



        .hero-content h2 {
            font-size: 48px;
            line-height: 1.2;
            margin-bottom: 30px;
            color: #222;
            background: linear-gradient(135deg, #222 0%, #ff4444 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta-button {
            background: linear-gradient(135deg, #ff4444 0%, #ff6b6b 100%);
            color: white;
            padding: 15px 35px;
            border: none;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(255, 68, 68, 0.3);
            margin-top: 20px;
        }

        .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;
        }

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

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 68, 68, 0.4);
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            perspective: 1000px;
        }

        .pizza-slice-container {
            position: relative;
            width: 450px;
            height: 450px;
        }

 
        .pizza-slice {
            width: 160%;
            height: auto;
            transition: transform 0.3s;
            margin-top: -120px;
        }


        /* About Section */
        .about {
            padding: 100px 50px;
            background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
        }

        .about-image {
            flex: 0.6;
            display: flex;
            justify-content: center;
            perspective: 1000px;
        }

        .pizza {
            width: 700px;
            height: 700px;
            object-fit: cover;
            
        }

        .about-content {
            flex: 1;
            max-width: 500px;
            animation: fadeInUp 1s ease-out;
        }

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

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .about-content h2 {
            font-size: 32px;
            margin-bottom: 25px;
            color: #222;
            position: relative;
            display: inline-block;
        }

        .about-content h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #ff4444, #ff6b6b);
            border-radius: 2px;
        }

        .about-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        /* Menu Section */
        .menu {
            padding: 100px 50px;
            background: #fafafa;
            position: relative;
        }

        .menu-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .menu-header h2 {
            font-size: 42px;
            margin-bottom: 10px;
            animation: fadeInUp 1s ease-out;
                        line-height: 1.2;
                        color: #ff3333;
        }

        .menu-header p {
            color: #666;
            line-height: 1.8;

        }

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

        .menu-item {
            background: white;
            border-radius: 20px;
            padding: 25px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            opacity: 0;
            transform: translateY(30px);
            animation: menuItemAppear 0.6s ease-out forwards;
        }

        @keyframes menuItemAppear {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .menu-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .menu-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .menu-item:nth-child(3) {
            animation-delay: 0.3s;
        }

        .menu-item:nth-child(4) {
            animation-delay: 0.4s;
        }

        .menu-item:nth-child(5) {
            animation-delay: 0.5s;
        }

        .menu-item:nth-child(6) {
            animation-delay: 0.6s;
        }

        .menu-item:nth-child(7) {
            animation-delay: 0.7s;
        }

        .menu-item:nth-child(8) {
            animation-delay: 0.8s;
        }

        .menu-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 40px rgba(65, 65, 65, 0.2);
        }

        .menu-item img {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
            transition: all 0.4s;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

  

        .menu-item h3 {
            font-size: 16px;
            margin-bottom: 10px;
            color: #222;
        }

        .menu-item p {
            font-size: 13px;
            color: #666;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .price {
            font-size: 24px;
            font-weight: bold;
            background: linear-gradient(135deg, #ff4444, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
        }

        .add-button {
            background: linear-gradient(135deg, #ff4444 0%, #ff6b6b 100%);
            color: white;
            padding: 10px 25px;
            border: none;
            border-radius: 20px;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .add-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.5s, height 0.5s;
        }

        .add-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .add-button:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 68, 68, 0.4);
        }

        .load-more {
            text-align: center;
            margin-top: 40px;
        }

        .load-more button {
            background: white;
            color: #333;
            padding: 12px 35px;
            border: 2px solid #ddd;
            border-radius: 25px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .load-more button:hover {
            border-color: #ff4444;
            color: #ff4444;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Location Section */


        .location {
            padding: 100px 50px;
            background: linear-gradient(115deg, rgb(240, 27, 20) 0%, #ef3c3c 100%);
            color: white;
            display: flex;
            gap: 60px;
            align-items: center;
            position: relative;
            overflow: hidden;
            height: 80vh;
        }

        .location::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 10s ease-in-out infinite;
        }

        .location-map {
            flex: 1;
            position: relative;
            z-index: 1;
            height: 400px;
            width: 300px;
        }

        .location-map iframe {
            width: 100%;
            height: 100%;
            border: none;
            margin: 0;
            padding: 0;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
        }

        .location-map p {
            font-size: 18px;
            color: rgb(255, 255, 255);
            margin-top: 15px;
            text-align: center;
            line-height: 1.6;
        }
       
        .location-info {
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .location-info h2 {
            font-size: 42px;
            margin-bottom: 10px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
        }

        .location-info p {
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .delivery-options {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
        }

        .delivery-option {
            background: white;
            color: #333;
            padding: 20px;
            border-radius: 15px;
            font-weight: 600;
            flex: 1;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
        }

        .delivery-option:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        /* Social Section */
        .social {
            background-image: url('../assets/pizza-div.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            width: 100%;
            text-align: right;
            color: white;
            z-index: 0;
            height: 90vh;
            padding-top: 300px;
        }

        .social h3 {
            font-size: 30px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
        margin-right: 200px;
            }

        .social-links {
            margin-top: 20px;
            margin-right: 300px;
            display: flex;
            gap: 30px;
            justify-content: right;
        }

        .social-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            padding: 10px 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 25px;
        }

        .social-links a:hover {
            background: white;
            color: #ff4444;
            transform: scale(1.1);
            border-color: white;
        }

   /* ========================================================================= */
   /* 8. FOOTER (Rodapé) */
   /* ========================================================================= */

   footer {
       background-color: #111111;
       color: #CCCCCC;
       padding: 60px 5%;
       font-size: 14px;
   }

   .footer-content {
       display: flex;
       justify-content: space-between;
       gap: 40px;
       max-width: 1200px;
       margin: 0 auto;
       margin-bottom: 20px;
   }

   .footer-column {
       flex-basis: 30%;
       min-width: 150px;
   }

   .footer-column h3 {
       font-size: 16px;
       font-weight: 700;
       margin-bottom: 15px;
       text-transform: uppercase;
       letter-spacing: 1px;
   }

   .footer-links ul {
       list-style: none;
   }

   .footer-links a {
       color: #d4d4d4;
       transition: color 0.2s;
   }

   .footer-links a:hover {
       color: white;
   }

   .social-icons {
       margin-top: 15px;
       margin-bottom: 15px;
   }

   .social-icons a {
       color: white;
       font-size: 20px;
       margin-right: 15px;
       transition: color 0.2s;
       text-decoration: none;
   }

   .social-icons a:hover {
       color: #ff4444;
   }

   /* Informações Legais e Copyright */
   .legal-info,
   .copyright {
       color: #cacaca;
       font-size: 12px;
   }

/* ========================================================================= */
/* RESPONSIVIDADE (Celular e Tablets Menores) */
/* ========================================================================= */
@media (max-width: 768px) {

    /* --- GLOBAL: Limpeza de Padding e Flexbox de Seções --- */

    header,
    .hero,
    .about,
    .menu,
    .location,
    .social,
    footer {
        padding-left: 5%;
        padding-right: 5%;
        padding-top: 50px;
        padding-bottom: 50px;
        min-height: auto;
    }

    /* Força as seções principais a empilhar no mobile */
    .hero,
    .about,
    .location {
        flex-direction: column;
    }

    /* --- 1. HEADER E HAMBÚRGUER --- */

    header {
        /* Desfaz o flex-direction: column; para que logo e botão fiquem lado a lado */
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 20px 5%;
        height: 65px;
        gap: 0;
    }

    header.scrolled {
        padding: 5px 5%;
        /* Ajuste o padding para o header pequeno */
    }

    /* Esconde o menu tradicional */
    nav {
        display: none;
        /* Oculta no modo padrão */
    }

    /* Mostra o botão hamburguer e o fixa */
    .hamburger-menu {
        display: block;
        position: absolute;
        /* Alinha com a posição normal do header */
        right: 20px;
        top: 20px;
        z-index: 1001;
    }

    /* O estilo do menu lateral que aparece */
    #nav-menu {
        display: block;
        /* Força a visualização no mobile */
        position: fixed;
        top: 0;
        right: 0;
        width: 40vw;
        /* Deixei mais largo para melhorar a usabilidade */
        height: 50vh;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        transform: translateX(100%);
        /* Esconde */
        transition: transform 0.4s ease-in-out;
        padding-top: 80px;
        z-index: 999;
    }

    #nav-menu.active {
        transform: translateX(0);
        /* Mostra */
    }

    /* Faz os links ficarem em coluna no menu lateral */
    #nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        /* Alinha os links à esquerda do painel */
        gap: 20px;
        padding: 20px;
    }

    /* --- 2. SEÇÃO HERO E ABOUT --- */

    .hero-image {
        order: -1;
        /* Imagem acima do texto */
        margin-bottom: 30px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .pizza-slice-container {
        width: 300px;
        height: 300px;
        margin-top: 0;
    }

    .about-image {
        margin-bottom: 30px;
    }

    .pizza {
        max-width: 90%;
        height: auto;
    }

    /* --- 3. CARDÁPIO E GRIDS --- */

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

    .menu-item img {
        width: 100px;
        height: 100px;
    }

    /* --- 4. LOCALIZAÇÃO (CORREÇÃO DA BAGUNÇA!) --- */

    .location {
        padding: 100px 5%; 
        /* Mais padding no topo para compensar o header */
        min-height: auto;
        height: auto;
        /* Deixa a altura ser definida pelo conteúdo (logo + menu) */
        text-align: center;
        /* Centraliza todo o texto */
        overflow: hidden;
        /* Garante que a imagem gigante não cause overflow */
        background: linear-gradient(115deg, rgb(240, 27, 20) 0%, #ef3c3c 100%);
        color: white;
        display: flex;
        gap: 60px;
        align-items: center;

    }


    .location-map {
        order: -1;
        /* Mapa no topo */
        width: 100%;
        height: 250px;
        margin-bottom: 20px;
    }

    .location-info h2 {
     display: none;
    }

    /* Faz o endereço se alinhar */
    .location-map p {
        text-align: left;
    }

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

    .delivery-options {
        flex-direction: column;
        gap: 10px;
    }

    /* --- 5. SEÇÃO SOCIAL (CORREÇÃO DAS MARGENS) --- */
.social {
    height: 80vh;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

    .social h3 {
        font-size: 24px;
        margin-right: 0;
        /* REMOVE MARGEM FIXA */
        text-align: center;
    }

    .social-links {
        display: flex;
                flex-direction: column;
                align-items: center;
        justify-content: center;
        margin-left: 250px;
        margin-top: 80px;
        gap: 15px;
    }

    /* --- 6. FOOTER --- */

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}