/* ============================================
   CATALOGOS PAGE — SPECIFIC STYLES
   ============================================ */

/* Tags */
.catalog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    width: 100%;
}

.tag {
    background: var(--accent-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--round-radius);
    font-size: 0.7rem;
    font-family: 'Sen', sans-serif;
    font-weight: 600;
}

/* Catalog Grid */
.catalogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

/* Catalog Card */
.catalog-card {
    background: var(--white);
    border-radius: var(--round-radius);
    box-shadow: 0 12px 40px rgba(33, 53, 75, 0.08);
    border: 1px solid rgba(56, 65, 73, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: auto;
    max-width: 500px;
}

.catalog-media {
    height: 220px;
    background: var(--base-dark);
}

.catalog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 220px;
}

.catalog-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.catalog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.catalog-logo {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(33, 53, 75, 0.12);
}

.catalog-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.catalog-tag {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--base-darker);
    background: rgba(94, 229, 153, 0.2);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-family: 'Sen', sans-serif;
}

.catalog-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.catalog-buttons {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.catalog-buttons .btn {
    padding: 0.85rem 1.8rem;
    font-size: 0.95rem;
    width: 100%;
}

/* Catalog Feature List */
.catalog-feature-list {
    display: grid;
    gap: 2.5rem;
}

.catalog-feature {
    background: var(--white);
    border-radius: var(--round-radius);
    padding: 2rem;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 1.4fr;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 12px 40px rgba(33, 53, 75, 0.08);
    border: 1px solid rgba(56, 65, 73, 0.08);
}

.catalog-feature.reverse {
    grid-template-columns: 1.4fr minmax(260px, 1fr);
}

.catalog-feature.reverse .catalog-feature-media {
    order: 2;
}

.catalog-feature-media {
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
}

.catalog-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-feature-content h3 {
    margin-bottom: 0.75rem;
    color: var(--base-darker);
}

.catalog-feature-content p {
    color: var(--base-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Catalog CTA Grid */
.catalog-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.catalog-cta-card {
    background: var(--white);
    border-radius: var(--round-radius);
    padding: 2.5rem;
    box-shadow: 0 12px 40px rgba(33, 53, 75, 0.08);
    border: 1px solid rgba(56, 65, 73, 0.08);
}

.catalog-cta-card h3 {
    margin-bottom: 1rem;
    color: var(--base-darker);
}

.catalog-cta-card p {
    color: var(--base-dark);
    line-height: 1.7;
}

.catalog-cta-card a {
    color: var(--base-darker);
    font-weight: 700;
    text-decoration: none;
}

.catalog-cta-card a:hover {
    color: var(--accent-green);
}

.catalog-cta-card.alt {
    background: var(--gradient-dark);
    color: var(--white);
    border: none;
}

.catalog-cta-card.alt h3,
.catalog-cta-card.alt p {
    color: var(--white);
}

.catalog-cta-card.alt a {
    color: var(--accent-yellow);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .catalog-feature {
        grid-template-columns: 1fr;
    }

    .catalog-feature.reverse {
        grid-template-columns: 1fr;
    }

    .catalog-feature.reverse .catalog-feature-media {
        order: 0;
    }
}
