/* ==========================================================================
   MOBILE.CSS — Ana Maria Restaurante & Café Colonial
   UX/UI MOBILE EXPERIENCE — Otimizado para toque, prazer e conversão
   Desenvolvido por Merlô Digital
   ========================================================================== */

/* ==========================================================================
   1. SAFE AREAS & VARIÁVEIS MOBILE
   ========================================================================== */
:root {
    /* Safe areas para notch e Dynamic Island */
    --sat: env(safe-area-inset-top, 0px);
    --sar: env(safe-area-inset-right, 0px);
    --sab: env(safe-area-inset-bottom, 0px);
    --sal: env(safe-area-inset-left, 0px);

    /* Tipografia mobile */
    --font-hero-mobile: clamp(2rem, 9vw, 3.2rem);
    --font-h2-mobile: clamp(1.6rem, 6vw, 2.4rem);
    --font-h3-mobile: clamp(1.3rem, 5vw, 1.8rem);
    --font-body-mobile: clamp(0.95rem, 3.8vw, 1.1rem);

    /* Espaçamentos mobile */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;

    /* Touch targets (mínimo 44px WCAG) */
    --touch-target: 48px;

    /* Transições mobile */
    --transition-snap: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Sombras mobile */
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4), 0 1px 4px rgba(0, 0, 0, 0.3);
    --shadow-card-active: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-glow-primary: 0 0 20px rgba(241, 127, 4, 0.35);
    --shadow-glow-soft: 0 0 40px rgba(241, 127, 4, 0.15);

    /* Glassmorphism */
    --glass-bg: rgba(26, 26, 26, 0.85);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(16px);
}

/* ==========================================================================
   2. KEYFRAMES — ANIMAÇÕES CENTRALIZADAS
   ========================================================================== */

/* Entrada suave de baixo */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Entrada da esquerda */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Entrada da direita */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Pop com bounce */
@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }
    70% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Shimmer de carregamento */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Pulso suave para CTAs */
@keyframes softPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(241, 127, 4, 0.5);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(241, 127, 4, 0);
    }
}

/* Wiggle de atenção */
@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    15% { transform: rotate(-8deg); }
    30% { transform: rotate(8deg); }
    45% { transform: rotate(-5deg); }
    60% { transform: rotate(5deg); }
    75% { transform: rotate(-2deg); }
}

/* Float suave para elementos decorativos */
@keyframes floatGentle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* Ripple de toque */
@keyframes rippleEffect {
    0% {
        transform: scale(0);
        opacity: 0.6;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Gradiente animado para hero */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Brilho que varre o elemento */
@keyframes sweepGlow {
    0% { transform: translateX(-100%) skewX(-15deg); }
    100% { transform: translateX(200%) skewX(-15deg); }
}

/* Rotação contínua suave */
@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Fade in simples */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Entrada com scale de cima */
@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Blink de cursor */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Heartbeat para ícone de coração */
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.2); }
    28% { transform: scale(1); }
    42% { transform: scale(1.15); }
    70% { transform: scale(1); }
}

/* Bounce leve */
@keyframes bounceLite {
    0%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Ondas de fundo */
@keyframes waveMove {
    0% { transform: translateX(0) translateZ(0) scaleY(1); }
    50% { transform: translateX(-25%) translateZ(0) scaleY(0.8); }
    100% { transform: translateX(-50%) translateZ(0) scaleY(1); }
}

/* Typing cursor */
@keyframes typingCursor {
    0%, 100% { border-right-color: var(--primary-color); }
    50% { border-right-color: transparent; }
}

/* ==========================================================================
   3. RESET E BASE MOBILE
   ========================================================================== */
@media (max-width: 768px) {

    /* Scroll suave nativo */
    html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
        -webkit-tap-highlight-color: transparent;
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        /* Textura sutil de fundo */
        background-image:
            radial-gradient(ellipse at 20% 20%, rgba(241, 127, 4, 0.03) 0%, transparent 60%),
            radial-gradient(ellipse at 80% 80%, rgba(175, 78, 59, 0.03) 0%, transparent 60%);
    }

    /* Seleção de texto com cor da marca */
    ::selection {
        background-color: rgba(241, 127, 4, 0.35);
        color: #fff;
    }

    /* Scrollbar mobile webkit */
    ::-webkit-scrollbar {
        width: 3px;
    }
    ::-webkit-scrollbar-track {
        background: var(--bg-darker);
    }
    ::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 10px;
    }

    /* Focus visible melhorado */
    *:focus-visible {
        outline: 2px solid var(--primary-color);
        outline-offset: 3px;
        border-radius: 4px;
    }

    /* Imagens responsivas */
    img {
        max-width: 100%;
        height: auto;
    }

/* ==========================================================================
   4. TOPBAR MOBILE
   ========================================================================== */

    .topbar {
        display: none;
    }

