/* ULTIMATE PROFESSIONAL CSS - ENTERPRISE TRANSFORMATION */

/* ===== COMPLETE OVERRIDE - PROFESSIONAL LAYOUT ===== */

/* HERO SECTION - ENTERPRISE STYLE */
.hero-section {
    background: linear-gradient(135deg, 
        #1a202c 0%, 
        #2d3748 25%, 
        #1a365d 50%, 
        #2c5282 75%, 
        #3182ce 100%) !important;
    min-height: 100vh !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(120, 200, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 120, 200, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(120, 255, 200, 0.1) 0%, transparent 50%);
    z-index: 1;
}

/* Ocultar gradiente animado original */
.animated-gradient {
    display: none !important;
    opacity: 0 !important;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero/professional-bg.svg') center center/cover no-repeat;
    z-index: 2;
    opacity: 0.6;
}

.hero-content {
    position: relative !important;
    z-index: 3 !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 6rem 2rem !important;
    text-align: center !important;
}

.hero-title {
    font-size: clamp(4rem, 8vw, 7rem) !important;
    font-weight: 900 !important;
    line-height: 0.9 !important;
    margin-bottom: 2rem !important;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #cbd5e1 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    letter-spacing: -0.03em !important;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3) !important;
}

.hero-subtitle {
    font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
    font-weight: 600 !important;
    color: #e2e8f0 !important;
    margin-bottom: 2rem !important;
    letter-spacing: -0.01em !important;
}

.hero-description {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem) !important;
    color: #cbd5e1 !important;
    max-width: 700px !important;
    margin: 0 auto 3rem !important;
    line-height: 1.6 !important;
}

.hero-stats {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
    gap: 2rem !important;
    margin: 4rem auto !important;
    max-width: 900px !important;
}

.stat-item {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 20px !important;
    padding: 2rem 1.5rem !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
}

.stat-item:hover {
    transform: translateY(-5px) !important;
    background: rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
}

.stat-number {
    font-size: clamp(3rem, 5vw, 4rem) !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    display: block !important;
    line-height: 1 !important;
    margin-bottom: 0.5rem !important;
}

.stat-label {
    font-size: 1rem !important;
    color: #e2e8f0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    font-weight: 600 !important;
}

.hero-actions {
    display: flex !important;
    justify-content: center !important;
    gap: 2rem !important;
    flex-wrap: wrap !important;
    margin-top: 3rem !important;
}

/* PROFESSIONAL BUTTONS */
.btn-primary, .btn-secondary {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 1.2rem 2.5rem !important;
    border-radius: 15px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    border: none !important;
    cursor: pointer !important;
    letter-spacing: -0.01em !important;
    position: relative !important;
    overflow: hidden !important;
}

.btn-primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 50%, #6366f1 100%) !important;
    color: white !important;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4) !important;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.6) !important;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(20px) !important;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1) !important;
}

/* SERVICES SECTION - PROFESSIONAL LAYOUT */
.services-section {
    padding: 6rem 0 !important;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
    position: relative !important;
}

.section-header {
    text-align: center !important;
    margin-bottom: 5rem !important;
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 2rem !important;
}

.section-title {
    font-size: clamp(3rem, 6vw, 4.5rem) !important;
    font-weight: 900 !important;
    color: #1e293b !important;
    margin-bottom: 1.5rem !important;
    letter-spacing: -0.03em !important;
    position: relative !important;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: linear-gradient(135deg, #0ea5e9, #3b82f6, #6366f1);
    border-radius: 3px;
}

.section-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem) !important;
    color: #64748b !important;
    line-height: 1.6 !important;
    font-weight: 500 !important;
}

.services-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)) !important;
    gap: 3rem !important;
    max-width: 1300px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

.service-card {
    background: white !important;
    border-radius: 25px !important;
    padding: 3.5rem 3rem !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08) !important;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    position: relative !important;
    overflow: hidden !important;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #0ea5e9, #3b82f6, #6366f1);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 25px 50px rgba(14, 165, 233, 0.15) !important;
}

.service-icon {
    width: 90px !important;
    height: 90px !important;
    background: linear-gradient(135deg, #0ea5e9, #3b82f6, #6366f1) !important;
    border-radius: 25px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 2.5rem !important;
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.service-icon i {
    font-size: 2.5rem !important;
    color: white !important;
    z-index: 2 !important;
    position: relative !important;
}

.service-title {
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    margin-bottom: 1.5rem !important;
    letter-spacing: -0.02em !important;
}

.service-description {
    font-size: 1.1rem !important;
    color: #64748b !important;
    line-height: 1.7 !important;
    margin-bottom: 2rem !important;
}

.service-features {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    margin-bottom: 2.5rem !important;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(99, 102, 241, 0.1)) !important;
    color: #3b82f6 !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 30px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    border: 2px solid rgba(14, 165, 233, 0.2) !important;
    transition: all 0.3s ease !important;
}

.feature-tag:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(99, 102, 241, 0.2)) !important;
    transform: translateY(-2px) !important;
}

.service-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    color: #3b82f6 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
}

.service-link:hover {
    color: #1e40af !important;
    transform: translateX(8px) !important;
}

/* EXPERTISE SECTION */
.expertise-section {
    padding: 6rem 0 !important;
    background: white !important;
}

.expertise-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2.5rem !important;
    max-width: 1300px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

.expertise-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%) !important;
    border-radius: 20px !important;
    padding: 2.5rem 2rem !important;
    text-align: center !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.06) !important;
    transition: all 0.4s ease !important;
    position: relative !important;
}

.expertise-item:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.12) !important;
}

.expertise-icon {
    font-size: 3rem !important;
    margin-bottom: 1.5rem !important;
    display: block !important;
}

.expertise-item h3 {
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    margin-bottom: 1rem !important;
}

.expertise-item p {
    color: #64748b !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    font-weight: 500 !important;
}

/* TECHNOLOGIES SECTION */
.technologies-section {
    padding: 6rem 0 !important;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    .hero-actions {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    .service-card {
        padding: 2.5rem 2rem !important;
    }
    
    .hero-content {
        padding: 4rem 1.5rem !important;
    }
}

/* ANIMATION IMPROVEMENTS */
.hero-title .title-line {
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease-out forwards;
}

.hero-title .title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-subtitle {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.hero-description {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.hero-stats {
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.hero-actions {
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
