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

html, body {
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: #111827;
    background: #f5f7fb;
}

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

a {
    color: inherit;
}

.wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================================
   BOTONES GENERALES
========================================================= */
.btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: #4f46e5;
    color: #ffffff;
}

.btn-light {
    background: #ffffff;
    color: #111827;
    border: 1px solid #e5e7eb;
}

.btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    font-weight: 800;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* =========================================================
   LANDING - HEADER
========================================================= */
.landing-body {
    background: #f5f7fb;
}

.landing-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 50;
}

.landing-header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.landing-logo {
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    color: #111827;
    letter-spacing: -0.02em;
}

.landing-logo span {
    color: #4f46e5;
}

.landing-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* =========================================================
   LANDING - HERO
========================================================= */
.landing-hero {
    padding: 70px 0 40px;
    background:
        radial-gradient(circle at top left, rgba(99, 102, 241, 0.18), transparent 35%),
        linear-gradient(180deg, #eef2ff 0%, #f8fafc 100%);
}

.landing-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
}

.landing-kicker {
    color: #4f46e5;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.landing-title {
    font-size: 52px;
    line-height: 1.04;
    font-weight: 900;
    margin-bottom: 16px;
    color: #111827;
}

.landing-subtitle {
    font-size: 20px;
    line-height: 1.55;
    color: #4b5563;
}

.landing-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.landing-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.landing-feature {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 16px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

/* =========================================================
   LANDING - MOCKUP
========================================================= */
.landing-mockup-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 22px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
    border: 1px solid #e5e7eb;
}

.landing-mockup-top {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.landing-mockup-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 16px;
}

.landing-mockup-product {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 12px;
}

.landing-mockup-image {
    height: 90px;
    border-radius: 14px;
    background: linear-gradient(135deg, #c7d2fe, #dbeafe);
    margin-bottom: 10px;
}

.landing-mockup-name {
    font-weight: 700;
    color: #374151;
}

.landing-mockup-wa {
    background: #25D366;
    color: #ffffff;
    text-align: center;
    padding: 14px;
    border-radius: 14px;
    font-weight: 800;
}

/* =========================================================
   LANDING - SECCIONES GENERALES
========================================================= */
.landing-section {
    padding: 56px 0;
}

.landing-section-alt {
    background: #ffffff;
}

.landing-section-head {
    margin-bottom: 24px;
}

.landing-section-title {
    font-size: 40px;
    line-height: 1.08;
    font-weight: 900;
    color: #111827;
}

/* =========================================================
   LANDING - BENEFICIOS
========================================================= */
.landing-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.landing-benefit-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.landing-benefit-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.landing-benefit-text {
    color: #6b7280;
    line-height: 1.55;
}

/* =========================================================
   LANDING - PLANES
========================================================= */
.landing-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.landing-price-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
    position: relative;
}

.landing-price-card-featured {
    background: #eef2ff;
    border: 2px solid #4f46e5;
}

.landing-price-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #4f46e5;
    color: #ffffff;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.landing-price-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
}

.landing-price-hnl {
    font-size: 40px;
    font-weight: 900;
    color: #111827;
    line-height: 1;
}

.landing-price-usd {
    font-size: 16px;
    color: #6b7280;
    margin-top: 8px;
    margin-bottom: 18px;
}

.landing-price-list {
    padding-left: 18px;
    margin-bottom: 22px;
    color: #374151;
    line-height: 1.7;
}

/* =========================================================
   LANDING - CTA FINAL
========================================================= */
.landing-cta-box {
    background: linear-gradient(135deg, #312e81 0%, #1d4ed8 55%, #0f766e 100%);
    color: #ffffff;
    border-radius: 28px;
    padding: 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.landing-cta-box .landing-kicker,
.landing-cta-box .landing-section-title,
.landing-cta-box .landing-subtitle {
    color: #ffffff;
}

/* =========================================================
   STORE - GENERAL
========================================================= */
.store-body {
    background: #f5f7fb;
}

.store-hero {
    position: relative;
    min-height: 250px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.store-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.store-hero-bg-default {
    background: linear-gradient(135deg, #312e81 0%, #1d4ed8 55%, #0f766e 100%);
}

.store-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.08);
}

.store-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 250px;
    display: flex;
    align-items: flex-end;
    padding: 0 20px 26px;
    margin: 0 auto;
    max-width: 1200px;
}

.store-brand-card {
    width: 100%;
    margin: 0;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.10);
}

.store-brand-top {
    display: flex;
    gap: 18px;
    align-items: center;
}

.store-logo-wrap {
    flex: 0 0 96px;
}

.store-logo {
    width: 96px;
    height: 96px;
    object-fit: contain;
    border-radius: 18px;
    background: #ffffff;
    padding: 8px;
    border: 1px solid #e5e7eb;
}

.store-logo-placeholder {
    width: 96px;
    height: 96px;
    border-radius: 18px;
    background: var(--store-primary, #4f46e5);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 900;
}

.store-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
}

.store-description {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.5;
}

.store-meta {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.store-meta-item {
    background: #f1f5f9;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 14px;
    color: #374151;
    font-weight: 600;
}

.store-main {
    padding: 28px 20px 110px;
    max-width: 1200px;
    margin: 0 auto;
}

.store-section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.store-kicker {
    color: var(--store-primary, #4f46e5);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.store-section-title {
    font-size: 28px;
    font-weight: 800;
}

.store-empty {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.branding {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #9ca3af;
}

/* =========================================================
   STORE - PRODUCTOS
========================================================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.product-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.image-placeholder {
    height: 220px;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-weight: 600;
}

.product-card-body {
    padding: 16px;
}

.product-name {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.product-price {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 900;
    color: var(--store-primary, #4f46e5);
}

.product-description {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
    line-height: 1.5;
}

/* =========================================================
   WHATSAPP FLOTANTE
========================================================= */
.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    background: #25D366;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    padding: 14px 18px;
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.20);
    z-index: 999;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
    .landing-hero-grid,
    .landing-benefits-grid,
    .landing-pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .landing-header-inner {
        min-height: auto;
        padding: 14px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .landing-logo {
        font-size: 26px;
    }

    .landing-header-actions {
        width: 100%;
    }

    .landing-hero {
        padding: 48px 0 28px;
    }

    .landing-hero-grid,
    .landing-benefits-grid,
    .landing-pricing-grid,
    .landing-features {
        grid-template-columns: 1fr;
    }

    .landing-title {
        font-size: 38px;
    }

    .landing-section-title {
        font-size: 32px;
    }

    .landing-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .store-hero {
        min-height: 220px;
    }

    .store-hero-content {
        min-height: 220px;
        padding: 0 16px 20px;
    }

    .store-brand-card {
        padding: 18px;
    }

    .store-brand-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .store-logo,
    .store-logo-placeholder {
        width: 82px;
        height: 82px;
    }

    .store-title {
        font-size: 24px;
    }

    .store-main {
        padding: 24px 16px 120px;
    }

    .store-section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        padding: 13px 16px;
        font-size: 14px;
    }
}

.landing-logo-img img {
    height: 100px;
    width: auto;
    display: block;
}