/* ============================
   BASE / RESET
============================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --pink-bg: #ffe4f1;
    --pink-bg-strong: #ffcfe4;
    --pink-soft: #ffd8ec;
    --pink: #ff4fa3;
    --pink-dark: #e43d8e;
    --pink-pill-bg: #ffe9f4;
    --text-main: #ff2c87;
    --text-muted: #7a6b79;
    --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.08);
    --radius-card: 26px;
    --max-width: 1120px;
}

body.lev-body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #ffeaf6 0, #fdd4e8 30%, #ffcfe4 70%);
    color: #444;
    min-height: 100vh;
    padding-bottom: 80px; /* espaço pro menu bottom */
}

/* ============================
   TOPBAR
============================ */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: linear-gradient(to bottom, rgba(255, 228, 241, 0.95), rgba(255, 228, 241, 0.7));
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.topbar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: radial-gradient(circle at 30% 20%, #ffeaf6, #ff63b2);
    box-shadow: 0 10px 22px rgba(255, 87, 155, 0.45);
    color: #fff;
    font-weight: 800;
    font-size: 16px;
}
.logo-badge.small {
    width: 30px;
    height: 30px;
    font-size: 13px;
}

.logo-text {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-main);
}

.topbar-nav {
    display: flex;
    gap: 16px;
    font-size: 14px;
}
.topbar-nav a {
    text-decoration: none;
    color: #b24a7e;
    padding: 4px 8px;
    border-radius: 999px;
    transition: background 0.15s;
}
.topbar-nav a:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-main);
}

/* ============================
   HERO
============================ */
.hero {
    padding: 26px 16px 10px;
}
.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 26px;
    align-items: center;
}
.hero-small {
    padding-bottom: 0;
}
.hero-inner-small {
    grid-template-columns: minmax(0, 1fr);
}

.hero-text h1 {
    font-size: 28px;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 8px;
}
.hero-sub {
    font-size: 14px;
    color: #9b607c;
    margin-bottom: 10px;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    font-size: 11px;
    color: #b24a7e;
    margin-bottom: 6px;
}

.hero-list {
    list-style: none;
    margin-top: 4px;
    margin-bottom: 12px;
}
.hero-list li {
    font-size: 13px;
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}
.hero-mini {
    font-size: 11px;
    color: #b37d97;
}

/* HERO CARD */
.hero-card {
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    padding: 14px 16px 16px;
}
.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
.hero-pill {
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--pink-pill-bg);
    color: var(--text-main);
}
.hero-heart {
    font-size: 18px;
}

.hero-card-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #c97a9d;
    margin-bottom: 2px;
}
.hero-card h2 {
    font-size: 16px;
    color: var(--text-main);
    margin-bottom: 4px;
}
.hero-card-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.hero-card-prices {
    list-style: none;
    background: var(--pink-pill-bg);
    border-radius: 18px;
    padding: 8px 10px;
    font-size: 11px;
    margin-bottom: 10px;
}
.hero-card-prices li {
    display: flex;
    justify-content: space-between;
    color: #8a6b7a;
}
.hero-card-prices strong {
    color: var(--text-main);
}

/* ============================
   BOTÕES
============================ */
.btn {
    border-radius: 999px;
    border: none;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
}
.btn-primary {
    background: linear-gradient(135deg, #ff7ac0, #ff2c87);
    color: #fff;
    box-shadow: 0 10px 20px rgba(255, 74, 150, 0.65);
}
.btn-primary:hover {
    filter: brightness(1.03);
}
.btn-ghost {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-main);
}
.btn-full {
    width: 100%;
}

/* ============================
   SEÇÕES
============================ */
.section-white,
.section-pink {
    padding: 14px 16px 20px;
}
.section-white {
    background: rgba(255, 255, 255, 0.15);
}
.section-pink {
    background: rgba(255, 255, 255, 0.35);
}
.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.section-inner-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.section-title {
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 4px;
}
.section-sub {
    font-size: 13px;
    color: #9b607c;
}

/* ============================
   FEATURES
============================ */
.features-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 10px;
}
.feature-card {
    background: #fff;
    border-radius: 18px;
    padding: 10px 12px;
    box-shadow: var(--shadow-soft);
    font-size: 13px;
    color: var(--text-muted);
}
.feature-card h3 {
    font-size: 15px;
    color: var(--text-main);
    margin-bottom: 4px;
}

/* ============================
   CATEGORIAS / FILTROS
============================ */
.catalog-top {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}
.category-bar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}
.category-chip {
    flex: 0 0 auto;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 97, 170, 0.5);
    background: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    color: var(--text-main);
    cursor: pointer;
    white-space: nowrap;
    transition: 0.15s;
}
.category-chip.active {
    background: linear-gradient(135deg, #ff71b5, #ff3a98);
    color: #fff;
    box-shadow: 0 8px 22px rgba(255, 70, 152, 0.45);
    border-color: transparent;
}

/* ============================
   GRID DO CATÁLOGO
============================ */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

/* CARD DO PRODUTO */
.card {
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    padding: 10px 12px 12px;
    display: flex;
    flex-direction: column;
}
.card-badge {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    align-self: flex-start;
    margin-bottom: 6px;
    color: var(--text-main);
}

.card-image {
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 8px;
    background: #f5f5f5;
}
.card-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 170px;
}

.card-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #c97a9d;
    margin-bottom: 2px;
}
.card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}
.card-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.card-prices-header {
    font-size: 11px;
    color: #b24a7e;
    margin-bottom: 3px;
}
.price-list {
    list-style: none;
    border-radius: 16px;
    background: var(--pink-pill-bg);
    padding: 6px 10px;
    margin-bottom: 8px;
}
.price-item {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #8a6b7a;
}
.price-item + .price-item {
    margin-top: 2px;
}
.price-item span.val {
    color: var(--text-main);
    font-weight: 700;
}

.card-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.card-minimo {
    font-size: 11px;
    color: #b37d97;
}

/* ============================
   RODAPÉ
============================ */
.footer {
    padding: 16px 16px 10px;
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    font-size: 13px;
    color: #9b607c;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links {
    display: flex;
    gap: 10px;
}
.footer-link {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    border: none;
    padding: 6px 10px;
    font-size: 12px;
    cursor: pointer;
    color: var(--text-main);
}
.footer-copy {
    text-align: center;
    font-size: 11px;
    color: #b37d97;
    margin-top: 4px;
}

/* ============================
   MENU INFERIOR (MOBILE)
============================ */
.bottom-nav {
    position: fixed;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    width: min(360px, 100% - 32px);
    background: rgba(255, 255, 255, 0.96);
    border-radius: 999px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 12px;
    z-index: 40;
}

.bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 11px;
    color: #a38a9a;
    cursor: pointer;
    background: none;
    border: none;
}
.bottom-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--pink-pill-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}
.bottom-icon-img {
    width: 18px;
    height: 18px;
}
.bottom-whats {
    background: #25d366;
}
.bottom-insta {
    background: #fd1d1d;
}

/* ============================
   RESPONSIVO
============================ */
@media (max-width: 800px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }
    .hero-card {
        order: -1;
    }
    .topbar-nav {
        display: none;
    }
    .section-inner-flex {
        flex-direction: column;
        align-items: flex-start;
    }
}
