/* ============================================
   PRESTICORP E-COMMERCE – DARK & MODERN THEME
   ============================================ */

:root {
    --font-main: 'Inter', sans-serif;
    --bg-dark: #0A1121;
    --bg-dark-secondary: #0f172a;
    --bg-light: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.03);
    --primary: #00C9A7; /* E-commerce Teal */
    --primary-light: #34d399;
    --primary-dark: #059669;
    --gradient-btn: linear-gradient(135deg, #00C9A7, #0891b2);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-card: rgba(255, 255, 255, 0.08);
    --section-py: 120px;
}

* { box-sizing: border-box; }

body {
    font-family: var(--font-main) !important;
    background-color: var(--bg-dark) !important;
    color: var(--text-primary) !important;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

a { text-decoration: none !important; color: inherit; }
a:hover { color: inherit; }

.dark, .header-area, .footer-section, .mean-container, #meanmenu, .mobile-menu-area { display: none !important; }

.text-accent { color: var(--primary) !important; }

/* Flex Gap Utilities */
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.gap-5 { gap: 3rem !important; }

/* Gutter Utilities for BS4 */
.g-4 { margin-right: -1.5rem; margin-left: -1.5rem; }
.g-4 > [class*="col-"] { padding-right: 1.5rem; padding-left: 1.5rem; }
.g-5 { margin-right: -3rem; margin-left: -3rem; }
.g-5 > [class*="col-"] { padding-right: 3rem; padding-left: 3rem; }

.gy-4 > [class*="col-"] { margin-bottom: 1.5rem !important; }
.gy-5 > [class*="col-"] { margin-bottom: 3rem !important; }

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    background: var(--gradient-btn);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(0, 201, 167, 0.4);
}
.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 201, 167, 0.6);
    color: #fff;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: var(--text-primary);
    transition: all 0.3s ease;
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* NAVBAR */
.lp-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    background: rgba(10, 17, 33, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0.75rem 0;
}
.lp-navbar .navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lp-logo { display: flex; align-items: center; gap: 0.5rem; }
.lp-logo img { height: 45px; width: auto; filter: brightness(0) invert(1); }

.lp-nav-links { display: flex; gap: 2rem; align-items: center; }
.lp-nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}
.lp-nav-links a:hover { color: var(--text-primary); }

.btn-nav-cta {
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    color: #fff !important;
    background: var(--gradient-btn);
    transition: all 0.3s;
    border: none;
}
.btn-nav-cta:hover { transform: translateY(-1px); }

/* HERO */
.lp-hero {
    padding: 160px 0 100px;
    position: relative;
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at 85% 15%, rgba(0, 201, 167, 0.1) 0%, transparent 45%);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff !important;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8) !important;
    max-width: 540px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}
.hero-features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #cbd5e1 !important;
    font-weight: 500;
}
.hero-features-list li i {
    width: 32px; height: 32px;
    background: rgba(0, 201, 167, 0.1);
    color: var(--primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.hero-image-box {
    position: relative;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* LIGHT SECTION (SERVICIOS) */
.lp-light-section {
    background-color: var(--bg-light);
    color: var(--bg-dark);
    padding: var(--section-py) 0;
}
.lp-light-section .section-title { color: var(--bg-dark); }
.lp-light-section .section-desc { color: #475569; }

.service-card-light {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.service-card-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}
.service-icon-box {
    width: 50px; height: 50px;
    background: #f0fdfa;
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* BANNER RECURSO */
.lp-banner-recurso {
    background: #111827; 
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 3rem 4rem;
    margin-top: 60px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

/* CASOS DE ÉXITO */
.lp-casos { padding: var(--section-py) 0; background: #f1f5f9; }
.caso-card-light {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.caso-img-placeholder {
    height: 200px;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.caso-body { padding: 1.5rem; }
.caso-body .cat { font-size: 0.75rem; color: var(--primary); font-weight: 700; text-transform: uppercase; margin-bottom: 0.5rem; }
.caso-body h5 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.caso-body .metric { font-size: 1.1rem; color: var(--primary); font-weight: 800; }

/* CONTACT */
.lp-contact { padding: var(--section-py) 0; background: #f8fafc; }
.form-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.form-control-custom {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 1rem;
}

/* FLOAT WIDGET */
.float-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
}
.btn-float {
    background: var(--primary);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 201, 167, 0.3);
}

@media (max-width: 991px) {
    .lp-banner-recurso { padding: 2rem; text-align: center; justify-content: center; }
    .hero-title { font-size: 2.5rem; }
}

/* Animations & Modals */
.animate-on-scroll { 
    opacity: 0; 
    transform: translateY(20px); 
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); 
}
.animate-on-scroll.visible { 
    opacity: 1; 
    transform: translateY(0); 
}

.modal-overlay {
    position: fixed; 
    inset: 0; 
    background: rgba(10, 17, 33, 0.95); 
    z-index: 10000;
    display: none; 
    align-items: center; 
    justify-content: center;
    backdrop-filter: blur(10px);
}
.modal-overlay.active { display: flex; }

.lp-burger {
    background: none; border: none; padding: 0.5rem;
    display: flex; flex-direction: column; gap: 4px;
}
.lp-burger span { width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; }
