/* ===================================================================
   HOME — CSS  (Pedido Certo)
   =================================================================== */

:root {
    --bg: #f3f7fc;
    --card: #ffffff;
    --primary: #123a6f;
    --primary-2: #1d5ea8;
    --accent: #2563eb;
    --text: #1e293b;
    --muted: #64748b;
    --border: #d9e2ef;
    --success: #15803d;
    --danger: #dc2626;
    --warning: #d97706;
    --shadow: 0 20px 40px rgba(15, 52, 96, 0.12);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
}

/* ===================================================================
   BARRA AO VIVO (Visitantes Online)
   =================================================================== */

.live-bar {
    position: sticky;
    top: 0;
    z-index: 900;
    background: linear-gradient(135deg, #0f3460, #1d4f8f);
    padding: 8px 16px;
    text-align: center;
    animation: fadeIn .5s ease-out both;
}

.live-bar-inner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .84rem;
    font-weight: 600;
    color: rgba(255,255,255,.9);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 6px #4ade80;
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}

.live-bar strong {
    color: #fff;
    font-weight: 800;
}

/* ===================================================================
   NOTIFICAÇÃO DE COMPRA (toast flutuante)
   =================================================================== */

.purchase-toast {
    position: fixed;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0f3460, #1d4f8f);
    color: #fff;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 600;
    box-shadow: 0 12px 32px rgba(15, 52, 96, .3);
    z-index: 950;
    white-space: nowrap;
    transition: top .5s cubic-bezier(.34, 1.56, .64, 1);
    pointer-events: none;
}

.purchase-toast.show {
    top: 52px;
}

.purchase-toast-icon {
    font-size: 1.2rem;
}

/* ===================================================================
   RESET & BASE
   =================================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Century Gothic", system-ui, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 30%),
        linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
    color: var(--text);
    min-height: 100dvh;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================================================
   HEADER / NAV
   =================================================================== */

.top-header {
    position: sticky;
    top: 36px;
    z-index: 800;
    padding: 0 20px;
}

.top-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(16px) saturate(1.6);
    -webkit-backdrop-filter: blur(16px) saturate(1.6);
    border: 1px solid rgba(18, 58, 111, .08);
    border-radius: 999px;
    padding: 8px 8px 8px 20px;
    box-shadow: 0 8px 32px rgba(15, 52, 96, .08);
    animation: fadeInDown .6s ease-out both;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 1.4rem;
}

.logo-text {
    font-size: 1.1rem;
    color: var(--primary);
    letter-spacing: -.02em;
}

.logo-text strong {
    color: var(--accent);
}

.top-nav {
    display: flex;
    gap: 4px;
    margin-left: auto;
}

.top-nav-link {
    padding: 8px 16px;
    border-radius: 999px;
    font-family: inherit;
    font-size: .85rem;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    transition: all .25s;
}

.top-nav-link:hover {
    color: var(--accent);
    background: rgba(37, 99, 235, 0.06);
}

.top-nav-link.active {
    color: var(--accent);
    background: rgba(37, 99, 235, 0.08);
}

.header-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-family: inherit;
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s;
    box-shadow: 0 4px 12px rgba(37, 99, 235, .3);
}

.header-cta:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, .4);
}

/* ===================================================================
   HERO
   =================================================================== */

.hero-section {
    position: relative;
    padding: 100px 20px 60px;
    text-align: center;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: .06;
    background: var(--accent);
}

.hero-shape--1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-shape--2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
    background: var(--primary);
    animation: float 10s ease-in-out infinite reverse;
}

.hero-shape--3 {
    width: 180px;
    height: 180px;
    top: 40%;
    left: 60%;
    animation: float 6s ease-in-out infinite 1s;
}

.hero-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp .8s ease-out both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(37, 99, 235, .08);
    border: 1px solid rgba(37, 99, 235, .15);
    font-size: .82rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 24px;
    animation: scaleIn .5s ease-out .3s both;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #94a3b8;
    transition: background .3s, box-shadow .3s;
}

