/* =================== RESET & BASE =================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6B1FB1;
    --primary-dark: #4A148C;
    --primary-light: #9C4DCC;
    --accent: #FFB627;
    --accent-light: #FFD166;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --bg-dark: #0F0617;
    --bg-darker: #08030E;
    --bg-card: #1A0E26;
    --bg-card-hover: #251538;
    --text: #F5F0FA;
    --text-muted: #B8A9C9;
    --text-dim: #7A6B8A;
    --border: rgba(156, 77, 204, 0.15);
    --gradient: linear-gradient(135deg, #9C4DCC 0%, #6B1FB1 50%, #4A148C 100%);
    --gradient-accent: linear-gradient(135deg, #FFB627 0%, #FF6B9D 100%);
    --gradient-text: linear-gradient(135deg, #FFB627 0%, #FF6B9D 50%, #C77DFF 100%);
    --gradient-whatsapp: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    --shadow: 0 20px 60px rgba(107, 31, 177, 0.3);
    --shadow-strong: 0 30px 80px rgba(107, 31, 177, 0.5);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(107, 31, 177, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 182, 39, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(199, 125, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

ul { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* =================== LOADER =================== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg-darker);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.acai-bowl-loader {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    position: relative;
    animation: rotate 2s ease-in-out infinite;
}

.bowl {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 40px;
    background: linear-gradient(180deg, #6B1FB1 0%, #4A148C 100%);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    box-shadow: 0 10px 30px rgba(107, 31, 177, 0.5);
}

.acai-fill {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 35px;
    background: linear-gradient(180deg, #4A148C 0%, #2D0A56 100%);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes rotate {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.1); }
}

.loader p {
    color: var(--text-muted);
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fade 1.5s ease-in-out infinite;
}

@keyframes fade {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* =================== WHATSAPP FLOAT =================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 64px;
    height: 64px;
    background: var(--gradient-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease;
}

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

.whatsapp-float svg {
    position: relative;
    z-index: 2;
}

.whatsapp-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--whatsapp);
    animation: pulse-ring 2s ease-out infinite;
    z-index: 1;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* =================== NAVBAR =================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 6, 23, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text);
    transition: transform 0.3s ease;
}

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

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

.logo-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px rgba(156, 77, 204, 0.5));
    animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

.logo-text strong {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.nav-link:hover { color: var(--text); }

.nav-link:hover::after { width: 100%; }

.btn-pedido {
    background: var(--gradient-whatsapp);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-pedido:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

/* =================== HERO =================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 2rem 4rem;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(2px);
    transform: scale(1.05);
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(15, 6, 23, 0.92) 0%, rgba(74, 20, 140, 0.85) 50%, rgba(15, 6, 23, 0.92) 100%);
}

.hero-fruits {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-fruit {
    position: absolute;
    font-size: 3rem;
    opacity: 0.5;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    animation: float-around 20s ease-in-out infinite;
}

.fruit-1 { top: 15%; left: 8%; animation-delay: 0s; animation-duration: 18s; }
.fruit-2 { top: 25%; right: 12%; animation-delay: 2s; animation-duration: 22s; }
.fruit-3 { bottom: 25%; left: 6%; animation-delay: 4s; animation-duration: 20s; }
.fruit-4 { top: 55%; right: 6%; animation-delay: 1s; animation-duration: 25s; }
.fruit-5 { bottom: 18%; right: 20%; animation-delay: 3s; animation-duration: 19s; }

@keyframes float-around {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -40px) rotate(90deg); }
    50% { transform: translate(-20px, -80px) rotate(180deg); }
    75% { transform: translate(-40px, -20px) rotate(270deg); }
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(156, 77, 204, 0.2);
    border: 1px solid rgba(156, 77, 204, 0.4);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 1s ease forwards;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

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

.fade-up { animation: slideUp 1s ease forwards; }

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

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

.fade-in { animation: fadeIn 1s ease forwards; }

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

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: slideUp 1s ease 0.6s forwards;
}

.hero-subtitle strong {
    color: var(--accent);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideUp 1s ease 0.8s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-whatsapp);
    color: white;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(156, 77, 204, 0.2);
    border-color: var(--primary-light);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dim);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
    z-index: 2;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-dim);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* =================== SECTION COMMON =================== */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 182, 39, 0.1);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 182, 39, 0.2);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* =================== SOBRE =================== */
.sobre {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.sobre-image {
    position: relative;
}

.image-wrapper {
    aspect-ratio: 1;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    transform: rotate(-2deg);
    transition: transform 0.5s ease;
}

.image-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(107, 31, 177, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.floating-card {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.25rem 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    animation: float-card 3s ease-in-out infinite;
    z-index: 3;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-card .card-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 182, 39, 0.5));
}

.floating-card strong {
    display: block;
    font-size: 1.75rem;
    color: var(--accent);
    font-weight: 700;
}

.floating-card span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.sobre-text p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.sobre-text p strong {
    color: var(--text);
}

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.stat { text-align: center; }

