
/* Project Management Services Styles */
.project-management-container {
    min-height: 100vh;
}

/* Hero Section */
.project-management-container .hero-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.project-management-container .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-badge i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
}
.project-management-container .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--azulps);
    margin-bottom: 1rem;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 0;
}

/* Service Management Card */
.service-management-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid;
    position: relative;
    overflow: hidden;
}

.service-management-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 100%);
    border-radius: 0 0 0 100px;
}

.service-management-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-primary { border-top-color: #3b82f6; }
.card-success { border-top-color: #10b981; }
.card-warning { border-top-color: #f59e0b; }
.card-info { border-top-color: #06b6d4; }
.card-secondary { border-top-color: #6b7280; }
.card-danger { border-top-color: #ef4444; }
.card-dark { border-top-color: #374151; }

.card-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.card-primary .card-icon { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.card-success .card-icon { background: linear-gradient(135deg, #10b981, #059669); }
.card-warning .card-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }
.card-info .card-icon { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.card-secondary .card-icon { background: linear-gradient(135deg, #6b7280, #4b5563); }
.card-danger .card-icon { background: linear-gradient(135deg, #ef4444, #dc2626); }
.card-dark .card-icon { background: linear-gradient(135deg, #374151, #1f2937); }

.card-title-section {
    flex: 1;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.card-subtitle {
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
    margin: 0;
}

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

.services-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-left: 0;
}

.services-list i {
    color: #10b981;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.services-list span {
    color: #4a5568;
    line-height: 1.5;
}

.card-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

/* Key Differentiators Section */
.key-differentiators-section {
    padding: 1rem 0;
    background: linear-gradient(135deg, #11191F 20%, #072946 100%);
    color: white;
}
.key-differentiators-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fafafa;
    margin-bottom: 1rem;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.differentiator-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.differentiator-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.differentiator-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.differentiator-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.differentiator-card p {
    opacity: 0.9;
    line-height: 1.5;
}

.cta-section {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

/* Buttons */
.btn {
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.btn-outline-primary {
    background: transparent;
    color: #3b82f6;
    border-color: #3b82f6;
}

.btn-outline-success {
    background: transparent;
    color: #10b981;
    border-color: #10b981;
}

.btn-outline-warning {
    background: transparent;
    color: #f59e0b;
    border-color: #f59e0b;
}

.btn-outline-info {
    background: transparent;
    color: #06b6d4;
    border-color: #06b6d4;
}

.btn-outline-secondary {
    background: transparent;
    color: #6b7280;
    border-color: #6b7280;
}

.btn-outline-danger {
    background: transparent;
    color: #ef4444;
    border-color: #ef4444;
}

.btn-outline-dark {
    background: transparent;
    color: #374151;
    border-color: #374151;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .differentiators-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .card-header {
        flex-direction: column;
        text-align: center;
    }

    .card-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 3rem 0;
    }

    .services-section {
        padding: 3rem 0;
    }

    .key-differentiators-section {
        padding: 3rem 0;
    }

    .service-management-card {
        padding: 1.5rem;
    }
}
