/* ===== VARIÁVEIS & RESET ===== */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --roxo-claro: #B98BC9;
    --roxo-escuro: #7C3AED;
    --rosa: #FF6B9D;
    --verde-whatsapp: #25D366;
    --verde-hover: #128C7E;
    --amarelo: #FFB347;
    --azul: #4A9EFF;
    --branco: #FFFFFF;
    --off-white: #FFF9F5;
    --cinza-claro: #F8F5FF;
    --cinza-medio: #E5E7EB;
    --cinza-escuro: #6B7280;
    --preto: #1F2937;
    
    --gradient-primary: linear-gradient(135deg, var(--roxo-claro), var(--rosa));
    --gradient-secondary: linear-gradient(135deg, var(--roxo-escuro), var(--roxo-claro));
    --gradient-whatsapp: linear-gradient(135deg, var(--verde-whatsapp), #128C7E);
    --gradient-icecream: linear-gradient(135deg, #FF6B9D, #FFB347);
    
    --shadow-sm: 0 2px 8px rgba(124, 58, 237, 0.1);
    --shadow-md: 0 4px 16px rgba(124, 58, 237, 0.15);
    --shadow-lg: 0 8px 32px rgba(124, 58, 237, 0.2);
    --shadow-xl: 0 20px 60px rgba(124, 58, 237, 0.25);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--preto);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease;
}

body.menu-open {
    overflow: hidden;
}

.no-js .header,
.no-js .hero {
    display: none;
}

/* ===== OTIMIZAÇÃO DE PERFORMANCE ===== */
img {
    content-visibility: auto;
    max-width: 100%;
    height: auto;
}

.client-photo, .gallery-img, .map-container iframe {
    aspect-ratio: auto;
}

/* ===== SCROLLBAR PERSONALIZADA ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-secondary);
    border-radius: 10px;
    border: 2px solid var(--off-white);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--roxo-escuro);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--roxo-claro) var(--off-white);
}

/* ===== HEADER SIMPLES E ELEGANTE ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    box-shadow: 0 2px 10px rgba(124, 58, 237, 0.05);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.08);
    padding: 0;
}

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

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
    gap: 20px;
}

/* Logo Clean */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1001;
    padding: 8px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-emoji {
    font-size: 2rem;
    animation: gentleFloat 6s ease-in-out infinite;
    display: inline-block;
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-4px) rotate(3deg);
    }
}

.logo-text {
    line-height: 1.1;
}

.logo-title {
    font-family: 'Pacifico', cursive;
    font-size: 1.8rem;
    color: var(--roxo-escuro);
    margin: 0;
    font-weight: 400;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--cinza-escuro);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Menu Toggle Simples */
.menu-toggle {
    display: none;
    background: transparent;
    border: 1.5px solid rgba(124, 58, 237, 0.2);
    font-size: 1.4rem;
    color: var(--roxo-escuro);
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    z-index: 1001;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.menu-toggle:hover {
    background: rgba(124, 58, 237, 0.05);
    border-color: var(--roxo-claro);
}

.menu-toggle.active {
    background: var(--roxo-escuro);
    color: white;
    border-color: transparent;
}

/* Menu Principal - Clean e Simples */
.nav-menu {
    display: flex;
    gap: 5px;
    flex: 1;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--cinza-escuro);
    font-weight: 500;
    padding: 12px 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    min-width: 85px;
    position: relative;
}

.nav-link i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
    color: var(--roxo-claro);
}

.nav-link span {
    font-weight: 600;
    letter-spacing: 0.2px;
    font-size: 0.85rem;
}

.nav-link:hover {
    color: var(--roxo-escuro);
    background: rgba(124, 58, 237, 0.05);
}

.nav-link:hover i {
    transform: translateY(-3px);
    color: var(--roxo-escuro);
}

.nav-link.active {
    color: var(--roxo-escuro);
    font-weight: 600;
}

.nav-link.active i {
    color: var(--roxo-escuro);
    transform: translateY(-2px);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--roxo-claro);
    border-radius: 2px;
}

/* Botão WhatsApp Clean */
.cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--verde-whatsapp);
    color: white;
    padding: 12px 24px;
    border-radius:  40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.cta-btn:hover {
    transform: translateY(-2px);
    background: #128C7E;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.cta-btn i {
    font-size: 1.1rem;
}

/* ===== HERO SECTION PREMIUM ===== */
.hero {
    padding: 120px 0 60px;
    background: linear-gradient(
        135deg,
        rgba(102, 250, 255, 0.6) 0%,
        rgba(248, 245, 255, 0.9) 50%,
        rgba(248, 245, 255, 1) 100%
    );
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Fundo dinâmico com gradientes animados */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(
            circle at 20% 30%,
            rgba(124, 58, 237, 0.08) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(255, 107, 157, 0.06) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 40% 80%,
            rgba(255, 179, 71, 0.05) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 60% 20%,
            rgba(74, 158, 255, 0.04) 0%,
            transparent 50%
        );
    z-index: -3;
    animation: gradientFloat 20s ease infinite;
}

@keyframes gradientFloat {
    0%, 100% {
        background-position: 
            20% 30%,
            80% 70%,
            40% 80%,
            60% 20%;
    }
    25% {
        background-position: 
            25% 35%,
            75% 65%,
            45% 75%,
            55% 25%;
    }
    50% {
        background-position: 
            20% 40%,
            80% 60%,
            35% 85%,
            65% 15%;
    }
    75% {
        background-position: 
            15% 35%,
            85% 65%,
            40% 70%,
            60% 30%;
    }
}