/* ==========================================================================
   5. HEADER & NAVEGAÇÃO MOBILE
   ========================================================================== */

    header {
        padding: 0.75rem 1.2rem;
        /* Glassmorphism */
        background: var(--glass-bg) !important;
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        border-bottom: 1px solid rgba(241, 127, 4, 0.3);
        position: sticky;
        top: 0;
        z-index: 1000;
        /* Padding seguro para notch */
        padding-top: calc(0.75rem + var(--sat));
        transition: all 0.3s var(--transition-smooth);
    }

    header.sticky-active {
        padding: 0.5rem 1.2rem;
        padding-top: calc(0.5rem + var(--sat));
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(241, 127, 4, 0.1);
        background: rgba(11, 11, 11, 0.95) !important;
    }

    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        flex-wrap: nowrap;
    }

    /* Logo compacta no mobile */
    .brand-logo {
        gap: 10px;
        text-decoration: none;
        /* Feedback ao toque */
        -webkit-tap-highlight-color: transparent;
        transition: transform 0.2s var(--transition-snap);
    }

    .brand-logo:active {
        transform: scale(0.95);
    }

    .logo-img {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        border: 2px solid rgba(241, 127, 4, 0.4);
        box-shadow: 0 0 15px rgba(241, 127, 4, 0.2);
        transition: all 0.3s var(--transition-snap);
    }

    header.sticky-active .logo-img {
        width: 42px;
        height: 42px;
    }

    .brand-text {
        font-size: 1.05rem;
        letter-spacing: 0.5px;
        line-height: 1.1;
    }

    .brand-text small {
        font-size: 0.6rem;
        opacity: 0.8;
        letter-spacing: 0.5px;
    }

    /* Navbar desktop: ocultar */
    .navbar {
        display: none;
    }

    /* Botão hambúrguer melhorado */
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: var(--touch-target);
        height: var(--touch-target);
        border-radius: 12px;
        background: rgba(241, 127, 4, 0.1);
        border: 1px solid rgba(241, 127, 4, 0.2);
        color: var(--primary-color);
        font-size: 1.4rem;
        cursor: pointer;
        transition: all 0.2s var(--transition-snap);
        position: relative;
        overflow: hidden;
    }

    .mobile-menu-btn:active {
        transform: scale(0.88);
        background: rgba(241, 127, 4, 0.25);
    }

    /* Efeito ripple no botão hambúrguer */
    .mobile-menu-btn::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 12px;
        background: radial-gradient(circle at center, rgba(241, 127, 4, 0.4), transparent 70%);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .mobile-menu-btn:active::after {
        opacity: 1;
    }

/* ==========================================================================
   6. DRAWER MOBILE — EXPERIÊNCIA PREMIUM
   ========================================================================== */

    .mobile-drawer {
        width: min(85vw, 320px);
        background: linear-gradient(160deg, #111111 0%, #1a1010 50%, #111111 100%);
        /* Borda esquerda decorativa */
        border-left: 1px solid rgba(241, 127, 4, 0.15);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.8);
        padding: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        /* Safe area direita */
        padding-right: var(--sar);
    }

    /* Faixa decorativa superior */
    .mobile-drawer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), transparent);
        z-index: 1;
    }

    /* Padrão decorativo de fundo */
    .mobile-drawer::after {
        content: '';
        position: absolute;
        bottom: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(241, 127, 4, 0.05) 0%, transparent 70%);
        pointer-events: none;
        z-index: 0;
    }

    /* Botão fechar */
    .close-drawer {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #aaa;
        font-size: 1rem;
        cursor: pointer;
        z-index: 10;
        transition: all 0.2s var(--transition-snap);
    }

    .close-drawer:active {
        transform: scale(0.85) rotate(90deg);
        background: rgba(241, 127, 4, 0.2);
        color: var(--primary-color);
    }

    /* Área do logo no drawer */
    .mobile-drawer > div[style*="text-align: center"] {
        padding: 2.5rem 1.5rem 1.5rem;
        position: relative;
        z-index: 1;
        /* Fundo degradê suave */
        background: linear-gradient(180deg, rgba(241, 127, 4, 0.08) 0%, transparent 100%);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    /* Logo circular no drawer */
    .mobile-drawer img[alt="Logo Ana Maria"] {
        width: 90px !important;
        height: 90px !important;
        border: 3px solid rgba(241, 127, 4, 0.5) !important;
        box-shadow:
            0 0 0 6px rgba(241, 127, 4, 0.08),
            0 8px 25px rgba(0, 0, 0, 0.5) !important;
        animation: floatGentle 4s ease-in-out infinite;
        transition: all 0.3s var(--transition-snap);
    }

    /* Links do drawer */
    .drawer-links {
        padding: 1rem 0;
        flex: 1;
        overflow-y: auto;
        position: relative;
        z-index: 1;
    }

    .drawer-links li {
        /* Animação sequencial de entrada */
        animation: slideInLeft 0.4s var(--transition-smooth) both;
    }
    .drawer-links li:nth-child(1) { animation-delay: 0.05s; }
    .drawer-links li:nth-child(2) { animation-delay: 0.1s; }
    .drawer-links li:nth-child(3) { animation-delay: 0.15s; }

    .drawer-links a {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 24px;
        font-size: 1.05rem;
        font-weight: 600;
        color: #ddd;
        text-decoration: none;
        border-radius: 0;
        transition: all 0.25s var(--transition-smooth);
        position: relative;
        overflow: hidden;
        /* Indicador lateral */
        border-left: 3px solid transparent;
        margin-left: 0;
    }

    .drawer-links a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 0;
        background: linear-gradient(90deg, rgba(241, 127, 4, 0.12), transparent);
        transition: width 0.3s var(--transition-smooth);
    }

    .drawer-links a:active {
        background: rgba(241, 127, 4, 0.1);
        color: var(--primary-color);
        border-left-color: var(--primary-color);
        transform: translateX(4px);
    }

    .drawer-links a i {
        font-size: 1.1rem;
        color: var(--primary-color);
        width: 22px;
        text-align: center;
        flex-shrink: 0;
    }

    /* Área inferior do drawer */
    .mobile-drawer > div[style*="padding-bottom"] {
        padding: 1.5rem !important;
        padding-bottom: calc(1.5rem + var(--sab)) !important;
        position: relative;
        z-index: 1;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        background: rgba(0, 0, 0, 0.2);
    }

    /* Botão WhatsApp no drawer */
    .mobile-drawer .btn-primary {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
        letter-spacing: 0.3px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        box-shadow: 0 4px 15px rgba(241, 127, 4, 0.35);
        position: relative;
        overflow: hidden;
        transition: all 0.25s var(--transition-snap);
    }

    /* Efeito de brilho varrendo o botão */
    .mobile-drawer .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -60px;
        width: 40px;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
        animation: sweepGlow 3s ease-in-out infinite;
        animation-delay: 1s;
    }

    .mobile-drawer .btn-primary:active {
        transform: scale(0.95);
        box-shadow: 0 2px 8px rgba(241, 127, 4, 0.2);
    }

    /* Redes sociais no drawer */
    .mobile-drawer .social-links {
        margin-top: 18px !important;
        display: flex;
        justify-content: center;
        gap: 16px;
    }

    .mobile-drawer .social-links a {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1.1rem;
        color: #ccc;
        transition: all 0.25s var(--transition-snap);
    }

    .mobile-drawer .social-links a:active {
        transform: scale(0.88);
        background: rgba(241, 127, 4, 0.2);
        color: var(--primary-color);
        border-color: rgba(241, 127, 4, 0.4);
    }

    /* Overlay do drawer */
    .drawer-overlay {
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        background: rgba(0, 0, 0, 0.65);
        transition: opacity 0.3s;
    }

