/* FC DME SEO — estilos das páginas individuais e do hub
   Paleta espelha o resto do chamacoins.com.br: fundo escuro, cards com
   borda sutil arredondada, acento laranja (mesmo tom do botão "Finalizar"
   da página de compra de coins). */

.dme-seo-single,
.dme-seo-hub {
    max-width: 900px;
    margin: 0 auto;
    padding: 28px 16px 60px;
    color: #f5f5f5;
    box-sizing: border-box;
}

.dme-seo-hub {
    max-width: 1100px;
}

.dme-seo-breadcrumb {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 16px;
}

.dme-seo-breadcrumb a {
    color: #9ca3af;
    text-decoration: underline;
}

.dme-seo-title {
    margin: 0 0 20px;
    font-size: 26px;
    line-height: 1.3;
    color: #ffffff;
}

.dme-seo-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.dme-seo-hero-img {
    max-width: 240px;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.dme-seo-hero-card {
    flex: 0 0 auto;
    margin: 0 auto;
}

.dme-seo-hero-info {
    flex: 1 1 240px;
    min-width: 0;
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 18px 20px;
}

.dme-seo-hero-info p {
    margin: 0 0 12px;
}

.dme-seo-price {
    font-size: 18px;
    color: #ffffff;
}

.dme-seo-expires {
    color: #fb923c;
}

.dme-seo-cta {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    margin-top: 4px;
    padding: 13px 22px;
    background: #f97316;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.15s ease;
}

.dme-seo-cta:hover {
    background: #ea580c;
    color: #fff;
}

.dme-seo-challenges h2 {
    margin: 0 0 14px;
    font-size: 20px;
    color: #ffffff;
}

.dme-seo-challenge {
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 12px;
}

.dme-seo-challenge h3 {
    margin: 0 0 8px;
    font-size: 16px;
    color: #ffffff;
}

.dme-seo-challenge ul {
    margin: 0 0 10px;
    padding-left: 18px;
    color: #d1d5db;
}

.dme-seo-challenge-price {
    margin: 0;
    font-weight: 700;
    color: #f97316;
}

.dme-seo-back {
    display: inline-block;
    margin-top: 24px;
    color: #9ca3af;
    text-decoration: underline;
}

/* Hub */

.dme-seo-hub-heading {
    margin: 28px 0 14px;
    color: #ffffff;
    font-size: 20px;
}

.dme-seo-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
}

.dme-seo-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 12px;
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    text-decoration: none;
    color: #f5f5f5;
    transition: border-color 0.15s ease, transform 0.15s ease;
}

.dme-seo-card:hover {
    border-color: #f97316;
    transform: translateY(-2px);
}

.dme-seo-card-badge {
    position: absolute;
    top: -8px;
    left: 8px;
    background: #f97316;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    white-space: nowrap;
}

.dme-seo-card img {
    max-width: 100%;
    height: 100px;
    object-fit: contain;
    margin-bottom: 8px;
}

.dme-seo-card-name {
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
}

.dme-seo-card-price {
    font-size: 13px;
    color: #f97316;
    font-weight: 700;
    margin-top: 4px;
}

/* Mobile: aperta um pouco o padding lateral e o texto, mas nunca cola na borda */
@media (max-width: 480px) {
    .dme-seo-single,
    .dme-seo-hub {
        padding: 20px 14px 48px;
    }

    .dme-seo-title {
        font-size: 21px;
    }

    .dme-seo-hero {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .dme-seo-hero-info {
        width: 100%;
    }

    .dme-seo-hub-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 10px;
    }
}
