/* ============================================================
   Bella Massa Pizzaria — CSS
   ============================================================ */

:root {
    --primary: #dc2626;
    --primary-hover: #b91c1c;
    --primary-soft: rgba(220, 38, 38, 0.08);
    --accent: #fbbf24;
    --accent-hover: #f59e0b;
    --whatsapp: #25D366;

    --bg: #ffffff;
    --bg-alt: #fef9f0;
    --bg-warm: #fff7ed;
    --bg-dark: #1c0f0a;
    --bg-dark-alt: #2a1710;

    --text: #2b1a12;
    --text-dim: #7c6a5e;
    --text-bright: #ffffff;
    --text-light: #d4c0b0;

    --border: #f0e0d0;
    --border-strong: #e0c8b0;

    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --radius: 8px;
    --radius-lg: 16px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 8px 30px rgba(220, 38, 38, 0.35);

    --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Top bar ---------- */
.top-bar {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 10px 0;
    font-size: 13px;
}
.top-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.top-info {
    display: flex;
    align-items: center;
    gap: 8px;
}
.top-info svg { color: var(--accent); }

/* ---------- Header ---------- */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-mark {
    width: 52px;
    height: 52px;
    background: var(--primary);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: rotate(-10deg);
}
.logo-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--text);
    line-height: 1;
    letter-spacing: 2px;
}
.logo-text em {
    display: block;
    font-style: normal;
    font-size: 10px;
    color: var(--primary);
    letter-spacing: 3px;
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 28px;
    font-size: 14px;
    font-weight: 500;
}
.nav a {
    color: var(--text-dim);
    position: relative;
    padding: 4px 0;
}
.nav a:hover { color: var(--primary); }
.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--t);
}
.nav a:hover::after { width: 100%; }

.menu-toggle { display: none; }

/* ---------- Botões ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius);
    transition: all var(--t);
    white-space: nowrap;
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}
.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
}
.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
    border-color: var(--whatsapp);
}
.btn-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}
.btn-block { width: 100%; }
.btn-lg { padding: 17px 36px; font-size: 15px; }

/* ---------- Hero ---------- */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, var(--bg-warm) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-block;
    background: var(--accent);
    color: var(--bg-dark);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    transform: rotate(-2deg);
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-title {
    color: var(--text);
    margin-bottom: 24px;
    line-height: 0.95;
}
.hero-title em {
    font-style: normal;
    color: var(--primary);
    position: relative;
    display: inline-block;
}
.hero-title em::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 14px;
    background: var(--accent);
    z-index: -1;
    transform: rotate(-1deg);
}
.hero-desc {
    font-size: 1.08rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.hero-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}
.hero-info-item {
    display: flex;
    gap: 12px;
    align-items: center;
}
.hero-info-icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}
.hero-info-item strong {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}
.hero-info-item span {
    font-size: 12.5px;
    color: var(--text-dim);
}

/* ---------- Hero image ---------- */
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-circle {
    position: absolute;
    width: 90%;
    aspect-ratio: 1;
    background: radial-gradient(circle, var(--primary-soft) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseCircle 4s ease-in-out infinite;
}
@keyframes pulseCircle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.hero-image img {
    position: relative;
    width: 85%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 30px 60px rgba(220, 38, 38, 0.25);
    border: 8px solid #fff;
    animation: slowRotate 60s linear infinite;
}
@keyframes slowRotate {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
}
.hero-badge {
    position: absolute;
    background: #fff;
    border-radius: var(--radius);
    padding: 12px 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}
.hero-badge-1 {
    top: 8%;
    left: 0;
}
.hero-badge-2 {
    bottom: 12%;
    right: 0;
    animation-delay: 1.5s;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.hero-badge strong {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 2px;
}
.hero-badge span {
    font-size: 12px;
    color: var(--text-dim);
}

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}
.section-header .eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 14px;
}
.section-header h2 em {
    font-style: normal;
    color: var(--primary);
}
.section-header p {
    color: var(--text-dim);
    font-size: 1.05rem;
    margin-top: 12px;
}