/* ==========================================================================
   7. BOTÕES GLOBAIS — TOUCH FEEDBACK
   ========================================================================== */

    .btn {
        min-height: var(--touch-target);
        padding: 12px 24px;
        font-size: 1rem;
        border-radius: 14px;
        margin: 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        position: relative;
        overflow: hidden;
        -webkit-tap-highlight-color: transparent;
        transition: all 0.2s var(--transition-snap);
        cursor: pointer;
        letter-spacing: 0.3px;
    }

    .btn:active {
        transform: scale(0.93);
        filter: brightness(0.9);
    }

    .btn-primary {
        box-shadow: 0 4px 15px rgba(241, 127, 4, 0.3);
        animation: softPulse 3s ease-in-out infinite;
    }

    .btn-primary:active {
        box-shadow: 0 2px 6px rgba(241, 127, 4, 0.2);
    }

    /* Pseudo-ripple em botões */
    .btn::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255,255,255,0.25), transparent 70%);
        opacity: 0;
        transition: opacity 0.4s;
        border-radius: inherit;
    }

    .btn:active::after {
        opacity: 1;
        transition: opacity 0s;
    }

    .btn-ifood {
        box-shadow: 0 4px 15px rgba(234, 29, 44, 0.3);
    }

    /* Botão de contato */
    .btn-contact {
        min-height: var(--touch-target);
        border-radius: 14px;
        font-size: 1rem;
        width: 100%;
        padding: 13px 20px;
        box-shadow: 0 4px 15px rgba(241, 127, 4, 0.25);
        transition: all 0.2s var(--transition-snap);
    }

    .btn-contact:active {
        transform: scale(0.95);
        box-shadow: 0 2px 6px rgba(241, 127, 4, 0.15);
    }

/* ==========================================================================
   8. PRELOADER MOBILE MELHORADO
   ========================================================================== */

    #preloader {
        background: radial-gradient(ellipse at center, #1f1008 0%, #0a0a0a 100%);
    }

    .loader-spinner {
        width: 44px;
        height: 44px;
        border-width: 4px;
        /* Anel duplo */
        box-shadow: 0 0 20px rgba(241, 127, 4, 0.3);
    }

/* ==========================================================================
   9. HERO MOBILE — HOME
   ========================================================================== */

    .home-hero {
        height: 92vh;
        /* Safe area */
        padding-top: var(--sat);
        background-attachment: scroll !important; /* Parallax desabilitado no iOS */
        position: relative;
        overflow: hidden;
    }

    /* Padrão geométrico decorativo sobre o hero */
    .home-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -30%;
        width: 80vw;
        height: 80vw;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(241, 127, 4, 0.08) 0%, transparent 65%);
        pointer-events: none;
        animation: floatGentle 6s ease-in-out infinite;
        z-index: 1;
    }

    .home-hero::after {
        content: '';
        position: absolute;
        bottom: 10%;
        left: -20%;
        width: 60vw;
        height: 60vw;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(175, 78, 59, 0.06) 0%, transparent 65%);
        pointer-events: none;
        animation: floatGentle 8s ease-in-out infinite reverse;
        z-index: 1;
    }

    .home-hero-content {
        padding: 0 1.5rem;
        z-index: 2;
        position: relative;
        animation: slideUpFade 1s var(--transition-smooth) both;
    }

    .home-hero h1 {
        font-size: var(--font-hero-mobile);
        line-height: 1.15;
        margin-bottom: 1rem;
        text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.9);
        /* Quebra de palavra inteligente */
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .home-hero p {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 2rem;
        opacity: 0;
        animation: slideUpFade 1s var(--transition-smooth) 0.3s both;
        line-height: 1.6;
        text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.8);
    }

    /* CTAs do hero com animação sequencial */
    .home-hero .btn:nth-child(1) {
        opacity: 0;
        animation: popIn 0.7s var(--transition-snap) 0.6s both;
    }
    .home-hero .btn:nth-child(2) {
        opacity: 0;
        animation: popIn 0.7s var(--transition-snap) 0.8s both;
    }

    /* Indicador de scroll para baixo */
    .home-hero-content::after {
        content: '';
        display: block;
        width: 2px;
        height: 50px;
        background: linear-gradient(180deg, var(--primary-color), transparent);
        margin: 2rem auto 0;
        animation: bounceLite 2s ease-in-out infinite;
        border-radius: 2px;
    }

