/**
 * Landing Page Premium - Corporate Blue Elegance
 * Estilos específicos para a landing page profissional
 */

/* ============================================
   NAVBAR PREMIUM
   ============================================ */
.navbar-premium {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px -5px rgba(37, 99, 235, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-premium .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #64748B;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-premium .nav-link:hover {
    color: #2563EB;
}

.navbar-premium .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: linear-gradient(90deg, #2563EB, #1E40AF);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-premium .nav-link:hover::after {
    transform: scaleX(1);
}

/* ============================================
   HERO SECTION PREMIUM
   ============================================ */
.hero-section-premium {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F3F6F9 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border: 1px solid #93C5FD;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.badge-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1E40AF;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.2;
    color: #1E293B;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #64748B;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.hero-stat-item {
    text-align: left;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #2563EB;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748B;
    font-weight: 500;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.4);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.5);
    color: white;
    text-decoration: none;
}

.btn-hero-outline {
    background: transparent;
    color: #2563EB;
    border: 2px solid #2563EB;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-outline:hover {
    background: #2563EB;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    text-decoration: none;
}

.hero-trust {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #E2E8F0;
}

.trust-label {
    font-size: 0.875rem;
    color: #94A3B8;
    margin-bottom: 0.75rem;
    display: block;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
}

.hero-visual {
    position: relative;
}

.hero-icon-wrapper {
    position: relative;
    display: inline-block;
}

.hero-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-icon {
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-features-preview {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-preview-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    box-shadow: 0 2px 8px -2px rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.feature-preview-card:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 12px -2px rgba(37, 99, 235, 0.15);
    border-color: #2563EB;
}

.feature-preview-card i {
    font-size: 1.5rem;
    color: #2563EB;
}

.feature-preview-card span {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #1E293B;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border: 1px solid #93C5FD;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1E40AF;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #1E293B;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   COMPATIBILITY CARDS PREMIUM
   ============================================ */
.compatibility-section {
    background: #F3F6F9;
}

.compatibility-card-premium {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px -2px rgba(37, 99, 235, 0.08);
}

.compatibility-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px -4px rgba(37, 99, 235, 0.15);
    border-color: #2563EB;
}

.compatibility-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.compatibility-card-premium:hover .compatibility-icon-wrapper {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    transform: scale(1.1) rotate(5deg);
}

.compatibility-icon-wrapper i {
    font-size: 2.5rem;
    color: #2563EB;
    transition: all 0.3s ease;
}

.compatibility-card-premium:hover .compatibility-icon-wrapper i {
    color: white;
}

.compatibility-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #1E293B;
    margin-bottom: 0.75rem;
}

.compatibility-description {
    font-size: 0.9375rem;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   FEATURE CARDS PREMIUM
   ============================================ */
.features-section-premium {
    background: white;
}

.feature-card-premium {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px -2px rgba(37, 99, 235, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563EB 0%, #1E40AF 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card-premium:hover::before {
    transform: scaleX(1);
}

.feature-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px -4px rgba(37, 99, 235, 0.2);
    border-color: #2563EB;
}

.feature-icon-premium {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card-premium:hover .feature-icon-premium {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    transform: scale(1.1) rotate(-5deg);
}

.feature-icon-premium svg {
    transition: all 0.3s ease;
}

.feature-card-premium:hover .feature-icon-premium svg path {
    stroke: white;
}

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1E293B;
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1rem;
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 700;
}

/* ============================================
   CTA SECTION PREMIUM
   ============================================ */
.cta-section-premium {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    position: relative;
    overflow: hidden;
}

.cta-section-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-card-premium {
    background: white;
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px -10px rgba(37, 99, 235, 0.3);
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #1E293B;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    color: #64748B;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.cta-decoration-circle {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

/* ============================================
   FOOTER PREMIUM
   ============================================ */
.footer-premium {
    background: #1E293B;
    color: #94A3B8;
    padding: 4rem 0 2rem;
}

.footer-brand h5 {
    color: white;
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #2563EB;
    padding-left: 0.25rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #334155;
    margin-top: 2rem;
}

.footer-copyright {
    color: #64748B;
    font-size: 0.875rem;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #334155;
    border-radius: 10px;
    color: #94A3B8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2563EB;
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-card-premium {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

