/* CEPSA Motos — Mismo design system */

:root {
    --cpm-red: #cf2e2e;
    --cpm-red-hover: #b82828;
    --cpm-red-light: rgba(207,46,46,0.06);
    --cpm-dark: #1A1A2E;
    --cpm-bg: #FFFFFF;
    --cpm-border: #E0E0E0;
    --cpm-border-light: #EEEEEE;
    --cpm-muted: #999;
}

.cpm {
    background: var(--cpm-bg);
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    font-family: 'Metropolis', system-ui, -apple-system, sans-serif;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    max-width: 1200px;
    margin: 0 auto 30px;
}

.cpm-header {
    padding: 16px 24px;
    border-bottom: 3px solid var(--cpm-red);
    background: var(--cpm-bg);
}

.cpm-title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--cpm-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.cpm-content { padding: 24px; }

/* Sections */
.cpm-section { margin-bottom: 28px; }
.cpm-section:last-child { margin-bottom: 0; }

.cpm-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--cpm-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--cpm-red);
}

/* Grid */
.cpm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.cpm-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    border: 1.5px solid var(--cpm-border-light);
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
    background: #fff;
    min-height: 80px;
}

.cpm-card:hover {
    border-color: var(--cpm-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.cpm-card-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}

.cpm-card h4 {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--cpm-dark);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.cpm-card-link {
    font-size: 11px;
    font-weight: 700;
    color: var(--cpm-red);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.cpm-empty {
    text-align: center;
    color: var(--cpm-muted);
    font-size: 14px;
    padding: 30px;
    background: var(--cpm-red-light);
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .cpm-content { padding: 16px; }
    .cpm-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .cpm-card-img { width: 100px; height: 100px; }
    .cpm-section-title { font-size: 14px; }
}

@media (max-width: 480px) {
    .cpm-grid { grid-template-columns: 1fr; }
    .cpm-card { padding: 14px; }
    .cpm-card-img { width: 80px; height: 80px; }
    .cpm-card h4 { font-size: 11px; }
}