/* ==========================================================================
   10. FEATURES STRIP MOBILE
   ========================================================================== */

    .features-strip {
        padding: 1.5rem 1.2rem;
        gap: 0;
        margin-top: 0;
        flex-direction: column;
        /* Scroll horizontal com snap */
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        /* Esconde scrollbar */
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 0;
        padding: 0;
    }

    .features-strip::-webkit-scrollbar {
        display: none;
    }

    .feature-item {
        scroll-snap-align: start;
        flex-shrink: 0;
        padding: 1.2rem 1.5rem;
        min-width: 60vw;
        border-right: 1px solid rgba(255, 255, 255, 0.15);
        transition: all 0.2s var(--transition-snap);
        position: relative;
        overflow: hidden;
    }

    .feature-item:last-child {
        border-right: none;
    }

    .feature-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: rgba(255, 255, 255, 0.4);
        transition: width 0.3s;
        border-radius: 2px;
    }

    .feature-item:active {
        background: rgba(255, 255, 255, 0.1);
    }

    .feature-item i {
        font-size: 2rem;
    }

    .feature-item div h4 {
        font-size: 1rem;
    }

    .feature-item div p {
        font-size: 0.8rem;
        opacity: 0.85;
    }

/* ==========================================================================
   11. SEÇÕES DE CONTEÚDO — ESPAÇAMENTO MOBILE
   ========================================================================== */

    .section-padding {
        padding: var(--spacing-lg) 1.2rem;
    }

    .section-title h2 {
        font-size: var(--font-h2-mobile);
        margin-bottom: 0.75rem;
    }

    .section-title p {
        font-size: var(--font-body-mobile);
    }

/* ==========================================================================
   12. SPLIT SECTIONS MOBILE
   ========================================================================== */

    .split-section,
    .split-section.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Imagem sempre em cima no mobile */
    .split-section .split-image {
        order: -1;
    }

    .split-section.reverse .split-image {
        order: -1;
    }

    .split-image::before {
        display: none;
    }

    .split-image img {
        height: 260px;
        border-radius: 16px;
        object-fit: cover;
        width: 100%;
        /* Sombra rica */
        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.5),
            0 0 0 1px rgba(241, 127, 4, 0.1);
        transition: transform 0.4s var(--transition-smooth);
    }

    .split-image img:active {
        transform: scale(0.98);
    }

    .split-text h3 {
        font-size: var(--font-h3-mobile);
        margin-bottom: 1rem;
    }

    .split-text p {
        font-size: var(--font-body-mobile);
        line-height: 1.75;
    }

    .split-text ul li {
        font-size: var(--font-body-mobile);
    }

/* ==========================================================================
   13. MENU CARDS MOBILE
   ========================================================================== */

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

    .menu-card {
        padding: 1.5rem;
        border-radius: 16px;
        /* Transição de toque rica */
        transition: all 0.25s var(--transition-snap);
        position: relative;
        overflow: hidden;
        /* Borda sutil */
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    /* Indicador de cor na lateral */
    .menu-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
        border-radius: 0 2px 2px 0;
        transform: scaleY(0);
        transition: transform 0.3s var(--transition-snap);
        transform-origin: bottom;
    }

    .menu-card:active {
        transform: scale(0.97);
        box-shadow: var(--shadow-card-active);
        border-color: rgba(241, 127, 4, 0.25);
    }

    .menu-card:active::before {
        transform: scaleY(1);
    }

    .menu-card-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .menu-card h4 {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }

    .menu-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .badge-tag {
        font-size: 0.75rem;
        padding: 3px 10px;
    }

/* ==========================================================================
   14. GALERIA MINI MOBILE — SCROLL COM SNAP
   ========================================================================== */

    .mini-gallery-container {
        /* Galeria horizontal com snap */
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding: 0 1.2rem 1rem;
        margin: 0 -1.2rem;
        /* Esconde scrollbar */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .mini-gallery-container::-webkit-scrollbar {
        display: none;
    }

    .mini-gallery-item {
        scroll-snap-align: center;
        flex-shrink: 0;
        width: 80vw;
        max-width: 320px;
        border-radius: 16px;
        overflow: hidden;
        aspect-ratio: 4/3;
        /* Sombra */
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        transition: transform 0.25s var(--transition-snap);
    }

    .mini-gallery-item:active {
        transform: scale(0.96);
    }

    .mini-gallery-item img {
        transition: transform 0.5s var(--transition-smooth);
    }

    /* Overlay sempre visível no mobile (sem hover) */
    .mini-gallery-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    }

    .mini-gallery-overlay span {
        font-size: 1rem;
        font-weight: 700;
        text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    }

    /* Indicadores de paginação para a galeria */
    .mini-gallery-container ~ .gallery-dots {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 12px;
    }

/* ==========================================================================
   15. TESTIMONIALS MOBILE — CARDS COM SCROLL
   ========================================================================== */

    .testimonial-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding: 0 1.2rem 1rem;
        margin: 0 -1.2rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .testimonial-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        scroll-snap-align: center;
        flex-shrink: 0;
        width: 85vw;
        max-width: 340px;
        padding: 1.8rem 1.5rem;
        border-radius: 18px;
        /* Animação de entrada sequencial */
        animation: slideUpFade 0.5s var(--transition-smooth) both;
        border-top: 3px solid var(--accent);
        box-shadow: var(--shadow-card);
    }

    .testimonial-card:nth-child(1) { animation-delay: 0.1s; }
    .testimonial-card:nth-child(2) { animation-delay: 0.2s; }
    .testimonial-card:nth-child(3) { animation-delay: 0.3s; }
    .testimonial-card:nth-child(4) { animation-delay: 0.4s; }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 1.2rem;
    }

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

    .author-info span {
        font-size: 0.8rem;
    }

    .stars-rating {
        font-size: 1rem;
    }