/* Partículas flutuantes (sorvetes) */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0C8.954 0 0 8.954 0 20s8.954 20 20 20 20-8.954 20-20S31.046 0 20 0zm0 36c-8.837 0-16-7.163-16-16S11.163 4 20 4s16 7.163 16 16-7.163 16-16 16z' fill='%237C3AED' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 0C6.716 0 0 6.716 0 15s6.716 15 15 15 15-6.716 15-15S23.284 0 15 0zm0 27c-6.627 0-12-5.373-12-12S8.373 3 15 3s12 5.373 12 12-5.373 12-12 12z' fill='%23FF6B9D' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.5 0C5.596 0 0 5.596 0 12.5S5.596 25 12.5 25 25 19.404 25 12.5 19.404 0 12.5 0zm0 22.5c-5.523 0-10-4.477-10-10s4.477-10 10-10 10 4.477 10 10-4.477 10-10 10z' fill='%23FFB347' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: repeat;
    z-index: -2;
    opacity: 0.4;
    animation: particleFloat 60s linear infinite;
}

@keyframes particleFloat {
    from {
        background-position: 
            0 0,
            100px 200px,
            200px 100px;
    }
    to {
        background-position: 
            1000px 1000px,
            1100px 1200px,
            1200px 1100px;
    }
}

/* Elementos decorativos flutuantes */
.hero-decorations {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.hero-decorations::before,
.hero-decorations::after {
    content: '🍦';
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: floatElement 20s ease-in-out infinite;
}

.hero-decorations::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-decorations::after {
    bottom: 30%;
    right: 15%;
    animation-delay: -10s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) translateX(20px) rotate(120deg);
    }
    66% {
        transform: translateY(20px) translateX(-30px) rotate(240deg);
    }
}

/* Luzes suaves */
.hero-lights {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(
            circle at 30% 40%,
            rgba(255, 255, 255, 0.6) 0%,
            transparent 70%
        ),
        radial-gradient(
            circle at 70% 60%,
            rgba(248, 245, 255, 0.8) 0%,
            transparent 70%
        );
    z-index: -2;
    mix-blend-mode: overlay;
    animation: lightShift 15s ease-in-out infinite;
}

@keyframes lightShift {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Container principal */
.hero-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

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

/* Conteúdo do hero */
.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    justify-items: center;
}

@media (min-width: 992px) {
    .hero-content {
        grid-template-columns: 1.2fr 1fr;
        gap: 80px;
        justify-items: start;
    }
}

/* Efeito de entrada para elementos filhos */
.hero-info > *,
.hero-photo-section > * {
    opacity: 0;
    transform: translateY(20px);
    animation: elementEntrance 0.8s ease-out forwards;
}

.hero-info > *:nth-child(1) { animation-delay: 0.2s; }
.hero-info > *:nth-child(2) { animation-delay: 0.4s; }
.hero-info > *:nth-child(3) { animation-delay: 0.6s; }
.hero-info > *:nth-child(4) { animation-delay: 0.8s; }

.hero-photo-section > * { animation-delay: 1s; }

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

/* Efeito de scroll suave */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Efeito parallax sutil */
@media (min-width: 768px) {
    .hero-info {
        transform: translateY(calc(var(--scroll) * 0.5));
        transition: transform 0.1s linear;
    }
    
    .hero-photo-section {
        transform: translateY(calc(var(--scroll) * 0.3));
        transition: transform 0.1s linear;
    }
}

/* Responsividade */
@media (max-width: 991px) {
    .hero {
        padding: 100px 0 40px;
        min-height: 90vh;
    }
    
    .hero::before {
        animation-duration: 30s;
    }
    
    .hero::after {
        animation-duration: 90s;
        opacity: 0.2;
    }
    
    .hero-content {
        gap: 30px;
        text-align: center;
    }
    
    .hero-decorations::before,
    .hero-decorations::after {
        font-size: 2rem;
        opacity: 0.05;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 30px;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .hero::before {
        animation: none;
    }
    
    .hero::after {
        animation-duration: 120s;
        opacity: 0.1;
    }
    
    .hero-decorations {
        display: none;
    }
    
    .hero-lights {
        animation: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 70px 0 20px;
    }
    
    .hero::after {
        display: none;
    }
    
    .hero-scroll-indicator {
        bottom: 15px;
    }
}

/* Modo de alto contraste */
@media (prefers-contrast: high) {
    .hero {
        background: linear-gradient(135deg, #E8F4FF 0%, #FFFFFF 100%);
    }
    
    .hero::before,
    .hero::after,
    .hero-decorations,
    .hero-lights {
        display: none;
    }
}

/* Modo reduzido de movimento */
@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .hero::after,
    .hero-decorations::before,
    .hero-decorations::after,
    .hero-lights,
    .hero-info > *,
    .hero-photo-section > *,
    .hero-scroll-indicator {
        animation: none !important;
    }
    
    .hero-container,
    .hero-info > *,
    .hero-photo-section > * {
        opacity: 1;
        transform: none;
    }
}

/* Impressão */
@media print {
    .hero {
        background: white !important;
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero::before,
    .hero::after,
    .hero-decorations,
    .hero-lights,
    .hero-scroll-indicator {
        display: none;
    }
}

/* Logo Mobile */
.mobile-logo {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

@media (min-width: 768px) {
    .mobile-logo {
        flex-direction: row;
        align-items: center;
        gap: 20px;
        margin-bottom: 40px;
    }
}

@media (min-width: 992px) {
    .mobile-logo {
        justify-content: flex-start;
    }
}

.logo-icon {
    position: relative;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.cone {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 45px;
    background: linear-gradient(135deg, #E0B16D, #C8963E);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    border-radius: 0 0 4px 4px;
    z-index: 1;
}

.scoop-1, .scoop-2, .scoop-3, .scoop-4 {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    animation: scoopFloat 3s ease-in-out infinite;
}

.scoop-1 {
    bottom: 25px;
    background: linear-gradient(135deg, #4A9EFF, #6BB5FF);
    animation-delay: 0s;
    z-index: 5;
}

.scoop-2 {
    bottom: 45px;
    background: linear-gradient(135deg, var(--roxo-escuro), #9D7AED);
    animation-delay: 0.2s;
    z-index: 4;
}

.scoop-3 {
    bottom: 65px;
    background: linear-gradient(135deg, var(--amarelo), #FFD166);
    animation-delay: 0.4s;
    z-index: 3;
}

@keyframes scoopFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

.logo-text {
    text-align: center;
}

@media (min-width: 768px) {
    .logo-text {
        text-align: left;
    }
}

.main-logo {
    font-family: 'Pacifico', cursive;
    font-size: 2.2rem;
    color: var(--preto);
    line-height: 1;
    letter-spacing: 3px;
    margin: 0;
}

@media (min-width: 768px) {
    .main-logo {
        font-size: 2.5rem;
    }
}

.location-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--roxo-escuro);
    margin-top: 5px;
    text-align: center;
    letter-spacing: 3px;
    margin: 0;
}

/* Título do Hero */
.hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--preto);
    margin-bottom: clamp(15px, 3vw, 25px);
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title .highlight {
    font-family: 'Pacifico', cursive;
    color: var(--amarelo);
    display: block;
    font-size: clamp(2.2rem, 5.5vw, 3.2rem);
    font-weight: 400;
    margin-top: clamp(5px, 1.5vw, 10px);
    text-shadow: 2px 2px 0px rgba(124, 58, 237, 0.1);
    line-height: 1;
}

/* Descrição do Hero */
.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: var(--preto);
    margin-bottom: clamp(20px, 4vw, 35px);
    line-height: 1.7;
    max-width: clamp(300px, 80vw, 550px);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    border-left: 5px solid var(--roxo-claro);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.08);
    position: relative;
}

.hero-description::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 15px;
    font-size: 4rem;
    color: var(--roxo-claro);
    opacity: 0.3;
    font-family: serif;
}

/* Botões do Hero */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
        margin: 0;
    }
}
/* ===== BOTÕES PRINCIPAIS - VERSÃO PREMIUM ===== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    min-width: 160px;
    min-height: 56px;
    transform-style: preserve-3d;
    perspective: 500px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ===== BOTÃO PRIMÁRIO (GRADIENTE ANIMADO) ===== */
