.hero-project {
    padding: 12rem 1.5rem 4rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(37, 99, 235, 0.1), transparent);
}

.hero-project h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin: 1rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-info {
    padding: 1.5rem;
}

.stat-info h3 {
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.project-description {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 2rem;
}

.desc-text {
    flex: 1;
    min-width: 300px;
}

.check-list {
    margin-top: 1.5rem;
}

.check-list li {
    margin-bottom: 0.8rem;
    color: #9ca3af;
}

.check-list i {
    color: #2dd4bf;
    margin-right: 10px;
}

.container {
    max-width: 1200px; /* O el ancho que prefieras */
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .project-description {
        padding: 2rem;
        text-align: center;
    }
    .check-list {
        text-align: left;
    }
}