.hero-badge-dot.online {
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
    animation: pulse-dot 2s infinite;
}

.hero-badge-dot.offline {
    background: #f87171;
    box-shadow: 0 0 8px #f87171;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -.03em;
    color: var(--primary);
    margin-bottom: 18px;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--accent), #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.6;
    max-width: 540px;
    margin: 0 auto 32px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp .8s ease-out .4s both;
}

/* ---- Buttons ---- */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .25s;
    box-shadow: 0 4px 16px rgba(37, 99, 235, .3);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 99, 235, .4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 999px;
    background: transparent;
    color: var(--primary);
    font-family: inherit;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all .25s;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, .1);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

/* ---- Hero Stats ---- */

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    animation: fadeInUp .8s ease-out .6s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}

.hero-stat-label {
    font-size: .78rem;
    color: var(--muted);
    font-weight: 600;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* ===================================================================
   SECTIONS — COMMON
   =================================================================== */

.section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(37, 99, 235, .08);
    color: var(--accent);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--primary);
    margin-bottom: 8px;
}

.text-accent {
    color: var(--accent);
}

.section-header p {
    color: var(--muted);
    font-size: 1rem;
}

.section-action {
    text-align: center;
    margin-top: 32px;
}

/* ===================================================================
   HORÁRIO DE FUNCIONAMENTO
   =================================================================== */

.horario-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: 0 8px 28px rgba(15, 52, 96, .08);
    border: 1px solid var(--border);
    animation: fadeInUp .6s ease-out both;
}

.horario-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: rgba(37, 99, 235, .08);
    border-radius: var(--radius-sm);
}

.horario-info h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.horario-info p {
    color: var(--muted);
    font-size: .9rem;
}

.horario-status {
    margin-left: auto;
    flex-shrink: 0;
}

.status-pill {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
}

.status-pill.aberta {
    background: rgba(21, 128, 61, .1);
    color: var(--success);
}

.status-pill.fechada {
    background: rgba(220, 38, 38, .1);
    color: var(--danger);
}

.status-pill.pausada {
    background: rgba(217, 119, 6, .1);
    color: var(--warning);
}

.status-pill.agendamento {
    background: rgba(37, 99, 235, .1);
    color: var(--accent);
}

/* ===================================================================
   COMO FUNCIONA
   =================================================================== */

.how-section {
    background: linear-gradient(180deg, transparent, rgba(37, 99, 235, .03), transparent);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    position: relative;
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 36px 24px 28px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(15, 52, 96, .06);
    border: 1px solid var(--border);
    transition: transform .3s, box-shadow .3s;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 52, 96, .12);
}

.module-tag {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, .08);
    color: var(--accent);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: .82rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(37, 99, 235, .3);
}

.step-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.step-card p {
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.5;
}

/* ===================================================================
   PRODUTOS EM DESTAQUE
   =================================================================== */

.products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.showcase-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(15, 52, 96, .06);
    border: 1px solid var(--border);
    transition: transform .3s, box-shadow .3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 52, 96, .12);
}

.showcase-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: var(--bg);
}

.showcase-img-placeholder {
    width: 100%;
    height: 180px;
    display: grid;
    place-items: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #eaf1fb, #dbe7f6);
}

.showcase-body {
    padding: 16px;
}

.showcase-body h3 {
    font-size: .95rem;
    color: var(--primary);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.showcase-body .showcase-desc {
    font-size: .82rem;
    color: var(--muted);
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.showcase-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
}

.showcase-price-old {
    font-size: .82rem;
    color: var(--muted);
    text-decoration: line-through;
    margin-right: 6px;
}

.showcase-promo-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(220, 38, 38, .1);
    color: var(--danger);
    font-size: .72rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.showcase-bestseller-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(245, 158, 11, .12);
    color: #d97706;
    font-size: .72rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.showcase-price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.showcase-sold {
    font-size: .72rem;
    color: var(--muted);
    font-weight: 600;
}

.showcase-category-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(37, 99, 235, .08);
    color: var(--accent);
    font-size: .7rem;
    font-weight: 700;
    margin-bottom: 4px;
}

