/* ===== SECCIONES PRINCIPALES ===== */
.hero {
    background: radial-gradient(circle at 50% 0%, #f5f5f7 0%, #ffffff 70%);
    background-color: var(--white);
    padding: 70px 7%;
}

.hero-label {
    display: inline-block;
    background: #e1f0ff;
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-content {
    text-align: center;
    margin: 0 auto;
}

.hero-content h1 {
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.hero-content .section-intro {
    margin-bottom: 0;
}
.projects-section {
    background-color: var(--white);
    padding: 0 7% 80px;
}

.container {
    margin: 0 auto;
}

.project-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.project-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.project-card h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary);
    line-height: 1.3;
}

.project-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 24px;
}

.project-meta {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--bg-light);
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.5;
}

.project-meta strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.future-projects {
    background-color: var(--bg-light);
    padding: 70px 7%;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.future-projects .section-intro {
    margin-bottom: 32px;
}

/* --- UTILIDADES --- */
.text-center {
    text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero {
        padding: 50px 24px;
    }

    .projects-section {
        padding: 0 24px 60px;
    }

    .project-card {
        padding: 24px;
    }
}