.btn-primary {
    background: linear-gradient(
        135deg,
        var(--amarelo) 0%,
        #FF9D3D 25%,
        var(--roxo-escuro) 75%,
        #9D7AED 100%
    );
    background-size: 300% 300%;
    color: white;
    border: none;
    animation: gradientShift 4s ease infinite;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

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

/* Brilho interno */
.btn-primary::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.7s ease;
}

/* Efeito 3D no hover */
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    animation-play-state: paused;
    transform: 
        translateY(-4px) 
        translateZ(10px)
        scale(1.05);
    box-shadow: 
        0 12px 30px rgba(124, 58, 237, 0.4),
        0 6px 15px rgba(255, 179, 71, 0.3),
        0 0 30px rgba(185, 139, 201, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

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

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary:active {
    transform: 
        translateY(-2px) 
        translateZ(5px)
        scale(0.98);
    transition: all 0.1s ease;
    box-shadow: 
        0 6px 20px rgba(124, 58, 237, 0.3),
        0 3px 10px rgba(255, 179, 71, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* ===== BOTÃO WHATSAPP (PREMIUM) ===== */
.btn-whatsapp {
    background: linear-gradient(
        135deg,
        #25D366 0%,
        #1DA851 25%,
        #128C7E 75%,
        #0D775D 100%
    );
    background-size: 300% 300%;
    color: white;
    border: none;
    animation: whatsappGlow 3s ease infinite;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

@keyframes whatsappGlow {
    0%, 100% {
        background-position: 0% 50%;
        box-shadow: 
            0 4px 15px rgba(37, 211, 102, 0.3),
            0 0 10px rgba(37, 211, 102, 0.2);
    }
    50% {
        background-position: 100% 50%;
        box-shadow: 
            0 4px 20px rgba(37, 211, 102, 0.4),
            0 0 15px rgba(37, 211, 102, 0.3);
    }
}

/* Ícone pulsante */
.btn-whatsapp i {
    animation: iconPulse 2s ease infinite;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Efeito de "energia" */
.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        45deg,
        #25D366,
        #34B7F1,
        #25D366
    );
    background-size: 300% 300%;
    border-radius: 52px;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.btn-whatsapp:hover {
    animation-play-state: paused;
    transform: 
        translateY(-4px) 
        translateZ(10px)
        scale(1.05);
    box-shadow: 
        0 12px 30px rgba(37, 211, 102, 0.4),
        0 6px 15px rgba(37, 211, 102, 0.3),
        0 0 25px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp:hover::before {
    opacity: 1;
}

.btn-whatsapp:hover i {
    animation: none;
    transform: rotate(10deg) scale(1.2);
}

.btn-whatsapp:active {
    transform: 
        translateY(-2px) 
        translateZ(5px)
        scale(0.98);
    transition: all 0.1s ease;
    box-shadow: 
        0 6px 20px rgba(37, 211, 102, 0.3),
        0 3px 10px rgba(37, 211, 102, 0.2);
}

/* ===== BOTÃO SECUNDÁRIO (OPCIONAL) ===== */
.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--roxo-claro);
    color: var(--roxo-escuro);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 15px rgba(124, 58, 237, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--roxo-claro);
    color: white;
    border-color: var(--roxo-escuro);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(124, 58, 237, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* ===== EFEITOS COMUNS ===== */
.btn:focus {
    outline: none;
    animation: buttonFocus 0.5s ease;
}

@keyframes buttonFocus {
    0%, 100% {
        box-shadow: 
            0 0 0 0 rgba(124, 58, 237, 0),
            var(--shadow-lg);
    }
    50% {
        box-shadow: 
            0 0 0 10px rgba(124, 58, 237, 0.1),
            var(--shadow-lg);
    }
}

/* Efeito de clique */
.btn:active {
    transform: translateY(1px) scale(0.98);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
        min-width: 140px;
        min-height: 50px;
        gap: 8px;
    }
    
    .btn-primary, .btn-whatsapp {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    /* Reduzir animações em mobile para performance */
    .btn-primary, .btn-whatsapp {
        animation-duration: 6s;
    }
    
    .btn-primary:hover,
    .btn-whatsapp:hover {
        transform: translateY(-2px) scale(1.03);
    }
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 12px 20px;
        font-size: 0.9rem;
        min-height: 48px;
    }
    
    .btn-primary, .btn-whatsapp {
        padding: 14px 16px;
    }
    
    .cta-buttons {
        gap: 10px;
    }
    
    /* Desativar algumas animações em mobile para performance */
    @media (prefers-reduced-motion: reduce) {
        .btn-primary, .btn-whatsapp {
            animation: none;
        }
        
        .btn-primary::before,
        .btn-whatsapp::before {
            animation: none;
        }
        
        .btn-whatsapp i {
            animation: none;
        }
    }
}

/* ===== ANIMAÇÃO DE CARREGAMENTO DOS BOTÕES ===== */
@keyframes buttonEntrance {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.btn {
    animation: buttonEntrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.btn-whatsapp {
    animation-delay: 0.1s;
}

/* ===== BOTÕES DESABILITADOS ===== */
.btn:disabled,
.btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    animation: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.btn:disabled:hover,
.btn.disabled:hover {
    transform: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

/* ===== EFEITO DE "SUCESSO" TEMPORÁRIO ===== */
.btn-success {
    background: linear-gradient(135deg, #10B981, #059669) !important;
    animation: successPulse 2s ease !important;
}

@keyframes successPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(16, 185, 129, 0.6);
    }
}

/* ===== BOTÕES NO CONTAINER ===== */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
        margin: 30px auto 0;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* ===== TOOLTIP PARA BOTÕES ===== */
.btn[data-tooltip] {
    position: relative;
}

.btn[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--preto);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

/* Lado Direito - Foto com Animações */
.hero-photo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    order: -1;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .hero-photo-section {
        order: 1;
        margin-bottom: 0;
    }
}

.photo-container {
    position: relative;
    max-width: 350px;
    width: 100%;
}

@media (min-width: 768px) {
    .photo-container {
        max-width: 400px;
    }
}

.photo-wrapper {
    position: relative;
    padding: 25px;
}

@media (min-width: 768px) {
    .photo-wrapper {
        padding: 30px;
    }
}

/* Anéis concêntricos */
.ring {
    position: absolute;
    border-radius: var(--radius-full);
    border: 1.5px solid;
    animation: ringPulse 3s ease-in-out infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 320px;
    height: 320px;
    border-color: rgba(185, 139, 201, 0.15);
    animation-delay: 0s;
}

.ring-2 {
    width: 360px;
    height: 360px;
    border-color: rgba(124, 58, 237, 0.1);
    animation-delay: 0.5s;
}

.ring-3 {
    width: 400px;
    height: 400px;
    border-color: rgba(255, 179, 71, 0.05);
    animation-delay: 1s;
}

@media (max-width: 767px) {
    .ring-1 {
        width: 280px;
        height: 280px;
    }
    
    .ring-2 {
        width: 320px;
        height: 320px;
    }
    
    .ring-3 {
        width: 360px;
        height: 360px;
    }
}

@keyframes ringPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.95);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Foto do cliente */
.client-photo {
    position: relative;
    width: 320px;
    height: 420px;
    overflow: hidden;
    margin: 0 auto;
    z-index: 2;
    border-radius: 20px 20px 8px 8px;
    box-shadow: 
        0 15px 35px rgba(124, 58, 237, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.08);
    background: white;
    border: 3px solid transparent;
    background-clip: padding-box;
    animation: aparecerSuave 1.5s ease-out;
}

/* Animação de entrada suave */
@keyframes aparecerSuave {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Borda de gradiente animada */
.client-photo::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(
        45deg,
        var(--roxo-claro),
        var(--rosa),
        var(--amarelo),
        var(--roxo-claro)
    );
    background-size: 300% 300%;
    border-radius: 22px 22px 10px 10px;
    z-index: -1;
    animation: moverGradiente 8s ease infinite;
    opacity: 0.8;
}

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

/* Imagem com corte triangular na base */
.client-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 85%,
        50% 100%,
        0 85%
    );
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.02);
}

/* Efeito hover suave */
.client-photo:hover .client-img {
    transform: scale(1.03);
    filter: brightness(1.05);
}

.client-photo:hover::before {
    animation: moverGradiente 4s ease infinite;
    opacity: 1;
}

/* Badge minimalista e elegante */
.badge-minimal {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 15px 20px;
    max-width: 200px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.badge-minimal:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
}

.badge-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        var(--roxo-claro),
        var(--rosa),
        var(--amarelo)
    );
    border-radius: 12px 0 0 12px;
}

