/* ============================================
   PRESTICORP SOLUCIONES EMPRESARIALES – DARK THEME
   ============================================ */

:root {
    --font-main: 'Inter', sans-serif;
    --bg-dark: #0A1121;
    --bg-dark-secondary: #0f172a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --primary: #ea580c;
    --primary-light: #f97316;
    --primary-dark: #c2410c;
    --gradient-btn: linear-gradient(135deg, #f97316, #ea580c);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-card: rgba(255, 255, 255, 0.08);
    --section-py: 120px;
    --section-gap: 4rem;
}

* { 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-light) !important; }

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-light);
    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;
}

/* Flex Gap Utilities (since BS4 doesn't have them) */
.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 (Workaround) */
.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; }

.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(234, 88, 12, 0.4);
}
.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 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-light);
    color: var(--primary-light);
}

/* 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); }

/* DROPDOWN */
.lp-nav-dropdown { position: relative; display: inline-block; }
.lp-nav-dropdown .lp-nav-trigger {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}
.lp-nav-dropdown .lp-nav-trigger:hover { color: var(--text-primary); }
.lp-nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    padding: 0.5rem 0;
    min-width: 180px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    z-index: 10001;
    display: none;
}
.lp-nav-dropdown:hover .dropdown-menu { display: block; }
.lp-nav-dropdown::before { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 0.5rem; }
.lp-nav-dropdown .dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}
.lp-nav-dropdown .dropdown-menu a:hover { color: #fff; background: rgba(255,255,255,0.05); }

/* BURGER & MOBILE MENU - hidden on desktop */
.lp-nav-right { display: flex; align-items: center; gap: 0.25rem; }
.lp-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 5px;
}
.lp-burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}
.lp-burger:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.lp-burger:focus { outline: none; }

.lp-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0.4s;
}
.lp-mobile-menu.active {
    pointer-events: auto;
    visibility: visible;
}
.lp-mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.lp-mobile-menu.active .lp-mobile-menu-backdrop {
    opacity: 1;
}
.lp-mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: linear-gradient(180deg, #0f172a 0%, #0a1121 100%);
    border-left: 1px solid rgba(255,255,255,0.08);
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.lp-mobile-menu.active .lp-mobile-menu-panel {
    transform: translateX(0);
}
.lp-mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lp-mobile-menu-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}
.lp-burger-close {
    background: transparent;
    border-color: rgba(255,255,255,0.15);
}
.lp-burger-close span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-burger-close span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.lp-burger-close span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.lp-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.lp-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lp-mobile-menu-nav {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.lp-mobile-menu-nav a {
    display: block;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 10px;
    transition: all 0.25s ease;
}
.lp-mobile-menu-nav a:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.06);
    padding-left: 1.25rem;
}
.lp-mobile-cta {
    margin-top: 1rem;
    background: var(--gradient-btn) !important;
    color: #fff !important;
    text-align: center;
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.3);
}
.lp-mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4) !important;
}

.lp-mobile-dropdown { margin-bottom: 0.25rem; }
.lp-mobile-dropdown-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: all 0.25s ease;
}
.lp-mobile-dropdown-trigger::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}
.lp-mobile-dropdown.open .lp-mobile-dropdown-trigger::after {
    transform: rotate(-135deg);
}
.lp-mobile-dropdown-trigger:hover { color: var(--text-primary); background: rgba(255,255,255,0.06); }
.lp-mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.lp-mobile-dropdown.open .lp-mobile-dropdown-content {
    max-height: 220px;
}
.lp-mobile-dropdown-content a {
    padding: 0.75rem 1rem 0.75rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 8px;
}

@media (min-width: 768px) {
    .lp-nav-right, .lp-mobile-menu { display: none !important; }
}