/* ==========================================================================
   16. FAQ ACCORDION MOBILE
   ========================================================================== */

    .faq-container {
        padding: 0;
    }

    .faq-item {
        border-radius: 14px;
        overflow: hidden;
        margin-bottom: 10px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s var(--transition-smooth);
    }

    .faq-item:active,
    .faq-item.active {
        border-color: rgba(241, 127, 4, 0.2);
        box-shadow: 0 4px 15px rgba(241, 127, 4, 0.08);
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 1rem;
        min-height: var(--touch-target);
        line-height: 1.4;
        /* Espaço para ícone */
        padding-right: 50px;
        position: relative;
    }

    .faq-question i {
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(241, 127, 4, 0.1);
        border-radius: 50%;
        font-size: 0.8rem;
    }

    .faq-item.active .faq-question i {
        background: rgba(241, 127, 4, 0.2);
    }

    .faq-answer-inner {
        padding: 0 18px 16px;
        font-size: 0.95rem;
        line-height: 1.7;
    }

/* ==========================================================================
   17. BOTTOM CTA MOBILE
   ========================================================================== */

    .bottom-cta {
        padding: 3rem 1.5rem;
        margin: 2rem 1.2rem;
        border-radius: 20px;
        position: relative;
        overflow: hidden;
    }

    /* Padrão decorativo circular */
    .bottom-cta::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 70vw;
        height: 70vw;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        pointer-events: none;
    }

    .bottom-cta::after {
        content: '';
        position: absolute;
        bottom: -40%;
        left: -10%;
        width: 50vw;
        height: 50vw;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.1);
        pointer-events: none;
    }

    .bottom-cta h2 {
        font-size: clamp(1.6rem, 6.5vw, 2.2rem);
        margin-bottom: 1rem;
        position: relative;
        z-index: 1;
        line-height: 1.25;
    }

    .bottom-cta p {
        font-size: 1rem;
        margin-bottom: 2rem;
        position: relative;
        z-index: 1;
        opacity: 0.92;
    }

    .bottom-cta .btn {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 300px;
        padding: 15px 30px;
        font-size: 1.05rem;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

/* ==========================================================================
   18. HERO DE CONTATO MOBILE
   ========================================================================== */

    .contact-hero {
        padding: 4rem 1.5rem 3rem;
        background-attachment: scroll !important;
    }

    .contact-hero h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }

    .contact-hero p {
        font-size: 1rem;
        line-height: 1.65;
    }