.badge-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 8px;
}

.badge-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.badge-role {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

/* Pingos simples e discretos */
.pingo-decorativo {
    position: absolute;
    bottom: -15px;
    width: 8px;
    height: 20px;
    background: linear-gradient(to bottom, var(--roxo-claro), transparent);
    border-radius: 0 0 4px 4px;
    opacity: 0.6;
    animation: pingarSuave 3s ease-in-out infinite;
}

.pingo-decorativo:nth-child(1) {
    left: 30%;
    animation-delay: 0s;
}

.pingo-decorativo:nth-child(2) {
    left: 50%;
    animation-delay: 0.5s;
}

.pingo-decorativo:nth-child(3) {
    left: 70%;
    animation-delay: 1s;
}

@keyframes pingarSuave {
    0%, 100% {
        transform: translateY(0) scaleY(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(8px) scaleY(1.3);
        opacity: 0.8;
    }
}

/* Sombra dinâmica */
.client-photo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 20px;
    background: radial-gradient(ellipse at center, 
        rgba(124, 58, 237, 0.2) 0%,
        rgba(124, 58, 237, 0.1) 40%,
        transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulsarSombra 4s ease-in-out infinite;
}

@keyframes pulsarSombra {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(0.95);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.05);
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ANIMAÇÃO SCROLL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* ===== MENU SECTION - LIMPA E RESPONSIVA ===== */
.menu-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, #faf6ff 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Fundo sutil sem emojis intrusivos */
.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 157, 0.01) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    padding: 0 15px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--preto);
    font-family: 'Pacifico', cursive;
    text-align: center;
    line-height: 1.2;
}