.stat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* =================== CARDÁPIO =================== */
.cardapio {
    background: var(--bg-darker);
}

.categoria-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.75rem;
    background: var(--bg-card);
    color: var(--text-muted);
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: var(--text);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow);
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.produto-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.produto-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-strong);
}

.produto-imagem {
    aspect-ratio: 16/10;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

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

.produto-card:hover .produto-imagem img {
    transform: scale(1.1);
}

.produto-imagem::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 6, 23, 0.4) 100%);
    pointer-events: none;
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-accent);
    color: #1a0e26;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.badge.novo {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: white;
}

.produto-info { padding: 1.5rem; }

.produto-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.produto-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    min-height: 2.5em;
}

.produto-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.preco {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tamanho {
    color: var(--text-dim);
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
}

/* =================== TAMANHOS =================== */
.tamanhos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.tamanho-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
    width: 100%;
}

.tamanho-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
}

.tamanho-card.tamanho-destaque {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(156, 77, 204, 0.1), rgba(255, 107, 107, 0.05));
    box-shadow: 0 0 30px rgba(156, 77, 204, 0.15);
}

.tamanho-card.tamanho-destaque::before {
    content: '⭐ Mais pedido';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    white-space: nowrap;
    z-index: 2;
}

.tamanho-card.selected {
    border-color: var(--whatsapp);
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(18, 140, 126, 0.08));
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.15), 0 15px 40px rgba(37, 211, 102, 0.25);
    transform: translateY(-4px);
}

.tamanho-card.selected .tamanho-check {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.tamanho-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: var(--whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    opacity: 0;
    transform: scale(0.4) rotate(-90deg);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 3;
}

.tamanho-badge {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.tamanho-preco {
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.tamanho-info {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* =================== TAGS =================== */
.sub-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tag-free {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    vertical-align: middle;
}

.contador-selecionados {
    display: inline-flex;
    align-items: baseline;
    gap: 0.15rem;
    margin-top: 1rem;
    padding: 0.5rem 1.1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contador-selecionados.full {
    background: rgba(255, 182, 39, 0.1);
    border-color: var(--accent);
}

.contador-selecionados .contador-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contador-selecionados.bump .contador-num {
    transform: scale(1.4);
}

.contador-selecionados .contador-max {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag-item {
    background: var(--bg-card);
    border: 2px solid var(--border);
    color: var(--text-muted);
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    font-family: inherit;
    transition: all 0.25s ease;
    cursor: pointer;
    position: relative;
    user-select: none;
    line-height: 1.2;
}

.tag-item:hover:not(:disabled) {
    border-color: var(--primary-light);
    color: var(--text);
    background: rgba(156, 77, 204, 0.1);
    transform: translateY(-1px);
}

.tag-item:active:not(:disabled) {
    transform: translateY(0) scale(0.97);
}

.tag-item.selected {
    border-color: var(--whatsapp);
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.18), rgba(18, 140, 126, 0.08));
    color: var(--text);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25);
    font-weight: 600;
    padding-right: 2.2rem;
}

.tag-item.selected::after {
    content: '✓';
    position: absolute;
    right: 0.7rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--whatsapp);
    font-weight: 800;
    font-size: 0.95rem;
}

.tag-item:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    filter: grayscale(0.5);
}

.tag-item.tag-fruit {
    border-color: rgba(34, 197, 94, 0.3);
}

.tag-item.tag-fruit:hover:not(:disabled) {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    color: #86efac;
}

.tag-item.tag-fruit.selected {
    border-color: #22c55e;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.08));
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.25);
}

.tag-item.tag-fruit.selected::after {
    color: #22c55e;
}

/* =================== RESUMO DO PEDIDO =================== */
.pedido-resumo {
    margin-top: 3.5rem;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(18, 140, 126, 0.05));
    border: 2px solid rgba(37, 211, 102, 0.4);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    animation: pedidoSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes pedidoSlideIn {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.pedido-resumo[hidden] {
    display: none;
}

.pedido-resumo-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.18), rgba(18, 140, 126, 0.08));
    border-bottom: 1px solid rgba(37, 211, 102, 0.25);
}

.pedido-resumo-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: var(--text);
}

.pedido-resumo-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.4));
}