/* ---- Shimmer Loading ---- */

.products-loading {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.shimmer-card {
    height: 260px;
    border-radius: var(--radius-lg);
    background: linear-gradient(90deg, #eaf1fb 25%, #dbe7f6 50%, #eaf1fb 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* ===================================================================
   VANTAGENS
   =================================================================== */

.perks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.perk-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(15, 52, 96, .06);
    border: 1px solid var(--border);
    transition: transform .3s, box-shadow .3s;
}

.perk-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(15, 52, 96, .1);
}

.perk-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.perk-card h3 {
    font-size: .95rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.perk-card p {
    color: var(--muted);
    font-size: .84rem;
    line-height: 1.5;
}

/* ===================================================================
   AVALIAÇÕES
   =================================================================== */

.reviews-summary {
    text-align: center;
    margin-bottom: 32px;
}

.reviews-big-score {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.big-score-value {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.big-score-stars {
    font-size: 1.4rem;
    color: #facc15;
    letter-spacing: 2px;
}

.big-score-count {
    font-size: .85rem;
    color: var(--muted);
    font-weight: 600;
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.review-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 8px 28px rgba(15, 52, 96, .06);
    border: 1px solid var(--border);
    transition: transform .3s;
}

.review-card:hover {
    transform: translateY(-4px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #6366f1);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: .9rem;
    flex-shrink: 0;
}

.review-meta {
    flex: 1;
    min-width: 0;
}

.review-name {
    font-weight: 700;
    font-size: .9rem;
    color: var(--primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-stars {
    color: #facc15;
    font-size: .85rem;
    letter-spacing: 1px;
}

.review-product {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(37, 99, 235, .08);
    color: var(--accent);
    font-size: .72rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.review-comment {
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.5;
}

.review-date {
    margin-top: 10px;
    font-size: .75rem;
    color: #94a3b8;
}

/* ===================================================================
   CTA FINAL
   =================================================================== */

.cta-section {
    padding: 40px 0 60px;
}

.cta-card {
    background: linear-gradient(135deg, #0f3460 0%, #1d4f8f 100%);
    color: #fff;
    border-radius: 28px;
    padding: 48px 32px;
    text-align: center;
    box-shadow: var(--shadow);
}

.cta-card h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    margin-bottom: 10px;
}

.cta-card p {
    color: rgba(255,255,255,.8);
    margin-bottom: 28px;
    font-size: 1rem;
}

.cta-card .btn-primary {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

.cta-card .btn-primary:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,.2);
}

/* ===================================================================
   FOOTER
   =================================================================== */

.site-footer {
    background: var(--primary);
    color: rgba(255,255,255,.85);
    padding: 48px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-brand .logo-text {
    color: #fff;
}

.footer-brand .logo-text strong {
    color: #93c5fd;
}

.footer-desc {
    font-size: .88rem;
    color: rgba(255,255,255,.6);
    max-width: 280px;
}

.footer-links h4 {
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
}

.footer-links a,
.footer-links p {
    display: block;
    font-size: .85rem;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color .2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: .82rem;
    color: rgba(255,255,255,.45);
}

.footer-bottom strong {
    color: rgba(255,255,255,.7);
}

/* ===================================================================
   MOCKUPS DO SISTEMA (Phone Frames)
   =================================================================== */

.mockups-section {
    background: linear-gradient(180deg, transparent, rgba(37, 99, 235, .02), transparent);
}

.mockups-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    justify-items: center;
}

.mockup-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.mockup-phone {
    position: relative;
    width: 220px;
    height: 420px;
    background: #1a1a2e;
    border-radius: 32px;
    padding: 12px 8px;
    box-shadow:
        0 24px 48px rgba(15, 52, 96, .18),
        inset 0 0 0 2px rgba(255,255,255,.08);
    overflow: hidden;
}

.mockup-notch {
    width: 80px;
    height: 6px;
    background: #2a2a4a;
    border-radius: 999px;
    margin: 0 auto 8px;
}

.mockup-screen {
    position: relative;
    width: 100%;
    height: calc(100% - 14px);
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg);
}

.mockup-iframe {
    width: 375px;
    height: 812px;
    border: none;
    transform: scale(0.525);
    transform-origin: top left;
    pointer-events: none;
}

.mockup-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(26, 26, 46, .4) 100%);
    cursor: default;
}

.mockup-label {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.mockup-label-icon {
    font-size: 1.6rem;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: rgba(37, 99, 235, .08);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.mockup-label strong {
    display: block;
    font-size: .92rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.mockup-label p {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.4;
    margin: 0;
}

/* Fidelidade preview (CSS illustration) */
.mockup-screen--fidelidade {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f3460, #1d5ea8);
}

.mockup-fidelidade-preview {
    text-align: center;
    color: #fff;
    padding: 20px;
    width: 100%;
}

.mockup-fid-header {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.mockup-fid-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,.2);
    border-radius: 999px;
    margin-bottom: 14px;
    overflow: hidden;
}

.mockup-fid-fill {
    width: 72%;
    height: 100%;
    background: linear-gradient(90deg, #4ade80, #22d3ee);
    border-radius: 999px;
    animation: fid-fill 2s ease-out both;
}

@keyframes fid-fill {
    from { width: 0; }
    to   { width: 72%; }
}

.mockup-fid-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: .78rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.mockup-fid-cashback {
    font-size: .82rem;
    font-weight: 700;
    padding: 6px 14px;
    background: rgba(255,255,255,.15);
    border-radius: 999px;
    display: inline-block;
}

/* ===================================================================
   FLUXO VISUAL DO PEDIDO (Order Flow)
   =================================================================== */

.order-flow {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 56px;
    position: relative;
}

.flow-step {
    flex: 1;
    max-width: 240px;
    text-align: center;
    position: relative;
    padding: 0 16px;
}

.flow-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.flow-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    font-size: 2rem;
    background: var(--card);
    border: 3px solid var(--accent);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(37, 99, 235, .15);
    position: relative;
    z-index: 2;
    transition: transform .3s, box-shadow .3s;
}

.flow-step:hover .flow-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 99, 235, .25);
}

.flow-number {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(37, 99, 235, .4);
}

.flow-connector {
    position: absolute;
    top: 36px;
    left: calc(50% + 44px);
    width: calc(100% - 88px + 32px);
    height: 3px;
    background: linear-gradient(90deg, var(--accent), rgba(37, 99, 235, .2));
    z-index: 1;
}

.flow-step:last-child .flow-connector {
    display: none;
}

.flow-step h3 {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.flow-step p {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ── Sub-header for modules detail ── */

.modules-detail-header {
    text-align: center;
    margin-bottom: 28px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.modules-detail-header h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.modules-detail-header p {
    font-size: .9rem;
    color: var(--muted);
}

/* ===================================================================
   PROVA DE FIDELIDADE & RECOMPENSAS
   =================================================================== */

.rewards-proof-section {
    background: linear-gradient(180deg, rgba(37, 99, 235, .03), transparent);
}

.rewards-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.reward-proof-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(15, 52, 96, .06);
    border: 1px solid var(--border);
    transition: transform .3s, box-shadow .3s;
}

.reward-proof-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 52, 96, .12);
}

.reward-proof-icon-big {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.reward-proof-metric {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
    margin-bottom: 4px;
}

.reward-proof-label {
    font-size: .82rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 12px;
}

.reward-proof-card > p {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.reward-proof-example {
    padding: 10px 14px;
    background: rgba(37, 99, 235, .06);
    border-radius: var(--radius-sm);
    font-size: .8rem;
    color: var(--text);
}

.reward-proof-example span {
    color: var(--muted);
    font-weight: 600;
}

.reward-proof-example strong {
    color: var(--accent);
}

.reward-proof-progress {
    padding: 12px 14px;
    background: rgba(37, 99, 235, .06);
    border-radius: var(--radius-sm);
}

.streak-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.streak-dot {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: .72rem;
    font-weight: 800;
    background: var(--border);
    color: var(--muted);
    transition: all .3s;
}

.streak-dot.active {
    background: linear-gradient(135deg, #f97316, #ef4444);
    color: #fff;
    box-shadow: 0 4px 12px rgba(249, 115, 22, .3);
}

.streak-label {
    font-size: .78rem;
    font-weight: 700;
    color: var(--accent);
}

/* ===================================================================
   DEMONSTRAÇÃO EM VÍDEO
   =================================================================== */

.demo-section {
    padding-bottom: 40px;
}

.demo-video-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.demo-video-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(15, 52, 96, .12);
    border: 1px solid var(--border);
}

.demo-video-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #0f3460 0%, #1d5ea8 50%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.demo-video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, .3), transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(37, 99, 235, .4), transparent 50%);
}

.demo-play-btn {
    position: relative;
    z-index: 2;
    transition: transform .3s;
}

.demo-video-placeholder:hover .demo-play-btn {
    transform: scale(1.12);
}

.demo-placeholder-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px 24px;
    background: linear-gradient(transparent, rgba(15, 52, 96, .8));
    text-align: center;
    color: #fff;
    z-index: 2;
}

.demo-ph-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.demo-ph-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.demo-ph-sub {
    font-size: .84rem;
    color: rgba(255,255,255,.7);
}

.demo-features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: var(--card);
}

.demo-feature-tag {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 14px 12px;
    font-size: .82rem;
    font-weight: 700;
    color: var(--primary);
    border-right: 1px solid var(--border);
}

.demo-feature-tag:last-child {
    border-right: none;
}

/* ===================================================================
   SCROLL ANIMATIONS
   =================================================================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease-out, transform .6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================================================
   KEYFRAMES
   =================================================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(.85); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .5; transform: scale(1.4); }
}

@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-20px); }
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */

@media (max-width: 768px) {
    .top-header-inner {
        padding: 6px 6px 6px 14px;
    }

    .top-nav {
        display: none;
    }

    .header-cta {
        margin-left: auto;
        padding: 8px 18px;
        font-size: .8rem;
    }

    .hero-section {
        padding: 80px 16px 40px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-value {
        font-size: 1.3rem;
    }

    .mockups-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mockup-phone {
        width: 200px;
        height: 380px;
    }

    .order-flow {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .flow-connector {
        display: none;
    }

    .rewards-proof-grid {
        grid-template-columns: 1fr;
    }

    .demo-features-row {
        flex-wrap: wrap;
    }

    .demo-feature-tag {
        flex: 1 1 45%;
        border-bottom: 1px solid var(--border);
    }

    .demo-feature-tag:nth-child(2) {
        border-right: none;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .perks-grid {
        grid-template-columns: 1fr 1fr;
    }

    .products-showcase,
    .products-loading {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }

    .reviews-carousel {
        grid-template-columns: 1fr;
    }

    .horario-card {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .horario-status {
        margin-left: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cta-card {
        padding: 36px 20px;
    }
}

@media (max-width: 480px) {
    .perks-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
    }

    .mockup-phone {
        width: 180px;
        height: 340px;
    }

    .demo-feature-tag {
        flex: 1 1 100%;
        border-right: none;
    }
}

/* ===================================================================
   RESPEITAR PREFERÊNCIA SEM ANIMAÇÃO
   =================================================================== */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}