.section-title i {
    display: inline-block;
    font-size: 2rem;
    margin-right: 10px;
    vertical-align: middle;
    color: var(--roxo-escuro);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--cinza-escuro);
    max-width: 600px;
    margin: 15px auto 0;
    font-weight: 300;
    line-height: 1.5;
    padding: 0 15px;
}

/* Botão do Cardápio - Responsivo */
.cardapio-btn-container {
    text-align: center;
    margin: 25px 0 40px;
    padding: 20px 15px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(255, 107, 157, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.btn-cardapio-imagem {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient-secondary);
    color: white;
    padding: 14px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.btn-cardapio-imagem:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.3);
}

.cardapio-notice {
    font-size: 0.9rem;
    color: var(--cinza-escuro);
    font-style: italic;
    margin-top: 10px;
    display: block;
}

/* CATEGORIA DO CARDÁPIO - Limpa e moderna */
.menu-category {
    background: white;
    border-radius: 16px;
    padding: 25px 20px;
    margin-bottom: 30px;
    border: 2px solid rgba(124, 58, 237, 0.1);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.08);
    position: relative;
    overflow: hidden;
}


.menu-category::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 40px 40px 0;
    border-color: transparent rgba(124, 58, 237, 0.05) transparent transparent;
    z-index: 0;
}

.category-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--roxo-escuro), #9D7AED);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

.category-title-group {
    flex: 1;
    width: 100%;
}

.category-title {
    font-size: 1.6rem;
    color: var(--preto);
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

/* Linha abaixo do título no lugar da lateral */
.category-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--roxo-claro), var(--rosa));
    border-radius: 2px;
    margin: 8px auto 0;
    transition: width 0.3s ease;
}

.menu-category:hover .category-title::after {
    width: 70px;
}

.category-subtitle {
    font-size: 0.95rem;
    color: var(--cinza-escuro);
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.9;
}

/* GRID DE ITENS - Responsiva */
.menu-items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.menu-item-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 2px solid rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(124, 58, 237, 0.05);
    position: relative;
}

/* Borda colorida no topo no lugar da lateral */
.menu-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--roxo-claro), var(--rosa));
    border-radius: 12px 12px 0 0;
    opacity: 0.8;
}

.menu-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.12);
    border-color: rgba(185, 139, 201, 0.4);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 10px; /* Adiciona espaço controlado entre os elementos */
}

.item-header h4 {
    font-size: 1.2rem;
    color: var(--preto);
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
  
}

.item-tag {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(185, 139, 201, 0.1));
    color: var(--roxo-escuro);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(124, 58, 237, 0.2);
    white-space: nowrap;
    flex-shrink: 0; 
}

.item-description {
    color: var(--cinza-escuro);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 400;
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.item-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--roxo-escuro);
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    position: relative;
    padding-left: 20px;
}

.item-price::before {
    content: 'R$';
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--roxo-claro);
    position: absolute;
    left: 0;
    top: 2px;
}

.item-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--verde-whatsapp), #128C7E);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.2);
    min-width: 120px;
    flex-shrink: 0;
}

.item-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* AÇAÍ DESTAQUE */
.menu-category:first-child .menu-item-card:first-child {
    border: 2px solid rgba(185, 139, 201, 0.4);
}

.menu-category:first-child .menu-item-card:first-child::before {
    background: linear-gradient(90deg, var(--amarelo), #FF9A3D);
    height: 5px;
}

.menu-category:first-child .menu-item-card:first-child::after {
    content: '🌟 MAIS PEDIDO';
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, var(--amarelo), #FF9A3D);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255, 179, 71, 0.3);
    z-index: 2;
}

/* Acompanhamentos */
.acompanhamentos-box {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    border: 2px solid rgba(124, 58, 237, 0.1);
    box-shadow: 0 3px 10px rgba(124, 58, 237, 0.05);
}

.acompanhamentos-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--preto);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.acompanhamentos-title.extras-title {
    margin-top: 20px;
}

.acompanhamentos-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.acomp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cinza-escuro);
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.2s ease;
}

.acomp-item:hover {
    background: rgba(124, 58, 237, 0.05);
    transform: translateX(3px);
}

.acomp-item i {
    color: var(--roxo-escuro);
    font-size: 0.8rem;
    min-width: 16px;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.extra-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--cinza-medio);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.extra-card:hover {
    border-color: var(--roxo-claro);
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(124, 58, 237, 0.1);
}

.extra-name {
    font-weight: 500;
    color: var(--preto);
}

.extra-price {
    font-weight: 700;
    color: var(--rosa);
    font-size: 0.9rem;
}

/* Menu simples */
.menu-items-simple {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.simple-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border: 2px solid rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
}

.simple-item:hover {
    border-color: var(--roxo-claro);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.1);
}

.simple-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--preto);
}

.simple-info p {
    font-size: 0.85rem;
    color: var(--cinza-escuro);
    margin: 0;
}

.simple-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--roxo-escuro);
    white-space: nowrap;
    margin-left: 10px;
}

.category-action {
    text-align: center;
    margin-top: 20px;
}

.btn-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient-secondary);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
    width: 100%;
    max-width: 300px;
}

.btn-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.3);
}

/* Preview do Cardápio - Versão simplificada */
.cardapio-preview-wrapper {
    text-align: center;
    margin: 25px 0 35px;
}

.preview-title {
    font-size: 1.5rem;
    color: var(--roxo-escuro);
    margin-bottom: 20px;
    font-weight: 600;
}

.preview-container {
    max-width: 500px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--roxo-claro);
}

.preview-img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    display: block;
}

.preview-hint {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--cinza-escuro);
    opacity: 0.8;
}

/* ===== RESPONSIVIDADE ===== */