.pedido-resumo-body {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.pedido-linha {
    display: grid;
    grid-template-columns: minmax(140px, 0.5fr) 1fr;
    gap: 1rem;
    align-items: start;
    padding-bottom: 0.85rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
}

.pedido-linha:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pedido-linha[hidden] {
    display: none;
}

.pedido-label {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pedido-count {
    color: var(--text-dim);
    font-size: 0.78rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.1rem 0.5rem;
    border-radius: 50px;
    text-transform: none;
    letter-spacing: 0;
}

.pedido-valor {
    color: var(--text);
    font-weight: 600;
    text-align: right;
    word-break: break-word;
}

.pedido-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: flex-end;
}

.pedido-tags span {
    background: rgba(37, 211, 102, 0.15);
    color: #86efac;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.pedido-total {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(37, 211, 102, 0.3);
    border-bottom: none;
}

.pedido-total .pedido-label {
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
}

.pedido-total .pedido-valor {
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pedido-resumo-footer {
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    border-top: 1px solid rgba(37, 211, 102, 0.2);
}

.btn-pedido-confirmar {
    width: 100%;
    justify-content: center;
    text-decoration: none;
    pointer-events: auto;
}

.btn-pedido-confirmar.disabled {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-dim);
    box-shadow: none;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-pedido-limpar {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.6rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-pedido-limpar:hover {
    border-color: #ef4444;
    color: #fca5a5;
    background: rgba(239, 68, 68, 0.08);
}

.pedido-aviso {
    margin: 0;
    padding: 0.85rem 2rem 1.5rem;
    color: var(--accent);
    font-size: 0.88rem;
    text-align: center;
    background: rgba(255, 182, 39, 0.08);
}

.pedido-aviso[hidden] {
    display: none;
}

/* Botão flutuante "Ver pedido" */
.ver-pedido-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: var(--gradient-whatsapp);
    color: white;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
    z-index: 998;
    display: none;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: floatSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ver-pedido-float.visible {
    display: inline-flex;
}

.ver-pedido-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.ver-pedido-float .ver-pedido-count {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 0.1rem 0.6rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

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

/* =================== CARDÁPIO CTA =================== */
.cardapio-cta {
    margin-top: 3.5rem;
    background: linear-gradient(135deg, rgba(156, 77, 204, 0.2), rgba(255, 107, 107, 0.1));
    border: 1px solid rgba(156, 77, 204, 0.3);
    border-radius: 24px;
    padding: 0.25rem;
}

.cardapio-cta-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    flex-wrap: wrap;
}

.cardapio-cta-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.cardapio-cta-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.cardapio-cta-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cardapio-cta-content .btn {
    margin-left: auto;
    flex-shrink: 0;
}

/* =================== DIFERENCIAIS =================== */
.diferenciais {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.diferencial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(107, 31, 177, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.diferencial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
}

.diferencial-card:hover::before { opacity: 1; }

.diferencial-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(107, 31, 177, 0.4);
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.diferencial-card:hover .diferencial-icon {
    transform: rotate(10deg) scale(1.1);
}

.diferencial-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.diferencial-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* =================== GALERIA =================== */
.galeria {
    background: var(--bg-dark);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 1rem;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.galeria-item:hover img {
    transform: scale(1.15);
}

.galeria-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 6, 23, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.galeria-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
}

/* =================== CTA =================== */
.cta {
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(37, 211, 102, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 182, 39, 0.15) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content > p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.cta-phone {
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

/* =================== FOOTER =================== */
.footer {
    background: var(--bg-darker);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
}

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

.footer-logo { margin-bottom: 1rem; font-size: 1.3rem; }

.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-col h4 {
    color: var(--text);
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.footer-col ul li {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover { color: var(--accent); }

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-dim);
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0.25rem 0;
}

.footer-credit {
    font-size: 0.78rem;
    color: var(--text-dim);
    opacity: 0.75;
}

.footer-credit a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    border-bottom: 1px dotted var(--text-dim);
}

.footer-credit a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* =================== REVEAL =================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* =================== RESPONSIVO =================== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: calc(100vh - 70px);
        background: var(--bg-card);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: right 0.4s ease;
        border-left: 1px solid var(--border);
    }

    .nav-menu.active { right: 0; }

    .hamburger { display: flex; }

    .btn-pedido { display: none; }

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

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

    .floating-card { right: 0; }

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

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

@media (max-width: 640px) {
    section { padding: 4rem 0; }
    .container { padding: 0 1.25rem; }
    .nav-container { padding: 0 1.25rem; }
    .hero { padding: 5rem 1.25rem 3rem; }
    .sobre-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .floating-fruit { font-size: 2rem; }
    .galeria-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .ver-pedido-float {
        bottom: 1.5rem;
        left: 1.5rem;
        padding: 0.7rem 1.1rem;
        font-size: 0.85rem;
    }

    .pedido-resumo-header {
        padding: 1.1rem 1.25rem;
    }

    .pedido-resumo-header h3 {
        font-size: 1.2rem;
    }

    .pedido-resumo-body {
        padding: 1.1rem 1.25rem;
        gap: 0.7rem;
    }

    .pedido-linha {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .pedido-valor,
    .pedido-tags {
        text-align: left;
        justify-content: flex-start;
    }

    .pedido-resumo-footer {
        padding: 1.1rem 1.25rem;
    }

    .pedido-aviso {
        padding: 0.7rem 1.25rem 1.1rem;
    }
    .tamanhos-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .tamanho-card {
        padding: 1rem;
    }
    .tamanho-badge {
        font-size: 1.3rem;
    }
    .tamanho-preco {
        font-size: 1.3rem;
    }
    .cardapio-cta-content {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    .cardapio-cta-content .btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
}
