:root {
    --bg-light: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --brand-dark: #1e293b;
    --brand-accent: #10b981;
    /* Verde Logzz COD */
    --brand-accent-hover: #059669;
    --border-light: #e2e8f0;
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-muted {
    color: var(--text-muted) !important;
}

/* Top Promo Bar */
.top-bar {
    background: var(--brand-dark);
    color: white;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 500;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--brand-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1.5);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Header Navigation */
.main-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    font-weight: 900;
    font-family: 'Outfit';
    color: var(--brand-dark);
}

.logo i {
    color: var(--brand-accent);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--brand-accent);
}

.btn-small.bg-glass {
    background: transparent;
    border: 2px solid var(--brand-dark);
    color: var(--brand-dark);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-small.bg-glass:hover {
    background: var(--brand-dark);
    color: white;
}

/* Super Hero Banner */
.store-hero {
    position: relative;
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.badge-trust {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ecfdf5;
    color: #047857;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--brand-dark);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.btn-primary-big {
    background: var(--brand-dark);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-family: 'Outfit';
    font-size: 1.1rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s, background 0.2s;
}

.btn-primary-big:hover {
    transform: translateY(-2px);
    background: #000;
}

.sp-only-tag {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.4;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: #a7f3d0;
    top: -100px;
    left: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: #bae6fd;
    bottom: -50px;
    right: -50px;
}

/* How it Works / Features */
.how-it-works {
    padding: 60px 0 100px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--brand-dark);
}

.grid-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #ecfdf5;
    color: var(--brand-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Storefront Grid */
.storefront {
    padding: 40px 0 120px;
}

.storefront-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 20px;
}

.storefront-header h2 {
    margin-bottom: 0;
}

.filter-pills {
    display: flex;
    gap: 10px;
}

.pill {
    padding: 6px 16px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.pill.active,
.pill:hover {
    background: var(--brand-dark);
    color: white;
    border-color: var(--brand-dark);
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ef4444;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    z-index: 10;
}

.card-badge.bg-gray {
    background: var(--text-muted);
}

.product-image {
    width: 100%;
    height: 260px;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.overlay-action {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .overlay-action {
    opacity: 1;
}

.btn-overlay {
    background: white;
    color: var(--brand-dark);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover .btn-overlay {
    transform: translateY(0);
}

.product-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.product-name {
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 15px;
    flex: 1;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.price-old {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 0.95rem;
}

.price-new {
    font-family: 'Outfit';
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand-dark);
}

.quick-benefits {
    list-style: none;
    margin-bottom: 24px;
}

.quick-benefits li {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.quick-benefits i {
    color: var(--brand-accent);
}

.btn-buy-card {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--brand-accent);
    color: white;
    text-decoration: none;
    padding: 14px;
    border-radius: 8px;
    font-family: 'Outfit';
    font-weight: 800;
    transition: background 0.2s;
}

.btn-buy-card:hover {
    background: var(--brand-accent-hover);
}

.btn-buy-card.disabled {
    background: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
}

/* Footer */
.store-footer {
    background: #0f172a;
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.f-brand p {
    color: #94a3b8;
    margin-top: 15px;
    font-size: 0.95rem;
    max-width: 400px;
}

.f-brand .logo {
    color: white;
}

.f-links h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.f-links a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.f-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    border-top: 1px solid #1e293b;
    padding-top: 30px;
    color: #64748b;
    font-size: 0.85rem;
}

.mt-4 {
    margin-top: 16px;
}

/* Responsive */
@media (max-width: 900px) {

    .nav-links,
    .btn-small.bg-glass {
        display: none;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .grid-steps,
    .product-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .storefront-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .filter-pills {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }
}