/* =====================================================
   LicitaPrime - Site Comercial Styles
   ===================================================== */

/* ===== Navbar ===== */
.site-navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1050; background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226,232,240,0.5);
    padding: 12px 0;
    transition: all 0.3s ease;
}
.site-navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.site-navbar .navbar-brand {
    font-weight: 800; font-size: 1.4rem; color: #0f172a;
    display: flex; align-items: center; gap: 10px;
}
.site-navbar .navbar-brand .brand-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: linear-gradient(135deg, #1a56db, #3b82f6);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1rem;
}
.site-navbar .nav-link {
    color: #475569; font-weight: 500; font-size: 0.9rem;
    padding: 8px 16px !important;
    transition: all 0.2s;
}
.site-navbar .nav-link:hover { color: #1a56db; }

/* ===== Hero ===== */
.hero-section {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 50%, #f8fafc 100%);
    position: relative; overflow: hidden;
}
.hero-section::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 800px; height: 800px; border-radius: 50%;
    background: radial-gradient(circle, rgba(26,86,219,0.05) 0%, transparent 70%);
}
.hero-title {
    font-weight: 800; font-size: 3.2rem; line-height: 1.15;
    color: #0f172a; margin-bottom: 20px;
}
.hero-title .highlight {
    background: linear-gradient(135deg, #1a56db, #3b82f6);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 1.15rem; color: #64748b; line-height: 1.7;
    margin-bottom: 32px; max-width: 520px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-cta .btn-primary {
    padding: 14px 32px; font-size: 1rem; font-weight: 600;
    border-radius: 12px;
}
.hero-cta .btn-outline-secondary {
    padding: 14px 32px; font-size: 1rem; font-weight: 600;
    border-radius: 12px;
}
.hero-stats {
    display: flex; gap: 40px; margin-top: 48px;
}
.hero-stats .stat { text-align: center; }
.hero-stats .stat-number { font-size: 2rem; font-weight: 800; color: #1a56db; }
.hero-stats .stat-text { font-size: 0.8rem; color: #64748b; }

/* ===== Features ===== */
.features-section { padding: 100px 0; }
.feature-card {
    background: #fff; border: 1px solid #e2e8f0;
    border-radius: 16px; padding: 32px;
    transition: all 0.3s ease; height: 100%;
}
.feature-card:hover {
    border-color: #1a56db; box-shadow: 0 20px 40px rgba(26,86,219,0.1);
    transform: translateY(-4px);
}
.feature-icon {
    width: 56px; height: 56px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 20px;
}

/* ===== Security Section ===== */
.security-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
}
.security-feature {
    display: flex; gap: 16px; margin-bottom: 24px;
}
.security-feature .icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(26,86,219,0.2);
    display: flex; align-items: center; justify-content: center;
    color: #60a5fa; font-size: 1.2rem; flex-shrink: 0;
}

/* ===== Pricing ===== */
.pricing-section { padding: 100px 0; background: #f8fafc; }
.pricing-card {
    background: #fff; border: 2px solid #e2e8f0;
    border-radius: 20px; padding: 40px 32px;
    transition: all 0.3s ease; height: 100%;
    position: relative;
}
.pricing-card.featured {
    border-color: #1a56db;
    box-shadow: 0 20px 60px rgba(26,86,219,0.15);
    transform: scale(1.02);
}
.pricing-card .price {
    font-size: 3rem; font-weight: 800; color: #0f172a;
}
.pricing-card .price small { font-size: 1rem; font-weight: 400; color: #64748b; }
.pricing-card .badge-popular {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, #1a56db, #3b82f6);
    color: #fff; padding: 4px 20px; border-radius: 20px;
    font-size: 0.75rem; font-weight: 600;
}
.pricing-features { list-style: none; padding: 0; }
.pricing-features li {
    padding: 8px 0; font-size: 0.9rem; color: #475569;
    display: flex; align-items: center; gap: 10px;
}
.pricing-features li i { color: #059669; }

/* ===== CTA ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a56db 0%, #3b82f6 100%);
    color: #fff; text-align: center;
}

/* ===== Footer ===== */
.site-footer {
    background: #0f172a; color: #94a3b8;
    padding: 60px 0 30px;
}
.site-footer h6 { color: #fff; font-weight: 700; margin-bottom: 16px; }
.site-footer a { color: #94a3b8; transition: all 0.2s; font-size: 0.85rem; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px; margin-top: 40px;
    font-size: 0.8rem;
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
    .hero-title { font-size: 2.2rem; }
    .hero-stats { gap: 24px; }
}
@media (max-width: 575.98px) {
    .hero-section { padding: 120px 0 60px; }
    .hero-title { font-size: 1.8rem; }
    .hero-cta .btn { width: 100%; }
    .pricing-card.featured { transform: none; }
}
