/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #7c3aed;
    --primary-dark: #6d28d9;
    --primary-light: #a78bfa;
    --secondary: #ec4899;
    --accent: #f59e0b;
    --dark: #1e1b4b;
    --text: #1f2937;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-light: #f9fafb;
    --bg-purple: #faf5ff;
    --shadow: rgba(124, 58, 237, 0.1);
    --shadow-lg: rgba(124, 58, 237, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header/Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.logo-icon {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.btn-pedido {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-pedido:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

/* Menu Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10000;
    position: relative;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active {
    opacity: 0;
    pointer-events: none;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    transition: right 0.4s ease;
    z-index: 9999;
    padding: 2rem;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu {
    right: 0;
}

.menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg-light);
    border: none;
    font-size: 2.5rem;
    color: var(--primary);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.menu-close:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

.mobile-menu-header {
    padding: 2rem 0 1.5rem;
    border-bottom: 2px solid var(--bg-light);
    margin-bottom: 1.5rem;
}

.mobile-menu-header .logo {
    margin-bottom: 0.5rem;
    justify-content: flex-start;
}

.mobile-menu-subtitle {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.mobile-nav-menu {
    list-style: none;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-menu li {
    width: 100%;
}

.mobile-nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 1.125rem;
    display: block;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a:active {
    background: var(--bg-purple);
    color: var(--primary);
    transform: translateX(8px);
}

.mobile-btn-pedido {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    color: white !important;
    padding: 1.25rem 1.25rem !important;
    border-radius: 15px;
    text-align: center;
    margin-top: 1rem;
    font-weight: 700;
    box-shadow: 0 5px 20px var(--shadow-lg);
}

.mobile-btn-pedido:hover {
    transform: translateX(0) scale(1.02) !important;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--bg-purple) 0%, #fff 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Hero Image */
.hero-image {
    position: relative;
    height: 500px;
}

.hero-image-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    opacity: 0.1;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.floating-card .emoji {
    font-size: 2rem;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 5%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 15%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Produtos Section */
.produtos {
    padding: 100px 20px;
    background: var(--bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: var(--bg-purple);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.produto-card {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 5px 30px var(--shadow);
    transition: all 0.3s;
    position: relative;
}

.produto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-lg);
}

.produto-card.featured {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.produto-card.featured .produto-title,
.produto-card.featured .produto-description,
.produto-card.featured .size {
    color: white;
}

.produto-image {
    position: relative;
    margin-bottom: 1.5rem;
}

.produto-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.produto-badge.premium {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: var(--dark);
}

.produto-icon {
    font-size: 5rem;
    text-align: center;
}

.produto-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.produto-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.produto-sizes {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.size {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
}

.produto-card.featured .size {
    background: rgba(255, 255, 255, 0.2);
}

.btn-add {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-add:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.produto-card.featured .btn-add {
    background: white;
    color: var(--primary);
}

/* Complementos Section */
.complementos {
    padding: 80px 20px;
    background: var(--bg-purple);
}

.complementos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.complemento-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.complemento-item:hover {
    transform: translateY(-5px);
}

.complemento-emoji {
    font-size: 3rem;
}

.complemento-name {
    font-weight: 600;
    font-size: 1.125rem;
}

.complemento-price {
    color: var(--primary);
    font-weight: 700;
}

/* Sobre Section */
.sobre {
    padding: 100px 20px;
    background: white;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-image {
    position: relative;
    height: 500px;
}

.sobre-image-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 30px;
    opacity: 0.9;
}

.sobre-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-emoji {
    font-size: 2.5rem;
}

.sobre-badge strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
}

.sobre-badge span {
    font-size: 0.875rem;
    color: var(--text-light);
}

.sobre-text {
    text-align: left;
}

.sobre-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.sobre-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    font-size: 2rem;
}

.feature h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.feature p {
    color: var(--text-light);
}

/* Pedido Section */
.pedido {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.pedido-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pedido .section-title {
    color: white;
}

.pedido-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.pedido-opcoes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pedido-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.125rem;
}

.pedido-btn.whatsapp {
    background: #25D366;
    color: white;
}

.pedido-btn.phone {
    background: white;
    color: var(--primary);
}

.pedido-btn.ifood {
    background: #EA1D2C;
    color: white;
}

.pedido-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ifood-icon {
    font-size: 1.5rem;
}

.horario-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 2rem;
}

.horario-info h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.horario-info p {
    opacity: 0.9;
}

/* Contato Section */
.contato {
    padding: 100px 20px;
    background: var(--bg-light);
}

.contato-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contato-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 30px var(--shadow);
    transition: transform 0.3s;
}

.contato-card:hover {
    transform: translateY(-5px);
}

.contato-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contato-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.contato-card p {
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .btn-pedido {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu-overlay {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-image {
        display: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .sobre-content {
        grid-template-columns: 1fr;
    }

    .sobre-image {
        height: 300px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .produtos-grid {
        grid-template-columns: 1fr;
    }
}