/* HERO */
.lp-hero {
    padding: 160px 0 100px;
    position: relative;
    background-color: var(--bg-dark);
    overflow: hidden;
    background-image: radial-gradient(circle at 85% 15%, rgba(234, 88, 12, 0.12) 0%, transparent 45%),
                      radial-gradient(circle at 15% 85%, rgba(15, 23, 42, 0.9) 0%, transparent 50%);
}
.lp-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.02"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.6;
    pointer-events: none;
}
.lp-hero > .container { position: relative; z-index: 1; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: rgba(234, 88, 12, 0.15);
    border: 1px solid rgba(234, 88, 12, 0.35);
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}
.hero-badge span { width: 6px; height: 6px; background: var(--primary-light); border-radius: 50%; }

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
}
.hero-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    font-size: 1rem;
    color: #e2e8f0;
}
.hero-features li i {
    width: 36px; height: 36px;
    background: rgba(234, 88, 12, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    flex-shrink: 0;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.hero-trust-item i { color: var(--primary-light); }

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.hero-logo-large {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}
.hero-logo-large:hover {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .lp-hero .col-lg-6:last-child {
        order: -1;
        margin-bottom: 2rem;
    }
    .hero-logo-large {
        max-width: 250px;
    }
}

/* STATS BAR */
.lp-stats-bar {
    background: var(--bg-dark-secondary);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stat-item { text-align: center; }
.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-light);
    display: block;
    line-height: 1.2;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* CAPACIDADES */
.lp-capacidades { padding: var(--section-py) 0; }
.cap-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}
.cap-card:hover {
    border-color: rgba(234, 88, 12, 0.4);
    transform: translateY(-3px);
}
.cap-icon {
    width: 48px; height: 48px;
    background: rgba(234, 88, 12, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}
.cap-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}
.cap-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* BANNER RECURSO */
.lp-banner-recurso {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 3rem 4rem;
    margin-top: 60px;
    margin-bottom: var(--section-py);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.br-icon {
    width: 48px; height: 48px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}
.br-text h3 { color: #fff; font-size: 1.4rem; font-weight: 700; margin: 0 0 0.25rem 0; }
.br-text p { color: var(--text-secondary); margin: 0; font-size: 0.9rem; }

/* CASOS DE ÉXITO */
.lp-casos { padding: var(--section-py) 0; }
.caso-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s;
}
.caso-card:hover {
    border-color: rgba(234, 88, 12, 0.3);
    transform: translateY(-3px);
}
.caso-cat {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}
.caso-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}
.caso-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
}
.caso-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.caso-tag {
    padding: 0.3rem 0.7rem;
    background: rgba(234, 88, 12, 0.15);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-light);
}
.caso-metric {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-light);
}