/* ---------- Combos ---------- */
.combos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.combo {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--t);
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}
.combo:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.combo-destaque {
    border-color: var(--accent);
    background: linear-gradient(180deg, #fff 0%, #fffbeb 100%);
}
.combo-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent);
    color: var(--bg-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.combo-tag-destaque {
    background: var(--primary);
    color: #fff;
}
.combo-image {
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center;
}
.combo-content {
    padding: 28px 26px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}
.combo-content h3 {
    font-size: 1.6rem;
    color: var(--text);
    letter-spacing: 1px;
}
.combo-content p {
    font-size: 14.5px;
    color: var(--text-dim);
    flex-grow: 1;
}
.combo-preco {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 12px 0;
    border-top: 1px dashed var(--border);
}
.combo-preco strong {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--primary);
    line-height: 1;
    letter-spacing: 1px;
}
.combo-preco del {
    font-size: 14px;
    color: var(--text-dim);
    text-decoration: line-through;
}

/* ---------- Cardápio ---------- */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.menu-tab {
    padding: 12px 26px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dim);
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 100px;
    transition: all var(--t);
}
.menu-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.menu-tab.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}
.menu-item {
    display: flex;
    gap: 18px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--t);
}
.menu-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.menu-item.is-hidden { display: none; }

.menu-item-image {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    border: 3px solid var(--bg-warm);
}
.menu-item-content { flex-grow: 1; display: flex; flex-direction: column; gap: 6px; }
.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}
.menu-item-header h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    letter-spacing: 0;
}
.menu-item-badge {
    background: var(--accent);
    color: var(--bg-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    white-space: nowrap;
}
.menu-item-content p {
    font-size: 13.5px;
    color: var(--text-dim);
    line-height: 1.5;
    flex-grow: 1;
}
.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}
.menu-item-footer strong {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--primary);
    line-height: 1;
    letter-spacing: 1px;
}
.btn-add {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 700;
    transition: all var(--t);
}
.btn-add:hover {
    background: var(--primary);
    color: #fff;
}

/* ---------- Sobre ---------- */
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.sobre-image { position: relative; }
.sobre-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.sobre-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: var(--accent);
    padding: 24px 32px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    width: 130px;
    height: 130px;
    text-align: center;
}
.sobre-badge strong {
    font-family: var(--font-display);
    font-size: 2.6rem;
    line-height: 1;
    margin-bottom: 2px;
}
.sobre-badge span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    color: #fff;
}

.sobre-text .eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 14px;
}
.sobre-text h2 {
    color: var(--text);
    margin-bottom: 24px;
    line-height: 0.95;
}
.sobre-text p {
    color: var(--text-dim);
    margin-bottom: 18px;
    font-size: 1.02rem;
    line-height: 1.75;
}
.sobre-text strong { color: var(--text); font-weight: 700; }

.sobre-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}
.sobre-feature {
    display: flex;
    gap: 12px;
    align-items: center;
}
.feature-icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}
.sobre-feature strong {
    display: block;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 2px;
    font-weight: 700;
}
.sobre-feature span {
    font-size: 12.5px;
    color: var(--text-dim);
}

/* ---------- Como funciona ---------- */
.entrega-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.entrega-step {
    text-align: center;
    position: relative;
    padding: 30px 20px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--t);
}
.entrega-step:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.step-icon {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 16px;
}
.step-num {
    position: absolute;
    top: 14px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--primary-soft);
    font-weight: 700;
    line-height: 1;
}
.entrega-step h3 {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.entrega-step p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ---------- Info entrega ---------- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.info-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all var(--t);
}
.info-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.info-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-card h3 {
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.info-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}
.info-list li {
    font-size: 14.5px;
    color: var(--text);
    padding: 6px 0;
    border-bottom: 1px dashed var(--border);
}
.info-list li:last-child { border-bottom: none; }
.info-list-horarios li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.info-list-horarios span { color: var(--text-dim); }
.info-list-horarios strong { color: var(--text); }
.info-note {
    font-size: 12.5px;
    color: var(--text-dim);
    font-style: italic;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

/* ---------- Depoimentos ---------- */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.depoimento {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    border: 1px solid var(--border);
    transition: all var(--t);
    position: relative;
}
.depoimento::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--primary-soft);
    line-height: 1;
}
.depoimento:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.depoimento .stars {
    color: var(--accent);
    font-size: 20px;
    letter-spacing: 4px;
    margin-bottom: 18px;
    position: relative;
}
.depoimento p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text);
    position: relative;
}
.depoimento strong {
    display: block;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 2px;
}
.depoimento span {
    font-size: 12.5px;
    color: var(--text-dim);
}