/* ==========================================================================
   19. INFO CARDS DE CONTATO MOBILE
   ========================================================================== */

    .contact-info-section {
        padding: 0 1.2rem 3rem;
    }

    .contact-info-section .info-grid {
        transform: translateY(-20px);
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 1.5rem 1.2rem;
        border-radius: 20px;
        border: 1px solid rgba(241, 127, 4, 0.15);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    }

    .contact-info-section .info-card {
        padding: 1.5rem;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.25s var(--transition-snap);
        /* Separador entre cards */
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .contact-info-section .info-card:last-child {
        border-bottom: none;
    }

    .contact-info-section .info-card:active {
        background: rgba(241, 127, 4, 0.05);
        transform: scale(0.99);
    }

    .contact-info-section .info-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .contact-info-section .info-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Horários no card */
    .hours-list {
        margin-top: 0.8rem;
    }

    .hours-list li {
        font-size: 0.9rem;
        padding: 8px 0;
        gap: 6px;
    }

    .hours-list span {
        font-size: 0.85rem;
        min-width: 80px;
    }

/* ==========================================================================
   20. MAPA MOBILE
   ========================================================================== */

    .map-only-section {
        padding: 0 1.2rem 3rem;
    }

    .map-container {
        height: 280px;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        /* Borda decorativa */
        border: 1px solid rgba(241, 127, 4, 0.15);
        position: relative;
    }

    /* Overlay de toque para abrir mapa completo */
    .map-container::after {
        content: 'Toque para expandir';
        position: absolute;
        bottom: 12px;
        right: 12px;
        background: rgba(0, 0, 0, 0.7);
        color: #fff;
        font-size: 0.7rem;
        padding: 4px 10px;
        border-radius: 20px;
        pointer-events: none;
        backdrop-filter: blur(4px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

/* ==========================================================================
   21. FAQ DE LOCALIZAÇÃO (CONTATO) MOBILE
   ========================================================================== */

    .location-faq {
        padding: 0 1.2rem 3rem;
    }

    .location-faq h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }

    /* Sublinhado decorativo */
    .location-faq h3::after {
        content: '';
        display: block;
        width: 50%;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
        margin: 8px auto 0;
        border-radius: 2px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .faq-box {
        padding: 1.5rem;
        border-radius: 14px;
        border-left: 3px solid var(--accent);
        transition: all 0.25s var(--transition-snap);
        animation: slideUpFade 0.5s var(--transition-smooth) both;
    }

    .faq-box:nth-child(1) { animation-delay: 0.1s; }
    .faq-box:nth-child(2) { animation-delay: 0.2s; }
    .faq-box:nth-child(3) { animation-delay: 0.3s; }

    .faq-box:active {
        transform: translateX(4px);
        background: rgba(241, 127, 4, 0.06);
    }

    .faq-box h4 {
        font-size: 1rem;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .faq-box p {
        font-size: 0.9rem;
        line-height: 1.65;
    }

/* ==========================================================================
   22. HERO SOBRE NÓS MOBILE
   ========================================================================== */

    .about-hero {
        padding: 4rem 1.5rem 3rem;
    }

    .about-hero h1 {
        font-size: clamp(1.8rem, 7.5vw, 2.6rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .about-hero p {
        font-size: 1rem;
        line-height: 1.7;
    }

/* ==========================================================================
   23. SEÇÃO HISTÓRIA MOBILE
   ========================================================================== */

    .history-section {
        padding: var(--spacing-lg) 1.2rem;
    }

    .history-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .history-content h2 {
        font-size: var(--font-h2-mobile);
        margin-bottom: 1rem;
        line-height: 1.25;
    }

    .history-content p {
        font-size: 0.95rem;
        line-height: 1.75;
        margin-bottom: 1.2rem;
    }

    .history-image {
        order: -1;
    }

    .history-image img {
        height: 260px;
        border-radius: 16px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55);
        object-fit: cover;
    }

    .history-image::after {
        display: none;
    }

/* ==========================================================================
   24. CARDS DE VALORES MOBILE
   ========================================================================== */

    .values-section {
        padding: var(--spacing-lg) 1.2rem;
    }

    .section-heading {
        margin-bottom: 2.5rem;
    }

    .section-heading h2 {
        font-size: var(--font-h2-mobile);
    }

    .section-heading p {
        font-size: 0.95rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .value-card {
        padding: 1.8rem 1.5rem;
        border-radius: 16px;
        border-top: 3px solid transparent;
        /* Animação sequencial */
        animation: slideUpFade 0.6s var(--transition-smooth) both;
        position: relative;
        overflow: hidden;
    }

    .value-card:nth-child(1) { animation-delay: 0.1s; }
    .value-card:nth-child(2) { animation-delay: 0.2s; }
    .value-card:nth-child(3) { animation-delay: 0.3s; }

    /* Indicador de ação ao toque */
    .value-card:active {
        transform: scale(0.98) translateY(2px);
        border-top-color: var(--accent);
        box-shadow: 0 5px 20px rgba(241, 127, 4, 0.1);
    }

    /* Decoração de fundo no card */
    .value-card::after {
        content: '';
        position: absolute;
        bottom: -30px;
        right: -30px;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(241, 127, 4, 0.06) 0%, transparent 70%);
        pointer-events: none;
    }

    .value-icon {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
        display: block;
        animation: floatGentle 4s ease-in-out infinite;
    }

    .value-card:nth-child(2) .value-icon {
        animation-delay: 0.5s;
        /* Heartbeat no ícone de coração */
        animation-name: heartbeat;
        animation-duration: 2.5s;
    }

    .value-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.7rem;
    }

    .value-card p {
        font-size: 0.92rem;
        line-height: 1.65;
    }

/* ==========================================================================
   25. SEÇÃO CHEF / CONFEITARIA MOBILE
   ========================================================================== */

    .chef-section {
        padding: var(--spacing-lg) 1.2rem;
    }

    .chef-container {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
        background-attachment: scroll !important;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(241, 127, 4, 0.15);
    }

    /* Decoração no topo */
    .chef-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), transparent);
    }

    .chef-container i {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
        animation: wiggle 4s ease-in-out infinite;
        animation-delay: 2s;
        display: block;
    }

    .chef-container h2 {
        font-size: var(--font-h2-mobile);
        line-height: 1.25;
        margin-bottom: 1rem;
    }

    .chef-container p {
        font-size: 0.95rem;
        line-height: 1.75;
        margin-bottom: 1.2rem;
        color: #ccc;
    }

/* ==========================================================================
   26. SEÇÃO ESPAÇO MOBILE
   ========================================================================== */

    .space-section {
        padding: var(--spacing-lg) 1.2rem;
    }

    .space-container {
        gap: 2rem;
        padding: 2rem 1.5rem;
        border-radius: 18px;
        flex-direction: column;
    }

    .space-text {
        min-width: unset;
    }

    .space-text h2 {
        font-size: var(--font-h2-mobile);
        margin-bottom: 1rem;
        line-height: 1.25;
    }

    .space-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .space-features {
        min-width: unset;
        gap: 10px;
    }

    .space-feature-item {
        padding: 14px 16px;
        border-radius: 12px;
        transition: all 0.2s var(--transition-snap);
        border: 1px solid rgba(255, 255, 255, 0.04);
        /* Animação sequencial de entrada */
        animation: slideInLeft 0.5s var(--transition-smooth) both;
    }

    .space-feature-item:nth-child(1) { animation-delay: 0.1s; }
    .space-feature-item:nth-child(2) { animation-delay: 0.2s; }
    .space-feature-item:nth-child(3) { animation-delay: 0.3s; }
    .space-feature-item:nth-child(4) { animation-delay: 0.4s; }

    .space-feature-item:active {
        background: rgba(241, 127, 4, 0.08);
        transform: translateX(6px);
        border-color: rgba(241, 127, 4, 0.2);
    }

    .space-feature-item i {
        font-size: 1.3rem;
    }

    .space-feature-item span {
        font-size: 0.95rem;
    }

/* ==========================================================================
   27. FOOTER MOBILE
   ========================================================================== */

    .mega-footer {
        padding: 3rem 1.2rem 1rem;
        /* Safe area inferior */
        padding-bottom: calc(1rem + var(--sab));
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
        /* Linha decorativa abaixo do título */
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(241, 127, 4, 0.2);
    }

    .footer-col p,
    .footer-col ul {
        font-size: 0.9rem;
    }

    .footer-col ul li {
        margin-bottom: 0.6rem;
    }

    .footer-col ul li a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        min-height: 36px;
        padding: 4px 0;
        transition: all 0.2s;
    }

    .footer-col ul li a:active {
        color: var(--primary-color);
        padding-left: 8px;
    }

    .footer-col ul li i {
        font-size: 0.9rem;
        opacity: 0.7;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding-top: 1.2rem;
        font-size: 0.8rem;
    }

    .footer-bottom strong {
        display: block;
        margin-bottom: 4px;
    }

    /* Redes sociais do footer */
    .footer-col .social-links {
        margin-top: 12px;
        gap: 12px;
    }

    .footer-col .social-links a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 1.1rem;
        transition: all 0.2s var(--transition-snap);
    }

    .footer-col .social-links a:active {
        transform: scale(0.88);
        background: rgba(241, 127, 4, 0.2);
        color: var(--primary-color);
        border-color: rgba(241, 127, 4, 0.4);
    }