/* PRECIOS */
.lp-precios {
    padding: var(--section-py) 0;
    background: var(--bg-dark-secondary);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.lp-precios .cap-card { text-align: center; }
.lp-precios .cap-icon { margin: 0 auto 1rem; }
.lp-precios .section-desc.mx-auto { max-width: 600px; }
.precios-cta { color: var(--text-secondary); font-size: 0.95rem; }
.precios-cta a { color: var(--primary-light); }

/* FORMULARIO AUDITORÍA */
.lp-auditoria {
    padding: var(--section-py) 0;
    background: var(--bg-dark-secondary);
}
.audit-left h3 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 1rem; }
.audit-left p { color: var(--text-secondary); margin-bottom: 1.5rem; line-height: 1.6; }
.audit-benefit {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.audit-benefit i {
    width: 40px; height: 40px;
    background: rgba(234, 88, 12, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    flex-shrink: 0;
}
.audit-benefit h5 { color: #fff; font-size: 1rem; font-weight: 700; margin: 0 0 0.25rem 0; }
.audit-benefit p { margin: 0; font-size: 0.9rem; }

.form-box-dark {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 2.5rem;
}
.form-label-dark {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}
.form-input-dark {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 0.95rem;
    background: rgba(10, 17, 33, 0.6);
    color: #fff;
    margin-bottom: 1rem;
    font-family: var(--font-main);
}
.form-input-dark::placeholder { color: var(--text-muted); }
.form-input-dark:focus {
    outline: none;
    border-color: var(--primary-light);
}

.form-footer-note { font-size: 0.85rem; color: var(--text-muted); }

/* CTA FINAL */
.lp-cta-final {
    padding: 4rem 0;
    text-align: center;
}
.lp-cta-final h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
}
.lp-cta-final p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* FOOTER */
.lp-footer {
    background: var(--bg-dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-wrap { display: inline-block; }
.footer-logo-wrap img,
.footer-logo img { height: 50px; filter: brightness(0) invert(1); margin-bottom: 1rem; display: block; }
.footer-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1.5rem; max-width: 280px; }
.footer-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: var(--text-secondary); transition: color 0.2s; }
.footer-links a:hover { color: var(--primary-light); }
.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.85rem;
    color: var(--text-muted);
}
.footer-contact-item { color: var(--text-secondary); font-size: 0.9rem; }
.footer-bottom-links { color: var(--text-muted); margin: 0 8px; }

/* FLOAT WIDGET */
.float-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9998;
}
.float-widget .btn-close-widget {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 24px; height: 24px;
    background: var(--bg-dark);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MODALES */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,17,33,0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-form-box {
    max-width: 450px;
    margin: 20px;
    position: relative;
}
.modal-form-box .modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
}
.modal-success-box { max-width: 400px; margin: 20px; text-align: center; }
.modal-success-box .success-icon { font-size: 3rem; color: #22c55e; display: block; }
.modal-form-box .text-secondary { font-size: 0.95rem; }

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== MOBILE ========== */
@media (max-width: 767px) {
    body { padding-bottom: 5rem; }
    .lp-navbar { padding: 0.5rem 0; }
    .lp-nav-right { display: flex !important; align-items: center; gap: 0.5rem; }
    .lp-navbar .container { padding-left: 0.75rem; padding-right: 0.75rem; }
    .lp-navbar .navbar-inner { gap: 0.5rem; }
    .lp-logo { flex-shrink: 1; min-width: 0; }
    .lp-logo img { height: 28px; max-width: 100px; width: auto; object-fit: contain; }
    .lp-navbar .btn-nav-cta { padding: 0.4rem 0.75rem; font-size: 0.8rem; flex-shrink: 0; }
    .lp-hero { padding: 90px 0 50px; }
    .lp-hero .container { padding-left: 1rem; padding-right: 1rem; }
    .lp-hero .hero-img { max-height: 180px; width: auto; object-fit: contain; margin: 0 auto; display: block; }
    .hero-badge { font-size: 0.65rem; padding: 0.25rem 0.6rem; }
    .hero-title { font-size: 1.5rem; line-height: 1.25; margin-bottom: 0.75rem; }
    .hero-subtitle { font-size: 0.9rem; margin-bottom: 1.25rem; }
    .hero-features li { font-size: 0.9rem; gap: 0.5rem; }
    .hero-features li i { width: 28px; height: 28px; font-size: 0.9rem; }
    .section-title { font-size: 1.4rem; }
    .section-desc { font-size: 0.9rem; }
    .lp-footer { padding: 2.5rem 0 5rem; }
    .lp-footer .container { padding-left: 1rem; padding-right: 1rem; }
    .lp-footer .footer-brand-row {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.25rem;
    }
    .lp-footer .footer-logo-wrap { flex-shrink: 0; }
    .lp-footer .footer-logo-wrap img,
    .lp-footer .footer-logo img {
        height: 40px;
        max-width: 56px;
        width: auto;
        margin-bottom: 0;
        object-fit: contain;
    }
    .lp-footer .footer-desc {
        font-size: 0.8rem;
        margin-bottom: 0;
        max-width: none;
        line-height: 1.5;
        flex: 1;
        min-width: 0;
    }
    .lp-footer .footer-title { font-size: 0.7rem; margin-bottom: 0.6rem; }
    .lp-footer .col-lg-2 .footer-title { margin-top: 1rem; }
    .lp-footer .footer-links li { margin-bottom: 0.4rem; }
    .lp-footer .footer-links a { font-size: 0.85rem; }
    .lp-footer .footer-contact-item { font-size: 0.8rem; }
    .lp-footer .footer-bottom { margin-top: 1.5rem; padding-top: 1rem; font-size: 0.75rem; }
    .lp-footer .row > div { margin-bottom: 1.25rem !important; text-align: center; }
    .lp-footer .footer-brand-row { justify-content: center; }
    .lp-footer .footer-links { padding-left: 0; }
    .float-widget { bottom: 1rem; right: 1rem; }
    .float-widget .btn-glow { padding: 0.5rem 0.75rem; font-size: 0.8rem; }
    .lp-banner-recurso { padding: 1.25rem 1rem; flex-direction: column; text-align: center; }
    .lp-cta-final { padding: 2.5rem 0; }
    .lp-cta-final h2 { font-size: 1.5rem; }
}