/* ---------- CTA Final ---------- */
.cta-final {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: #fff;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.cta-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.cta-final .eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 16px;
}
.cta-final h2 {
    color: #fff;
    margin-bottom: 20px;
    line-height: 0.95;
}
.cta-final h2 em {
    font-style: normal;
    color: var(--accent);
}
.cta-final p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}
.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-final .btn-primary {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}
.cta-final .btn-primary:hover {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
}
.cta-final .btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}
.cta-final .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-desc {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
    color: var(--text-light);
}
.footer h4 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer li {
    padding: 5px 0;
    font-size: 14px;
    color: var(--text-light);
}
.footer a:hover { color: var(--accent); }
.logo-footer .logo-mark {
    background: var(--accent);
    color: var(--primary);
}
.logo-footer .logo-text strong { color: #fff; }
.logo-footer .logo-text em { color: var(--accent); }
.footer-bottom {
    padding: 24px 0;
    font-size: 13px;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-bottom a { color: var(--accent); }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--whatsapp);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 90;
    transition: all var(--t);
    animation: pulseWhats 2s ease-in-out infinite;
}
@keyframes pulseWhats {
    0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 0 0 16px rgba(37, 211, 102, 0); }
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
.whatsapp-float-tooltip {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-dark);
    color: #fff;
    padding: 8px 14px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t);
}
.whatsapp-float:hover .whatsapp-float-tooltip {
    opacity: 1;
}

/* ---------- Carrinho flutuante ---------- */
.carrinho-flutuante {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 320px;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    z-index: 89;
    animation: slideUp 0.3s ease;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.carrinho-flutuante[hidden] { display: none; }
.carrinho-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.carrinho-header strong {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text);
    letter-spacing: 1px;
}
.carrinho-header span {
    font-size: 12.5px;
    color: var(--text-dim);
}
.carrinho-itens {
    max-height: 180px;
    overflow-y: auto;
    margin-bottom: 14px;
}
.carrinho-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 13.5px;
    border-bottom: 1px dashed var(--border);
}
.carrinho-item:last-child { border-bottom: none; }
.carrinho-item span { color: var(--text); }
.carrinho-item strong { color: var(--primary); }
.carrinho-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    margin-bottom: 14px;
}
.carrinho-total span {
    font-size: 14px;
    color: var(--text-dim);
    font-weight: 600;
}
.carrinho-total strong {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary);
    letter-spacing: 1px;
}

/* ---------- Demo banner ---------- */
.demo-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--bg-dark);
    color: #fff;
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow);
    z-index: 90;
}
.demo-banner a {
    color: var(--accent);
    font-weight: 700;
}
.demo-banner a:hover { color: #fff; }

/* ---------- Responsivo ---------- */
@media (max-width: 991px) {
    .nav { display: none; }
    .menu-toggle { display: flex; }
    .header-actions { display: none; }

    .hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero-image { max-width: 400px; margin: 0 auto; }
    .hero-circle { display: none; }
    .hero-image img { animation: none; }

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

    .sobre-grid { grid-template-columns: 1fr; gap: 60px; }
    .sobre-badge { bottom: -20px; right: 20px; width: 110px; height: 110px; }
    .sobre-badge strong { font-size: 2rem; }

    .info-grid { grid-template-columns: 1fr; }
    .depoimentos-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 575px) {
    .container { padding: 0 18px; }
    .section { padding: 60px 0; }
    .hero { padding: 40px 0 60px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-info { grid-template-columns: 1fr; gap: 14px; }

    .menu-item { flex-direction: column; }
    .menu-item-image { width: 100%; height: 160px; }

    .sobre-features { grid-template-columns: 1fr; }

    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }

    .carrinho-flutuante { right: 12px; left: 12px; width: auto; bottom: 90px; }

    .demo-banner { bottom: 12px; left: 12px; right: 90px; font-size: 11px; }
    .whatsapp-float { bottom: 12px; right: 12px; width: 52px; height: 52px; }
    .whatsapp-float-tooltip { display: none; }
}