/* ==========================================================================
   28. FLOATING ELEMENTS MOBILE
   ========================================================================== */

    /* WhatsApp flutuante */
    .floating-wa {
        bottom: calc(24px + var(--sab));
        left: 16px;
        width: 56px;
        height: 56px;
        font-size: 1.8rem;
        box-shadow:
            0 4px 20px rgba(37, 211, 102, 0.5),
            0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .floating-wa:active {
        transform: scale(0.88);
        box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
    }

    /* Botão voltar ao topo */
    .back-to-top {
        bottom: calc(24px + var(--sab));
        right: 16px;
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
        border-radius: 14px;
        box-shadow: 0 4px 15px rgba(241, 127, 4, 0.3);
    }

    .back-to-top:active {
        transform: scale(0.88) translateY(0);
    }

/* ==========================================================================
   29. COOKIE BANNER MOBILE
   ========================================================================== */

    .cookie-banner {
        padding: 1.2rem 1.2rem;
        padding-bottom: calc(1.2rem + var(--sab));
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        border-radius: 20px 20px 0 0;
        border-top: 2px solid var(--primary-color);
        /* Glassmorphism */
        background: rgba(15, 10, 5, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .cookie-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .cookie-btn {
        width: 100%;
        padding: 12px 20px;
        border-radius: 12px;
        font-size: 0.95rem;
        min-height: var(--touch-target);
        font-weight: 700;
        letter-spacing: 0.3px;
        transition: all 0.2s var(--transition-snap);
    }

    .cookie-btn:active {
        transform: scale(0.97);
        filter: brightness(0.9);
    }

/* ==========================================================================
   30. AVALIAÇÕES / SOCIAL PROOF MOBILE
   ========================================================================== */

    .social-proof {
        padding: 3rem 1.2rem;
    }

    .reviews-container {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .reviews-container h2 {
        font-size: 1.5rem;
    }

    .reviews-container p {
        font-size: 1rem;
        line-height: 1.65;
    }

    .stars {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

} /* end @media (max-width: 768px) */

/* ==========================================================================
   31. BREAKPOINT MENOR — TELAS MUITO PEQUENAS (< 380px)
   ========================================================================== */
@media (max-width: 380px) {

    :root {
        --font-hero-mobile: clamp(1.8rem, 8.5vw, 2.5rem);
    }

    .logo-img {
        width: 44px !important;
        height: 44px !important;
    }

    .brand-text {
        font-size: 0.9rem !important;
    }

    .brand-text small {
        font-size: 0.55rem !important;
    }

    .home-hero {
        height: 95vh;
    }

    .home-hero h1 {
        font-size: clamp(1.8rem, 9vw, 2.4rem);
    }

    .home-hero p {
        font-size: 0.9rem;
    }

    .contact-hero h1 {
        font-size: 1.8rem;
    }

    .about-hero h1 {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 11px 18px;
    }

    .info-grid {
        padding: 1.2rem 1rem !important;
    }

    .contact-info-section .info-card {
        padding: 1.2rem;
    }

    .mini-gallery-item {
        width: 90vw;
    }

    .testimonial-card {
        width: 92vw;
    }

    .floating-wa {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }

}

/* ==========================================================================
   32. BREAKPOINT MÉDIO — TABLETS (769px - 900px)
   ========================================================================== */
@media (min-width: 769px) and (max-width: 900px) {

    header {
        padding: 0.8rem 2rem;
    }

    .home-hero h1 {
        font-size: 3.5rem;
    }

    .contact-info-section .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info-section .info-card:last-child {
        grid-column: 1 / -1;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid .value-card:last-child {
        grid-column: 1 / -1;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid .faq-box:last-child {
        grid-column: 1 / -1;
    }

    .history-container {
        grid-template-columns: 1fr;
    }

    .mini-gallery-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        overflow: visible;
        padding: 0;
        margin: 0;
    }

    .mini-gallery-item {
        flex-shrink: unset;
        width: auto;
        max-width: none;
    }

    .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        overflow: visible;
        padding: 0;
        margin: 0;
    }

    .testimonial-card {
        flex-shrink: unset;
        width: auto;
        max-width: none;
    }

    .space-container {
        flex-direction: row;
    }

    .bottom-cta h2 {
        font-size: 2.2rem;
    }

}

/* ==========================================================================
   33. UTILITÁRIOS & HELPERS MOBILE
   ========================================================================== */
@media (max-width: 900px) {

    /* Classe para ocultar no mobile */
    .hide-mobile {
        display: none !important;
    }

    /* Classe para mostrar apenas no mobile */
    .show-mobile {
        display: block !important;
    }

    /* Links grandes para mobile */
    .touch-link {
        min-height: var(--touch-target);
        display: inline-flex;
        align-items: center;
    }

    /* Texto centralizado no mobile */
    .text-center-mobile {
        text-align: center;
    }

    /* Espaçamento responsivo */
    .mt-mobile { margin-top: var(--spacing-md); }
    .mb-mobile { margin-bottom: var(--spacing-md); }
    .p-mobile { padding: var(--spacing-md); }

    /* Scroll horizontal helper */
    .scroll-x-mobile {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        display: flex;
        gap: 1rem;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
    }

    .scroll-x-mobile::-webkit-scrollbar {
        display: none;
    }

    /* Skeleton loading (para estado de carregamento) */
    .skeleton {
        background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.04) 25%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0.04) 75%
        );
        background-size: 200% 100%;
        animation: shimmer 1.5s infinite;
        border-radius: 8px;
    }

    /* Divisor decorativo */
    .divider-mobile {
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        border-radius: 3px;
        margin: 1rem auto;
    }

    /* Badge de destaque */
    .highlight-badge {
        display: inline-block;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: #fff;
        font-size: 0.75rem;
        font-weight: 700;
        padding: 3px 10px;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 2px 8px rgba(241, 127, 4, 0.35);
    }

    /* Glassmorphism card helper */
    .glass-card {
        background: var(--glass-bg);
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        border: 1px solid var(--glass-border);
        border-radius: 18px;
        padding: 1.5rem;
    }

    /* Animação de entrada baseada em scroll — classe JS */
    .animate-in {
        opacity: 0;
        transform: translateY(25px);
        transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth);
    }

    .animate-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .animate-in-left {
        opacity: 0;
        transform: translateX(-25px);
        transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth);
    }

    .animate-in-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .animate-in-right {
        opacity: 0;
        transform: translateX(25px);
        transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth);
    }

    .animate-in-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

    /* Atraso sequencial para grupos */
    .stagger-group > *:nth-child(1) { transition-delay: 0.05s; }
    .stagger-group > *:nth-child(2) { transition-delay: 0.1s; }
    .stagger-group > *:nth-child(3) { transition-delay: 0.15s; }
    .stagger-group > *:nth-child(4) { transition-delay: 0.2s; }
    .stagger-group > *:nth-child(5) { transition-delay: 0.25s; }
    .stagger-group > *:nth-child(6) { transition-delay: 0.3s; }

    /* Destaque de seção com gradiente lateral */
    .section-accent-left {
        border-left: 3px solid var(--primary-color);
        padding-left: 1rem;
        position: relative;
    }

    .section-accent-left::before {
        content: '';
        position: absolute;
        left: -3px;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
        border-radius: 3px;
    }

    /* Indicador de scroll horizontal */
    .scroll-hint {
        display: flex;
        align-items: center;
        gap: 6px;
        color: var(--text-muted);
        font-size: 0.78rem;
        margin-bottom: 10px;
        padding-left: 0.2rem;
    }

    .scroll-hint i {
        color: var(--primary-color);
        animation: bounceLite 2s infinite;
        font-size: 0.9rem;
    }

    /* Toast de notificação */
    .toast-mobile {
        position: fixed;
        bottom: calc(80px + var(--sab));
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        background: rgba(30, 20, 5, 0.95);
        color: #fff;
        padding: 12px 20px;
        border-radius: 30px;
        font-size: 0.88rem;
        font-weight: 600;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(241, 127, 4, 0.3);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s var(--transition-snap);
        z-index: 9990;
        white-space: nowrap;
    }

    .toast-mobile.show {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    /* Linha decorativa de seção */
    .section-line {
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        border-radius: 3px;
        margin: 0.8rem auto 1.5rem;
    }

    /* Chip de tag */
    .chip {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 5px 12px;
        background: rgba(241, 127, 4, 0.12);
        color: var(--primary-color);
        border: 1px solid rgba(241, 127, 4, 0.25);
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    /* Contador animado */
    .counter-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 24px;
        height: 24px;
        background: var(--primary-color);
        color: #fff;
        border-radius: 12px;
        font-size: 0.75rem;
        font-weight: 700;
        padding: 0 6px;
        animation: popIn 0.4s var(--transition-snap);
    }

    /* ——— Microinterações específicas ——— */

    /* Pulse de atenção em promoção */
    .promo-pulse {
        animation: softPulse 2s ease-in-out infinite;
        border-radius: 14px;
    }

    /* Shimmer em cards de loading */
    .loading-card {
        min-height: 120px;
        border-radius: 14px;
        overflow: hidden;
    }

    .loading-card::after {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(241, 127, 4, 0.08) 50%,
            transparent 100%
        );
        background-size: 200% 100%;
        animation: shimmer 1.8s infinite;
    }

} /* end @media (max-width: 900px) */