/* Tablets (768px e acima) */
@media (min-width: 768px) {
    .menu-section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .cardapio-btn-container {
        padding: 25px;
        margin: 30px 0 50px;
    }
    
    .btn-cardapio-imagem {
        max-width: 400px;
        font-size: 1.1rem;
        padding: 16px 35px;
    }
    
    .menu-category {
        padding: 30px;
        border-radius: 20px;
    }
    
    .category-header {
        flex-direction: row;
        text-align: left;
        gap: 20px;
    }
    
    .category-title::after {
        margin: 8px 0 0;
    }
    
    .menu-items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .extras-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .acompanhamentos-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .acomp-item {
        flex: 0 0 calc(50% - 10px);
    }
    
    .btn-category,
    .btn-cardapio-imagem {
        width: auto;
    }
    
    .preview-container {
        max-width: 600px;
    }
}

/* Desktops pequenos (992px e acima) */
@media (min-width: 992px) {
    .menu-section {
        padding: 100px 0;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .menu-category {
        padding: 35px;
        margin-bottom: 40px;
    }
    
    .menu-items-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .extras-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .acompanhamentos-list {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .acomp-item {
        flex: 0 0 calc(33.333% - 10px);
    }
}

/* Smartphones pequenos (até 360px) */
@media (max-width: 360px) {
    .menu-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .menu-category {
        padding: 20px 15px;
    }
    
    .category-title {
        font-size: 1.4rem;
    }
    
    .item-header h4 {
        font-size: 1.1rem;
    }
    
    .item-price {
        font-size: 1.3rem;
    }
    
    .item-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        min-width: 100px;
    }
    
    .extras-grid {
        grid-template-columns: 1fr;
    }
    
    .simple-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .simple-price {
        margin-left: 0;
        align-self: flex-end;
    }
    
    .preview-container {
        max-width: 90%;
    }
}

/* Telas com largura muito estreita */
@media (max-width: 300px) {
    .cardapio-btn-container,
    .acompanhamentos-box {
        padding: 15px 10px;
    }
    
    .btn-cardapio-imagem,
    .btn-category {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .item-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .item-btn {
        width: 100%;
    }
}

/* Impressão */
@media print {
    .menu-section {
        background: white !important;
        padding: 40px 0 !important;
    }
    
    .menu-category,
    .menu-item-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        page-break-inside: avoid;
    }
    
    .btn-cardapio-imagem,
    .item-btn,
    .btn-category {
        display: none !important;
    }
    
    .menu-category::after,
    .menu-item-card::before {
        display: none !important;
    }
}

/* ===== ESTABLISHMENT SECTION ===== */
.establishment-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f5ff 100%);
    position: relative;
}

.establishment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--roxo-claro), var(--rosa), var(--amarelo));
}

.establishment-gallery {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 2px solid rgba(124, 58, 237, 0.1);
    box-shadow: var(--shadow-sm);
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--preto);
    text-align: center;
}

.gallery-subtitle {
    text-align: center;
    color: var(--cinza-escuro);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

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

.gallery-item {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    display: block;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 250px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-md);
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(124, 58, 237, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.gallery-caption {
    text-align: center;
    font-weight: 600;
    color: var(--preto);
    font-size: 1.1rem;
    margin-top: 10px;
    padding: 0 5px;
}

.gallery-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--cinza-escuro);
    font-size: 0.95rem;
    padding-top: 20px;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
    text-align: center;
}

.gallery-note i {
    color: var(--roxo-escuro);
    font-size: 1.2rem;
}

/* ===== DELIVERY SECTION ===== */
.delivery-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffd16694 0%, #fff9f5 100%);
    position: relative;
    overflow: hidden;
}

.delivery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 157, 0.05) 0%, transparent 50%);
}

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

.delivery-intro {
    text-align: center;
    margin-bottom: 60px;
}

.delivery-intro .section-subtitle {
    color: var(--cinza-escuro);
    max-width: 600px;
    margin: 20px auto 0;
}

.delivery-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.stat-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 2px solid rgba(124, 58, 237, 0.1);
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--roxo-claro);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.stat-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--preto);
}

.stat-info p {
    font-size: 1rem;
    color: var(--cinza-escuro);
    line-height: 1.5;
}

.delivery-process {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(124, 58, 237, 0.1);
}

.process-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--preto);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--preto);
}

.step-content p {
    color: var(--cinza-escuro);
    line-height: 1.6;
}

.delivery-cta {
    text-align: center;
    background: var(--gradient-secondary);
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: var(--shadow-xl);
}

.cta-content h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-delivery {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    color: var(--roxo-escuro);
    padding: 18px 40px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.btn-delivery:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    background: var(--off-white);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 80px 0;
    background: white;
    position: relative;
    z-index: 1;
    text-align: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-content .section-title {
    text-align: center;
    justify-content: center;
    margin-bottom: 40px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    max-width: 600px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--cinza-medio);
    transition: var(--transition);
    text-align: left;
}

.contact-card:hover {
    transform: translateX(10px);
    border-color: var(--roxo-claro);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--preto);
}

.contact-number {
    font-size: 1.1rem;
    color: var(--preto);
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--cinza-escuro);
    margin-bottom: 10px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--verde-whatsapp);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--verde-hover);
}

.contact-message {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(255, 107, 157, 0.05));
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 2px solid rgba(124, 58, 237, 0.1);
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.contact-message h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--preto);
    text-align: center;
}

.contact-message p {
    color: var(--cinza-escuro);
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: center;
}

.map-container {
    margin: 25px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(124, 58, 237, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: none;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--preto);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .logo-emoji {
    font-size: 2.5rem;
}

.footer-logo h3 {
    font-family: 'Pacifico', cursive;
    font-size: 1.8rem;
    color: white;
    margin: 0 0 5px 0;
}

.footer-logo p {
    color: var(--cinza-medio);
    margin: 0;
}

.footer-tagline {
    font-size: 1rem;
    color: var(--cinza-medio);
    line-height: 1.6;
    max-width: 350px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: var(--cinza-medio);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cinza-medio);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-contact-item:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--cinza-medio);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* ===== RESPONSIVIDADE COMPLETA ===== */

