/* ======= ESTILOS ÚNICOS ======= */
.cases-section {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
}

.cases-section h2 {
    color: var(--dark-color);
    font-size: 36px;
    font-weight: 800;
}

.case-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: #ffffff;
    box-shadow:  0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
}

.case-image img {
    width: 100%;
    border-radius: 12px;
}

.cta-footer {
    text-align: center;
    margin-top: 60px;
}

.btn-primary {
    margin-top: auto;
    display: inline-block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 10px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #000;
}