/* ==========================================================================
   34. ACESSIBILIDADE — PREFERÊNCIAS DO USUÁRIO
   ========================================================================== */

/* Respeita preferência por menos animação */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .home-hero::before,
    .home-hero::after,
    .mobile-drawer img[alt="Logo Ana Maria"],
    .value-icon,
    .chef-container i,
    .mobile-drawer .btn-primary::before {
        animation: none !important;
    }
}

/* Alto contraste */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #ff9500;
        --glass-border: rgba(255, 255, 255, 0.3);
    }

    .menu-card,
    .value-card,
    .faq-box,
    .space-feature-item {
        border-color: rgba(255, 255, 255, 0.2) !important;
    }

    .btn-primary {
        border: 3px solid #fff;
    }
}

/* Modo escuro já é padrão — suporte a light mode se necessário */
@media (prefers-color-scheme: light) {
    /* O site é dark por design, mantemos intacto */
}

/* ==========================================================================
   35. LANDSCAPE MOBILE — AJUSTES DE ORIENTAÇÃO
   ========================================================================== */
@media (max-width: 900px) and (orientation: landscape) {

    .home-hero {
        height: 100svh;
        min-height: 400px;
    }

    .home-hero h1 {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
        margin-bottom: 0.6rem;
    }

    .home-hero p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .home-hero-content::after {
        display: none;
    }

    .contact-hero,
    .about-hero {
        padding: 2.5rem 1.5rem 2rem;
    }

    .mobile-drawer {
        width: min(70vw, 320px);
        overflow-y: auto;
    }

    /* Header mais compacto em landscape */
    header {
        padding: 0.5rem 1.2rem;
    }

    .logo-img {
        width: 40px !important;
        height: 40px !important;
    }

}

/* ==========================================================================
   FIM DO MOBILE.CSS
   ========================================================================== */