:root {
    --color-primary: #4A5D48; --color-primary-light: #E8EDE7; --color-secondary: #D8C3A5;
    --color-accent: #BC6C25; --color-dark: #2C2C2C; --color-gray: #F4F4F4;
    --color-white: #FFFFFF; --color-border: #E0E0E0; --color-text: #555555;
    --color-star: #FFA41C; --color-yape: #742284; --color-plin: #00D4AA;
    --color-transfer: #0056B3; --color-success: #2E7D32; --color-warning: #EF6C00;
    --color-danger: #C53030;
    --font-heading: 'Playfair Display', serif; --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05); --shadow-md: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 30px rgba(0,0,0,0.1); --radius: 8px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--color-dark); background: var(--color-gray); line-height: 1.6; }
.navbar { background: var(--color-white); height: 80px; position: fixed; top: 0; width: 100%; z-index: 1000; box-shadow: var(--shadow-sm); display: flex; justify-content: space-between; align-items: center; padding: 0 5%; }
.logo { font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-primary); font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--color-dark); font-weight: 500; font-size: 0.95rem; transition: color 0.3s; cursor: pointer; }
.nav-links a:hover, .nav-links a.active { color: var(--color-accent); }
.nav-cta { background: var(--color-accent); color: white; padding: 10px 20px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: background 0.3s; cursor: pointer; }
.nav-cta:hover { background: #a55d1e; }
.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--color-primary); }
.main-container { margin-top: 80px; min-height: calc(100vh - 80px); }
.section { display: none; padding: 60px 5%; animation: fadeIn 0.5s ease; }
.section.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.hero { background: var(--color-white); display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding: 60px 5%; min-height: 80vh; }
.hero-content h1 { font-family: var(--font-heading); font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; }
.hero-content p { font-size: 1.1rem; color: var(--color-text); margin-bottom: 30px; max-width: 500px; }
.btn { display: inline-block; padding: 14px 32px; border-radius: 50px; font-weight: 600; text-decoration: none; transition: all 0.3s; cursor: pointer; border: none; font-family: var(--font-body); font-size: 0.95rem; }
.btn-primary { background: var(--color-accent); color: white; box-shadow: 0 4px 15px rgba(188,108,37,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(188,108,37,0.4); }
.btn-outline { background: transparent; border: 2px solid var(--color-primary); color: var(--color-primary); }
.btn-sm { padding: 8px 15px; font-size: 0.85rem; }
.btn-xs { padding: 5px 12px; font-size: 0.78rem; }
.btn-success { background: var(--color-success); color: white; }
.btn-success:hover { background: #256B28; }
.hero-image { height: 500px; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.categories-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; margin: 40px 0; }
.cat-card { background: var(--color-white); padding: 20px; border-radius: var(--radius); text-align: center; transition: transform 0.3s; cursor: pointer; border: 1px solid var(--color-border); }
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--color-primary); }
.cat-icon { width: 50px; height: 50px; background: var(--color-primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; color: var(--color-primary); font-size: 1.2rem; }
.cat-name { font-weight: 600; font-size: 0.9rem; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
.product-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.3s; cursor: pointer; position: relative; }
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-img { height: 220px; width: 100%; object-fit: cover; background: #e0e0e0; }
.badge { position: absolute; top: 15px; left: 15px; background: var(--color-accent); color: white; font-size: 0.75rem; padding: 4px 10px; border-radius: 20px; text-transform: uppercase; font-weight: 700; }
.product-body { padding: 20px; }
.product-cat { font-size: 0.8rem; color: var(--color-text); text-transform: uppercase; letter-spacing: 1px; }
.product-title { font-family: var(--font-heading); font-size: 1.2rem; margin: 5px 0; }
.product-price { font-weight: 700; color: var(--color-primary); font-size: 1.1rem; }
.product-stars { color: var(--color-star); font-size: 0.85rem; margin: 5px 0; }
.product-footer { margin-top: 15px; display: flex; gap: 10px; }
.product-footer .btn-sm { flex: 1; text-align: center; }
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 80px 0; text-align: center; }
.benefit-item i { font-size: 2rem; color: var(--color-accent); margin-bottom: 15px; }
.benefit-item h4 { margin-bottom: 10px; }
.catalog-header { text-align: center; margin-bottom: 30px; }
.catalog-header h2 { font-family: var(--font-heading); font-size: 2.2rem; }
.catalog-toolbar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; margin-bottom: 25px; background: white; padding: 15px 20px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.catalog-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-chip { padding: 6px 16px; border-radius: 20px; border: 1px solid var(--color-border); background: white; cursor: pointer; font-size: 0.85rem; transition: all 0.2s; }
.filter-chip:hover, .filter-chip.active { background: var(--color-primary); color: white; border-color: var(--color-primary); }
.catalog-sort select { padding: 8px 12px; border: 1px solid var(--color-border); border-radius: var(--radius); font-family: var(--font-body); }
.catalog-count { font-size: 0.9rem; color: var(--color-text); }
.product-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: 3000; display: none; align-items: flex-start; justify-content: center; overflow-y: auto; padding: 40px 20px; }
.product-modal-overlay.active { display: flex; }
.product-modal { background: white; width: 100%; max-width: 1000px; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.2); position: relative; }
.pm-close { position: absolute; top: 15px; right: 20px; background: white; border: none; font-size: 1.5rem; cursor: pointer; width: 40px; height: 40px; border-radius: 50%; box-shadow: var(--shadow-sm); z-index: 10; display: flex; align-items: center; justify-content: center; }
.pm-close:hover { background: var(--color-gray); }
.pm-breadcrumb { padding: 12px 25px; font-size: 0.8rem; color: var(--color-text); border-bottom: 1px solid var(--color-border); background: #fafafa; }
.pm-breadcrumb a { color: var(--color-primary); text-decoration: none; }
.pm-body { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.pm-gallery { padding: 30px; background: #fafafa; border-right: 1px solid var(--color-border); }
.pm-main-img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius); margin-bottom: 15px; background: #e0e0e0; }
.pm-thumbs { display: flex; gap: 10px; }
.pm-thumb { width: 60px; height: 60px; border-radius: 6px; object-fit: cover; cursor: pointer; border: 2px solid transparent; opacity: 0.7; background: #e0e0e0; }
.pm-thumb:hover, .pm-thumb.active { border-color: var(--color-accent); opacity: 1; }
.pm-info { padding: 30px; }
.pm-cat { font-size: 0.8rem; color: var(--color-primary); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.pm-title { font-family: var(--font-heading); font-size: 1.8rem; margin: 8px 0; line-height: 1.3; }
.pm-rating { display: flex; align-items: center; gap: 10px; margin: 10px 0; }
.pm-stars { color: var(--color-star); font-size: 1rem; }
.pm-review-count { color: #007185; font-size: 0.9rem; cursor: pointer; }
.pm-review-count:hover { text-decoration: underline; }
.pm-divider { border: none; border-top: 1px solid var(--color-border); margin: 15px 0; }
.pm-price { font-size: 2rem; font-weight: 700; color: var(--color-dark); }
.pm-price-old { font-size: 1rem; color: #999; text-decoration: line-through; margin-left: 10px; }
.pm-price-save { font-size: 0.85rem; color: #CC0C39; font-weight: 600; margin-left: 5px; }
.pm-features { list-style: none; margin: 15px 0; }
.pm-features li { padding: 4px 0; font-size: 0.9rem; color: var(--color-text); position: relative; padding-left: 18px; }
.pm-features li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; background: var(--color-primary); border-radius: 50%; }
.pm-stock { font-size: 0.9rem; margin: 10px 0; }
.pm-stock.in-stock { color: #007600; font-weight: 600; }
.pm-stock.low-stock { color: #CC6600; font-weight: 600; }
.pm-actions { display: flex; gap: 10px; margin-top: 20px; }
.pm-actions .btn { flex: 1; text-align: center; padding: 12px; }
.btn-cart { background: #FFD814; color: var(--color-dark); border: 1px solid #FCD200; }
.btn-cart:hover { background: #F7CA00; }
.btn-buy { background: var(--color-accent); color: white; }
.pm-meta { margin-top: 20px; font-size: 0.82rem; color: var(--color-text); }
.pm-meta span { margin-right: 20px; }
.pm-meta i { width: 18px; color: var(--color-primary); }
.pm-reviews-section { border-top: 1px solid var(--color-border); padding: 25px 30px; }
.pm-reviews-header h4 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 20px; }
.pm-review-summary { display: flex; gap: 30px; align-items: center; margin-bottom: 25px; padding-bottom: 20px; border-bottom: 1px solid var(--color-border); }
.pm-review-avg { text-align: center; }
.pm-review-avg .big-num { font-size: 3rem; font-weight: 700; line-height: 1; }
.pm-review-avg .stars { color: var(--color-star); margin: 5px 0; }
.pm-review-avg .count { font-size: 0.85rem; color: var(--color-text); }
.pm-review-bars { flex: 1; }
.pm-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; font-size: 0.82rem; }
.pm-bar-row span:first-child { width: 40px; color: var(--color-text); }
.pm-bar-track { flex: 1; height: 8px; background: #eee; border-radius: 4px; overflow: hidden; }
.pm-bar-fill { height: 100%; background: var(--color-star); border-radius: 4px; }
.pm-review-card { padding: 18px 0; border-bottom: 1px solid #f0f0f0; }
.pm-review-card:last-child { border-bottom: none; }
.pm-review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.pm-review-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--color-primary-light); display: flex; align-items: center; justify-content: center; color: var(--color-primary); font-weight: 600; font-size: 0.85rem; }
.pm-review-name { font-weight: 600; font-size: 0.9rem; }
.pm-review-date { font-size: 0.8rem; color: #999; }
.pm-review-stars { color: var(--color-star); font-size: 0.85rem; margin-bottom: 5px; }
.pm-review-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 5px; }
.pm-review-text { font-size: 0.88rem; color: var(--color-text); line-height: 1.5; }
.pm-review-helpful { margin-top: 8px; font-size: 0.82rem; color: #666; }
.pm-review-helpful button { background: none; border: 1px solid var(--color-border); padding: 3px 12px; border-radius: 20px; cursor: pointer; font-size: 0.78rem; margin-left: 5px; }
.pm-review-helpful button:hover { background: var(--color-primary-light); }
.pm-write-review { margin-top: 20px; padding: 20px; background: var(--color-gray); border-radius: var(--radius); }
.pm-write-review h5 { margin-bottom: 10px; }
.pm-write-review textarea { width: 100%; padding: 10px; border: 1px solid var(--color-border); border-radius: var(--radius); resize: vertical; min-height: 80px; font-family: var(--font-body); }
.pm-write-review .star-select { display: flex; gap: 5px; margin-bottom: 10px; }
.pm-write-review .star-select i { cursor: pointer; font-size: 1.2rem; color: #ddd; }
.pm-write-review .star-select i.active { color: var(--color-star); }
.dashboard-header { margin-bottom: 30px; }
.dashboard-header h2 { font-family: var(--font-heading); font-size: 2rem; }
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 25px; }
.kpi-card { background: white; padding: 25px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.kpi-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.kpi-icon { width: 45px; height: 45px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.kpi-value { font-size: 2rem; font-weight: 700; line-height: 1.1; }
.kpi-label { font-size: 0.85rem; color: var(--color-text); }
.kpi-change { font-size: 0.8rem; margin-top: 5px; }
.kpi-change.up { color: var(--color-success); }
.kpi-change.down { color: var(--color-danger); }
.kpi-revenue .kpi-value { color: var(--color-success); }
.kpi-revenue .kpi-icon { background: #E8F5E9; color: var(--color-success); }
.kpi-leads .kpi-value { color: var(--color-primary); }
.kpi-leads .kpi-icon { background: var(--color-primary-light); color: var(--color-primary); }
.kpi-conversion .kpi-value { color: var(--color-accent); }
.kpi-conversion .kpi-icon { background: #FFF3E0; color: var(--color-accent); }
.kpi-top .kpi-value { font-size: 1.1rem; color: var(--color-dark); }
.kpi-top .kpi-icon { background: #E3F2FD; color: #1565C0; }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-bottom: 30px; }
.dash-card { background: white; border-radius: var(--radius); padding: 25px; box-shadow: var(--shadow-sm); }
.dash-card h4 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; }
.dash-card h4 i { color: var(--color-primary); }
.traffic-item { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #f0f0f0; }
.traffic-item:last-child { border-bottom: none; }
.traffic-source { display: flex; align-items: center; gap: 10px; }
.traffic-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.traffic-icon.tiktok { background: #000; color: white; }
.traffic-icon.whatsapp { background: #25D366; color: white; }
.traffic-icon.facebook { background: #1877F2; color: white; }
.traffic-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.traffic-icon.web { background: var(--color-primary-light); color: var(--color-primary); }
.traffic-name { font-weight: 600; font-size: 0.9rem; }
.traffic-detail { font-size: 0.8rem; color: var(--color-text); }
.traffic-bar-track { width: 100px; height: 6px; background: #eee; border-radius: 3px; overflow: hidden; }
.traffic-bar-fill { height: 100%; border-radius: 3px; }
.traffic-pct { font-weight: 600; font-size: 0.85rem; width: 40px; text-align: right; }
.campaign-item { display: flex; align-items: center; gap: 15px; padding: 12px 0; border-bottom: 1px solid #f0f0f0; }
.campaign-item:last-child { border-bottom: none; }
.campaign-status { width: 10px; height: 10px; border-radius: 50%; }
.campaign-status.active { background: var(--color-success); }
.campaign-status.paused { background: var(--color-warning); }
.campaign-info { flex: 1; }
.campaign-name { font-weight: 600; font-size: 0.9rem; }
.campaign-meta { font-size: 0.8rem; color: var(--color-text); }
.campaign-roi { text-align: right; }
.campaign-roi .value { font-weight: 700; font-size: 0.95rem; }
.campaign-roi .label { font-size: 0.75rem; color: var(--color-text); }
.data-table-container { background: white; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); overflow-x: auto; }
.table-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 10px; }
table { width: 100%; border-collapse: collapse; min-width: 1000px; }
th, td { padding: 12px 15px; text-align: left; border-bottom: 1px solid var(--color-border); font-size: 0.9rem; }
th { background: var(--color-gray); font-weight: 600; text-transform: uppercase; font-size: 0.78rem; color: var(--color-text); letter-spacing: 0.5px; }
tr:hover { background: #fcfcfc; }
.status-badge { padding: 4px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 600; display: inline-block; }
.status-nuevo { background: #E3F2FD; color: #1565C0; }
.status-contactado { background: #FFF3E0; color: #EF6C00; }
.status-pendiente { background: #F3E5F5; color: #7B1FA2; }
.status-venta-cerrada { background: #E8F5E9; color: #2E7D32; }
.status-cliente { background: #E0F2F1; color: #00695C; }
.source-badge { font-size: 0.78rem; display: flex; align-items: center; gap: 5px; }
.source-badge i { font-size: 0.7rem; }
.action-btns { display: flex; gap: 5px; align-items: center; }
.action-btn { background: none; border: 1px solid var(--color-border); padding: 5px 8px; border-radius: 6px; cursor: pointer; font-size: 0.8rem; transition: all 0.2s; }
.action-btn:hover { background: var(--color-primary-light); border-color: var(--color-primary); }
.action-btn.wa { color: #25D366; border-color: #25D366; }
.action-btn.wa:hover { background: #25D366; color: white; }
.status-select { padding: 4px 8px; border: 1px solid var(--color-border); border-radius: 6px; font-size: 0.78rem; font-family: var(--font-body); cursor: pointer; background: white; }
.post-sale-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.post-sale-card { background: white; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); border-left: 4px solid var(--color-primary); }
.post-sale-card.hot { border-left-color: var(--color-danger); }
.post-sale-card.warm { border-left-color: var(--color-warning); }
.post-sale-card.cool { border-left-color: #1565C0; }
.ps-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.ps-name { font-weight: 700; font-size: 1rem; }
.ps-tag { font-size: 0.7rem; padding: 2px 8px; border-radius: 10px; font-weight: 600; }
.ps-tag.repeat { background: #E8F5E9; color: #2E7D32; }
.ps-tag.upsell { background: #FFF3E0; color: #EF6C00; }
.ps-tag.new { background: #E3F2FD; color: #1565C0; }
.ps-tag.success { background: #F3E5F5; color: #7B1FA2; }
.ps-purchase { font-size: 0.85rem; color: var(--color-text); margin-bottom: 8px; }
.ps-timeline-item { display: flex; gap: 10px; padding: 4px 0; font-size: 0.82rem; }
.ps-timeline-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-primary); margin-top: 6px; flex-shrink: 0; }
.ps-timeline-dot.completed { background: var(--color-success); }
.ps-timeline-dot.pending { background: #ddd; }
.ps-timeline-time { color: #999; width: 55px; flex-shrink: 0; }
.ps-suggestion { background: var(--color-gray); padding: 10px; border-radius: 6px; font-size: 0.85rem; margin-top: 10px; }
.ps-suggestion strong { color: var(--color-primary); }
.ps-actions { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.payments-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 15px; margin-top: 15px; }
.payment-card { background: white; border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-sm); border: 1px solid var(--color-border); }
.payment-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.payment-method { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.9rem; }
.payment-method .pm-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.8rem; font-weight: 700; }
.payment-method .pm-icon.yape { background: var(--color-yape); }
.payment-method .pm-icon.plin { background: var(--color-plin); }
.payment-method .pm-icon.transfer { background: var(--color-transfer); }
.payment-status { font-size: 0.75rem; padding: 3px 10px; border-radius: 20px; font-weight: 600; }
.payment-status.verified { background: #E8F5E9; color: #2E7D32; }
.payment-status.pending { background: #FFF3E0; color: #EF6C00; }
.payment-status.rejected { background: #FDE8E8; color: #C53030; }
.payment-details { font-size: 0.85rem; color: var(--color-text); }
.payment-details .row { display: flex; justify-content: space-between; padding: 3px 0; }
.payment-amount { font-weight: 700; font-size: 1.1rem; color: var(--color-dark); margin-top: 8px; }
.auth-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); backdrop-filter: blur(6px); z-index: 2500; display: none; align-items: center; justify-content: center; }
.auth-overlay.active { display: flex; }
.auth-box { background: white; width: 90%; max-width: 400px; border-radius: 16px; padding: 40px; box-shadow: 0 25px 60px rgba(0,0,0,0.3); text-align: center; }
.auth-box .auth-logo { width: 60px; height: 60px; background: var(--color-primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--color-primary); font-size: 1.5rem; }
.auth-box h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 5px; }
.auth-box .auth-sub { font-size: 0.9rem; color: var(--color-text); margin-bottom: 25px; }
.auth-box .form-group { margin-bottom: 15px; text-align: left; }
.auth-box label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 5px; color: var(--color-text); }
.auth-box .form-control { width: 100%; padding: 12px; border: 1px solid var(--color-border); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.95rem; }
.auth-box .form-control:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(74,93,72,0.1); }
.auth-error { background: #FDE8E8; color: #C53030; padding: 10px; border-radius: var(--radius); font-size: 0.85rem; margin-bottom: 15px; display: none; }
.auth-error.show { display: block; }
.auth-box .btn { width: 100%; margin-top: 10px; }
.auth-box .auth-hint { font-size: 0.78rem; color: #999; margin-top: 15px; }
.detail-card { background: white; padding: 40px; border-radius: var(--radius); max-width: 800px; margin: 0 auto; box-shadow: var(--shadow-md); }
.detail-row { display: flex; margin-bottom: 15px; border-bottom: 1px solid #f0f0f0; padding-bottom: 10px; }
.detail-label { width: 150px; font-weight: 600; color: var(--color-text); }
.detail-value { flex: 1; }
.upload-zone { border: 2px dashed var(--color-border); padding: 50px; text-align: center; border-radius: var(--radius); background: white; transition: all 0.3s; margin: 30px 0; }
.upload-zone:hover { border-color: var(--color-primary); background: var(--color-primary-light); }
.excel-preview { background: white; padding: 20px; border-radius: var(--radius); overflow-x: auto; }
.excel-row { display: flex; border-bottom: 1px solid #eee; }
.excel-cell { padding: 10px; border-right: 1px solid #eee; min-width: 120px; font-size: 0.9rem; }
.excel-header { background: var(--color-primary); color: white; font-weight: 600; }
.excel-header .excel-cell { border-color: rgba(255,255,255,0.2); }
.contact-card { background: white; padding: 40px; border-radius: var(--radius); max-width: 800px; margin: 0 auto; box-shadow: var(--shadow-md); text-align: center; }
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); backdrop-filter: blur(5px); z-index: 2000; display: none; align-items: center; justify-content: center; }
.modal-overlay.active { display: flex; }
.modal-content { background: white; width: 90%; max-width: 600px; border-radius: 15px; overflow: hidden; position: relative; box-shadow: var(--shadow-lg); max-height: 90vh; overflow-y: auto; }
.modal-header { background: var(--color-primary); color: white; padding: 20px; text-align: center; }
.modal-header h3 { font-family: var(--font-heading); font-size: 1.5rem; }
.wizard-step { padding: 30px; display: none; }
.wizard-step.active { display: block; }
.wizard-options { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 20px; }
.wizard-option { border: 2px solid var(--color-border); padding: 20px; border-radius: var(--radius); cursor: pointer; transition: all 0.2s; text-align: center; }
.wizard-option:hover { border-color: var(--color-secondary); }
.wizard-option.selected { border-color: var(--color-primary); background: var(--color-primary-light); }
.wizard-option i { display: block; font-size: 1.5rem; margin-bottom: 10px; color: var(--color-primary); }
.wizard-progress { display: flex; padding: 20px 30px; background: #f9f9f9; border-bottom: 1px solid #eee; }
.progress-step { flex: 1; text-align: center; position: relative; font-size: 0.85rem; color: #999; }
.progress-step::before { content: ''; display: block; width: 10px; height: 10px; border-radius: 50%; background: #ddd; margin: 0 auto 5px; }
.progress-step.active { color: var(--color-primary); font-weight: 600; }
.progress-step.active::before { background: var(--color-primary); }
.progress-step.completed { color: var(--color-accent); }
.progress-step.completed::before { background: var(--color-accent); }
.form-control { width: 100%; padding: 12px; border: 1px solid var(--color-border); border-radius: var(--radius); font-family: var(--font-body); }
.form-control:focus { outline: none; border-color: var(--color-primary); }
.btn-wa { background: #25D366; color: white; }
.payment-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); z-index: 3000; display: none; align-items: center; justify-content: center; }
.payment-modal-overlay.active { display: flex; }
.payment-modal { background: white; width: 90%; max-width: 500px; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.payment-modal-header { padding: 25px; text-align: center; border-bottom: 1px solid var(--color-border); }
.payment-modal-header h3 { font-family: var(--font-heading); font-size: 1.3rem; }
.payment-modal-body { padding: 25px; }
.payment-option { border: 2px solid var(--color-border); border-radius: var(--radius); padding: 18px; margin-bottom: 12px; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; gap: 15px; }
.payment-option:hover { border-color: var(--color-primary); background: var(--color-primary-light); }
.payment-option.selected { border-color: var(--color-primary); background: var(--color-primary-light); }
.payment-option .po-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.payment-option .po-icon.yape { background: var(--color-yape); }
.payment-option .po-icon.plin { background: var(--color-plin); }
.payment-option .po-icon.transfer { background: var(--color-transfer); }
.payment-option .po-info { flex: 1; }
.payment-option .po-name { font-weight: 700; font-size: 1rem; }
.payment-option .po-desc { font-size: 0.82rem; color: var(--color-text); }
.payment-instructions { background: var(--color-gray); padding: 18px; border-radius: var(--radius); margin-top: 15px; font-size: 0.88rem; }
.payment-instructions h5 { margin-bottom: 8px; }
.payment-instructions ol { padding-left: 20px; }
.payment-instructions li { margin-bottom: 5px; }
.payment-instructions .copy-field { display: flex; gap: 8px; margin-top: 8px; }
.payment-instructions .copy-field input { flex: 1; padding: 8px; border: 1px solid var(--color-border); border-radius: 6px; font-family: var(--font-body); font-size: 0.85rem; }
.payment-instructions .copy-field button { padding: 8px 12px; background: var(--color-primary); color: white; border: none; border-radius: 6px; cursor: pointer; font-size: 0.82rem; }
.payment-confirm-btn { width: 100%; margin-top: 15px; }
@media (max-width: 992px) {
    .hero { grid-template-columns: 1fr; text-align: center; padding-top: 40px; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { margin: 0 auto 30px; }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .benefits { grid-template-columns: repeat(2, 1fr); }
    .kpi-grid { grid-template-columns: repeat(2, 1fr); }
    .pm-body { grid-template-columns: 1fr; }
    .pm-gallery { border-right: none; border-bottom: 1px solid var(--color-border); }
    .pm-main-img { height: 300px; }
    .dash-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 80px; left: 0; width: 100%; background: white; flex-direction: column; padding: 20px; gap: 15px; box-shadow: var(--shadow-md); }
    .nav-links.active { display: flex; }
    .menu-toggle { display: block; }
    .nav-cta { display: none; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .wizard-options { grid-template-columns: 1fr; }
    .catalog-toolbar { flex-direction: column; align-items: stretch; }
    .catalog-filters { justify-content: center; }
    .pm-review-summary { flex-direction: column; }
}