/* Menu Mobile */
@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 75px;
        left: 20px;
        right: 20px;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 16px;
        border: 1px solid rgba(124, 58, 237, 0.1);
        display: none;
        z-index: 999;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-link {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        padding: 16px 20px;
        border-radius: 12px;
        font-size: 1rem;
        margin-bottom: 5px;
        min-width: auto;
    }
    
    .nav-link i {
        font-size: 1.3rem;
        width: 30px;
        text-align: center;
        margin-right: 12px;
    }
    
    .nav-link.active::after {
        left: 20px;
        transform: translateX(0);
        width: 3px;
        height: 60%;
        bottom: 20%;
        top: 20%;
    }
    
    .cta-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }

    .mobile-logo {
        justify-content: center;
    }
    
    .cta-buttons {
        margin: auto;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .menu-items-grid {
        grid-template-columns: 1fr;
    }
    
    .extras-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .delivery-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .establishment-gallery {
        padding: 25px 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-img {
        height: 180px;
    }
}

/* Celulares (576px - 767px) */
@media (max-width: 767px) {
    .hero {
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .hero-photo-section {
        order: -1;
        margin-bottom: 30px;
    }
    
    .hero-info {
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
    
    .hero-title .highlight {
        font-size: clamp(2rem, 6.5vw, 2.5rem);
    }
    
    .hero-description {
        font-size: clamp(1rem, 3vw, 1.1rem);
        margin-left: auto;
        margin-right: auto;
        padding: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .client-photo {
        width: 250px;
        height: 330px;
    }
    
    .badge-minimal {
        bottom: 15px;
        left: 15px;
        padding: 12px 15px;
        max-width: 170px;
        border-radius: 10px;
    }
    
    .badge-name {
        font-size: 1.1rem;
    }
    
    .badge-role {
        font-size: 0.75rem;
    }
    
    .menu-category {
        padding: 25px 20px;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .delivery-stats {
        grid-template-columns: 1fr;
    }
    
    .delivery-process {
        padding: 30px 20px;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .delivery-cta {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .nav-menu {
        top: 70px;
        padding: 15px;
        max-height: calc(100vh - 70px);
    }
    
    .nav-link {
        padding: 15px;
        font-size: 1rem;
    }
    
    .menu-toggle {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* Celulares pequenos (até 575px) */
@media (max-width: 575px) {
    .navbar {
        height: 70px;
        gap: 15px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .logo-title {
        font-size: 1.5rem;
    }
    
    .logo-emoji {
        font-size: 1.8rem;
    }
    
    .nav-menu {
        top: 70px;
        left: 16px;
        right: 16px;
        padding: 16px;
    }
    
    .nav-link {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
    
    .cta-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .cta-btn span {
        display: none;
    }
    
    .cta-btn i {
        font-size: 1.2rem;
        margin: 0;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: clamp(2.1rem, 7vw, 1.9rem);
    }
    
    .hero-title .highlight {
        font-size: clamp(2.5rem, 7.5vw, 2.2rem);
    }
    
    .client-photo {
        width: 270px;
        height: 310px;
    }
    
    .section-title {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .menu-category {
        padding: 20px 15px;
    }
    
    .extras-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-tagline {
        margin: 0 auto;
    }
    
    .footer-links,
    .footer-contact {
        align-items: center;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-img {
        height: 220px;
    }
    
    .gallery-note {
        flex-direction: column;
        gap: 8px;
    }
}

/* Celulares muito pequenos (até 375px) */
@media (max-width: 375px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .main-logo {
        font-size: 1.6rem;
    }
    
    .location-text {
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: clamp(1.4rem, 7.5vw, 1.6rem);
        padding: 0 10px;
        line-height: 1.1;
    }
    
    .hero-title .highlight {
        font-size: clamp(1.6rem, 8vw, 1.8rem);
        line-height: 1;
        margin-top: 3px;
    }
    
    .hero-description {
        font-size: 0.85rem;
        padding: 12px;
        line-height: 1.4;
        margin: 0 10px 20px;
    }
    
    .cta-buttons {
        gap: 10px;
        padding: 0 10px;
    }
    
    .cta-buttons .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        min-height: 44px;
    }
    
    /* Foto do cliente ajustada */
    .client-photo {
        width: 240px;
        height: 320px;
        margin: 0 auto;
    }
    
    /* Anéis ajustados para telas pequenas */
    .ring-1 {
        width: 240px;
        height: 240px;
    }
    
    .ring-2 {
        width: 280px;
        height: 280px;
        display: none; /* Esconde o segundo anel em telas muito pequenas */
    }
    
    .ring-3 {
        display: none;
    }
    
    .scoop-4 {
        display: none;
    }
    
    /* Ajuste do wrapper da foto */
    .photo-wrapper {
        padding: 15px;
    }
    
    /* Badge minimal menor */
    .badge-minimal {
        bottom: 15px;
        left: 15px;
        padding: 10px 12px;
        max-width: 150px;
        border-radius: 10px;
    }
    
    .badge-name {
        font-size: 1rem;
    }
    
    .badge-role {
        font-size: 0.7rem;
    }
    
    /* Botão do cardápio */
    .btn-cardapio-imagem {
        padding: 10px 18px;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .cardapio-btn-container {
        padding: 15px;
        margin: 15px 0 25px;
    }
    
    .cardapio-notice {
        font-size: 0.8rem;
        padding: 0 5px;
    }
    
    /* Menu mobile ajustado */
    .nav-menu {
        top: 70px;
        left: 10px;
        right: 10px;
        padding: 15px;
        max-height: 65vh;
    }
    
    .nav-link {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .nav-link i {
        font-size: 1.2rem;
        width: 25px;
        margin-right: 10px;
    }
    
    /* Container geral */
    .container {
        padding: 0 12px;
    }
    
    /* Hero content ajustado */
    .hero-content {
        gap: 25px;
    }
    
    .hero-info {
        padding: 0 5px;
    }
    
    /* Mobile logo ajustado */
    .mobile-logo {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .logo-icon {
        width: 60px;
        height: 60px;
    }
    
    /* Scoops menores */
    .scoop-1, .scoop-2, .scoop-3 {
        width: 35px;
        height: 35px;
    }
    
    .scoop-1 {
        bottom: 20px;
    }
    
    .scoop-2 {
        bottom: 38px;
    }
    
    .scoop-3 {
        bottom: 56px;
    }
    
    /* Cones menores */
    .cone {
        width: 20px;
        height: 30px;
    }
}

/* iPhone SE / telas estreitas (até 320px) */
@media (max-width: 320px) {
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero-title {
        font-size: clamp(1.3rem, 7vw, 1.5rem);
    }
    
    .hero-title .highlight {
        font-size: clamp(1.5rem, 7.5vw, 1.7rem);
    }
    
    .client-photo {
        width: 220px;
        height: 290px;
    }
    
    .ring-1 {
        width: 220px;
        height: 220px;
    }
    
    .photo-wrapper {
        padding: 10px;
    }
    
    .hero-description {
        font-size: 0.8rem;
        padding: 10px;
        margin: 0 5px 15px;
    }
    
    .cta-buttons .btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .btn-cardapio-imagem {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    /* Forçar largura total dos botões */
    .btn {
        width: 100% !important;
    }
    
    .badge-minimal {
        bottom: 10px;
        left: 10px;
        padding: 8px 10px;
        max-width: 130px;
    }
    
    .badge-name {
        font-size: 0.9rem;
    }
    
    .badge-role {
        font-size: 0.65rem;
    }
}

/* ===== ESTILOS ADICIONAIS ===== */

/* Suporte para navegadores antigos */
@supports not (backdrop-filter: blur(10px)) {
    .header {
        background: rgba(255, 255, 255, 0.98);
    }
    
    .badge-minimal {
        background: rgba(255, 255, 255, 0.98);
    }
}

/* Impressão */
@media print {
    .whatsapp-btn,
    .menu-toggle,
    .nav-menu,
    .cta-btn,
    .item-btn,
    .btn-category,
    .btn-delivery,
    .btn-whatsapp-large,
    .btn-outline,
    .ring,
    .scoop-float,
    .ice-drops {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .header {
        position: static;
        background: white !important;
        box-shadow: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 60px 0;
    }
    
    .client-photo {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}

/* Classes para dispositivos touch */
.touch-device .menu-item-card:hover,
.touch-device .contact-card:hover,
.touch-device .stat-card:hover {
    transform: none;
}

/* Classe para quando o menu está aberto */
body.menu-open {
    overflow: hidden;
}

/* ===== MODAL DE AÇAÍ CORRIGIDO ===== */
.acai-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999; /* Z-INDEX ALTÍSSIMO */
    display: none; /* Começa escondido */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.acai-modal[style*="display: flex"] {
    display: flex !important;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--roxo-claro);
    animation: modalSlideIn 0.3s ease-out;
    z-index: 2;
}

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

/* Estrutura do modal */
.modal-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(124, 58, 237, 0.1);
}

.modal-header h3 {
    color: var(--roxo-escuro);
    font-size: 1.8rem;
    margin: 0;
}

.modal-close {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--cinza-escuro);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(124, 58, 237, 0.1);
    color: var(--roxo-escuro);
}

/* Seções do modal */
.modal-section {
    margin-bottom: 25px;
    padding: 20px;
    background: var(--off-white);
    border-radius: 12px;
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.modal-section h4 {
    color: var(--roxo-escuro);
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Checkboxes estilizados */
.checkbox-group {
    display: grid;
    gap: 12px;
    margin-bottom: 15px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: white;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    border-color: var(--roxo-claro);
    transform: translateX(5px);
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--roxo-escuro);
    cursor: pointer;
}

.checkbox-item label {
    flex: 1;
    cursor: pointer;
    font-weight: 500;
    color: var(--preto);
}

.checkbox-item .price {
    font-weight: 700;
    color: var(--rosa);
    font-size: 1rem;
}

/* Opção de pular extras */
.skip-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.skip-option:hover {
    border-color: var(--verde-whatsapp);
    background: rgba(37, 211, 102, 0.15);
}

.skip-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--verde-whatsapp);
    cursor: pointer;
}

.skip-option span {
    flex: 1;
    cursor: pointer;
    font-weight: 600;
    color: var(--preto);
}

/* Contador */
.counter {
    display: inline-block;
    padding: 5px 12px;
    background: var(--roxo-escuro);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Total */
.total-section {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(255, 107, 157, 0.1));
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin: 25px 0;
}

.total-section h4 {
    color: var(--preto);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

#total-price-display {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--roxo-escuro);
    text-shadow: 0 2px 4px rgba(124, 58, 237, 0.2);
}

/* Botões do modal */
.modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-cancel, .btn-confirm {
    flex: 1;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-cancel {
    background: rgba(107, 114, 128, 0.1);
    color: var(--cinza-escuro);
}

.btn-cancel:hover {
    background: rgba(107, 114, 128, 0.2);
    transform: translateY(-3px);
}

.btn-confirm {
    background: linear-gradient(135deg, var(--verde-whatsapp), #128C7E);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-confirm:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Responsivo */
@media (max-width: 600px) {
    .modal-content {
        padding: 20px;
        max-height: 90vh;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .acai-modal {
        padding: 10px;
    }
}

/* IMPORTANTE: Garantir que o modal aparece */
.acai-modal[style*="display: flex"],
.acai-modal[style*="display:block"] {
    display: flex !important;
}


.hero-description {
    background: #FFF9F5;
    border: 2px solid var(--amarelo);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    max-width: 90vw;
    margin: 0 auto 2rem;
    position: relative;
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 3.5vw, 1.15rem);
    color: #5C4033;
    line-height: 1.6;
    text-align: center;
    font-weight: 500;
    font-style: italic;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.15);
    
    /* Garantir visibilidade */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Seta do balão */
.hero-description::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: var(--roxo-escuro) transparent transparent transparent;
}

/* Fundo interno */
.hero-description::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px dashed rgba(139, 69, 19, 0.2);
    border-radius: 15px;
    pointer-events: none;
}

/* Para mobile específico */
@media (max-width: 768px) {
    .hero-description {
        padding: 1.25rem 1.5rem;
        margin-bottom: 1.5rem;
        border-width: 2px;
    }
}