.ddp {
    --ddp-navy: #1A3049;
    --ddp-red: #c31c33;
    --ddp-red-dark: #a3162a;
    --ddp-bg: #f4f5f7;
    font-family: 'Source Sans Pro', sans-serif;
    color: #222;
}


#ddp-productos {
    scroll-margin-top: 110px;
}

.ddp-section-title,
.ddp-card-title {
    font-family: 'Raleway', sans-serif;
}

.ddp * {
    box-sizing: border-box;
}

.ddp-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.ddp-banner {
    display: block;
    line-height: 0;
}

.ddp-banner-link {
    display: block;
}

.ddp-banner-img {
    display: block;
    width: 100%;
    height: auto;
}

.ddp-btn {
    display: inline-block;
    background: var(--ddp-red);
    color: #fff !important;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    padding: 13px 28px;
    border: 0;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s ease;
}

.ddp-btn:hover,
.ddp-btn:focus {
    background: var(--ddp-red-dark);
    color: #fff;
    text-decoration: none;
}

.ddp-btn--sm {
    font-size: 14px;
    padding: 11px 22px;
}

.ddp-sections {
    background: var(--ddp-bg);
    padding: 50px 0 60px;
}

.ddp-section {
    margin-bottom: 30px;
}

.ddp-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--ddp-navy);
    margin: 0 0 18px;
}

.ddp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.ddp-card {
    display: flex;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(26, 48, 73, .08);
    overflow: hidden;
    min-height: 180px;
}

.ddp-card-media {
    flex: 0 0 38%;
    background-size: cover;
    background-position: center;
    min-height: 160px;
}

.ddp-card-body {
    flex: 1;
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ddp-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--ddp-navy);
    margin: 0 0 10px;
}

.ddp-card-text {
    font-size: 15px;
    line-height: 1.45;
    color: #555;
    margin: 0 0 20px;
    flex: 1;
}

@media (max-width: 900px) {
    .ddp-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .ddp-card {
        flex-direction: column;
    }
    .ddp-card-media {
        flex-basis: auto;
        height: 180px;
        width: 100%;
    }
}
