/**
 * Tema InfoCursos — Cobre Premium (Dark Gold)
 * Dark mode com gradientes radiais cobre/dourado, glassmorphism, glow.
 * Hero com logo animado (chama), badges flutuantes e ticker.
 * Fonte: Inter
 *
 * Isolado: so carrega quando template_style == 'infocursos'.
 * Classes assinatura usam o namespace .sc-ic-* (hero da homepage).
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --sc-primary: #c47a4a;
    --sc-primary-dark: #9f4d25;
    --sc-price: #e8b27f;
    --sc-bg: #050505;
    --sc-card-bg: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
    --sc-card-solid: #11100f;
    --sc-text: #fffaf4;
    --sc-text-light: #c8b8a9;
    --sc-soft: #8f8175;
    --sc-border: rgba(196, 122, 74, 0.25);
    --sc-copper: #c47a4a;
    --sc-copper2: #e8b27f;
    --sc-gold: #f3c58c;
    --sc-grad: linear-gradient(135deg, #9f4d25, #df8d55);
    --sc-glass: rgba(255, 255, 255, 0.045);
    --sc-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
    --sc-glow: 0 0 28px rgba(196, 122, 74, 0.34), 0 0 70px rgba(196, 122, 74, 0.13);
    --sc-radius: 22px;
    --sc-font: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

body.single-cursos,
body.post-type-archive-cursos,
body.tax-categoria_curso,
body.single-review_curso,
body.post-type-archive-review_curso,
body.sync-cursos-page {
    background:
        radial-gradient(circle at 18% 0%, rgba(196, 122, 74, 0.16), transparent 32%),
        radial-gradient(circle at 86% 18%, rgba(232, 178, 127, 0.10), transparent 28%),
        linear-gradient(135deg, #050505, #0b0a09 48%, #050505);
    background-attachment: fixed;
    color: var(--sc-text);
    font-family: var(--sc-font);
    font-size: 16px;
    line-height: 1.5;
    min-height: 100vh;
}

.sc-single,
.sc-archive {
    font-family: var(--sc-font);
    color: var(--sc-text);
}

.sc-single h1,
.sc-single h2,
.sc-single h3,
.sc-archive h1,
.sc-archive h2,
.sc-archive h3 {
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--sc-text);
    margin: 0;
}

.gradient-text,
.sc-single h1 span,
.sc-archive h1 span {
    color: var(--sc-copper2);
    text-shadow: 0 0 24px rgba(196, 122, 74, 0.24);
}

/* ========== HERO (curso individual) ========== */
.sc-hero {
    position: relative;
    padding: 64px 0 48px;
    overflow: hidden;
    background: transparent;
}

.sc-hero-img {
    display: none;
}

.sc-hero-content {
    width: min(calc(100% - 32px), 1180px);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sc-hero-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.sc-hero-cats .sc-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid var(--sc-border);
    background: rgba(196, 122, 74, 0.065);
    color: var(--sc-copper2);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background 200ms ease;
}

.sc-hero-cats .sc-tag:hover {
    background: rgba(196, 122, 74, 0.16);
}

.sc-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin: 0;
    letter-spacing: -0.05em;
    word-break: break-word;
}

/* ========== CONTAINER E BREADCRUMBS ========== */
.sc-container {
    width: min(calc(100% - 32px), 1180px);
    margin: 0 auto;
}

.sc-breadcrumbs {
    padding: 24px 0;
    font-size: 0.88rem;
    color: var(--sc-text-light);
}

.sc-breadcrumbs a {
    color: var(--sc-text-light);
    text-decoration: none;
    transition: color 150ms ease;
}

.sc-breadcrumbs a:hover {
    color: var(--sc-copper2);
}

.sc-breadcrumbs .sc-sep {
    margin: 0 10px;
    color: rgba(196, 122, 74, 0.4);
}

/* ========== LAYOUT 2 COLUNAS ========== */
.sc-single-layout {
    width: min(calc(100% - 32px), 1180px);
    margin: 0 auto;
    padding: 16px 0 72px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 34px;
    align-items: start;
}

.sc-single-main {
    min-width: 0;
}

/* ========== VIDEO EMBED ========== */
.sc-embed-wrapper,
.sync-cursos-embed-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--sc-radius);
    background: var(--sc-card-solid);
    margin-bottom: 32px;
    overflow: hidden;
    border: 1px solid var(--sc-border);
    box-shadow: var(--sc-shadow);
}

.sc-embed-wrapper iframe,
.sync-cursos-embed-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ========== CONTEUDO ========== */
.sc-content {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
    border: 1px solid var(--sc-border);
    border-radius: 30px;
    padding: 34px;
    box-shadow: var(--sc-shadow);
}

.sc-content h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    margin: 30px 0 14px;
    letter-spacing: -0.03em;
}

.sc-content h2:first-child {
    margin-top: 0;
}

.sc-content h3 {
    font-size: 1.15rem;
    margin: 20px 0 10px;
    color: var(--sc-text);
}

.sc-content p {
    margin: 0 0 14px;
    color: var(--sc-text-light);
    font-size: 1.02rem;
    line-height: 1.72;
}

.sc-content ul,
.sc-content ol {
    padding-left: 22px;
    margin: 0 0 14px;
    color: var(--sc-text-light);
}

.sc-content li {
    margin-bottom: 7px;
    line-height: 1.7;
}

.sc-content strong {
    color: var(--sc-text);
    font-weight: 700;
}

.sc-content a {
    color: var(--sc-copper2);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 200ms ease;
}

.sc-content a:hover {
    border-bottom-color: var(--sc-copper2);
}

/* ========== INFO ADICIONAL ========== */
.sc-info-adicional {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.sc-info-adicional p {
    margin: 0;
    background: rgba(196, 122, 74, 0.08);
    border: 1px solid var(--sc-border);
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 0.95rem;
    color: var(--sc-text);
}

.sc-info-adicional p strong {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sc-copper2);
    margin-bottom: 4px;
    font-weight: 800;
}

/* ========== MODULOS ========== */
.sc-modulos {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--sc-border);
}

.sc-modulos > h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.sc-modulos-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sc-modulo-item {
    display: flex;
    gap: 18px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--sc-border);
    border-radius: 18px;
    transition: all 250ms ease;
}

.sc-modulo-item:hover {
    transform: translateY(-3px);
    border-color: rgba(196, 122, 74, 0.5);
    box-shadow: var(--sc-glow);
}

.sc-modulo-numero {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--sc-grad);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: var(--sc-glow);
}

.sc-modulo-info {
    min-width: 0;
}

.sc-modulo-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 6px;
    line-height: 1.2;
    overflow-wrap: break-word;
}

.sc-modulo-info p {
    color: var(--sc-text-light);
    font-size: 0.92rem;
    margin: 0 0 8px;
    line-height: 1.5;
}

.sc-modulo-info span {
    display: inline-block;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(196, 122, 74, 0.12);
    color: var(--sc-copper2);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.sc-modulo-item details {
    margin-top: 12px !important;
    margin-left: 66px !important;
}

.sc-modulo-item details summary {
    cursor: pointer;
    font-size: 0.85rem !important;
    color: var(--sc-copper2) !important;
    font-weight: 700 !important;
    padding: 6px 0;
    display: inline-block;
}

.sc-modulo-item details summary:hover {
    color: var(--sc-gold) !important;
}

.sc-modulo-item details ul {
    margin: 10px 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
    font-size: 0.88rem !important;
    color: var(--sc-text-light) !important;
}

.sc-modulo-item details ul li {
    padding: 8px 0 !important;
    border-bottom: 1px solid var(--sc-border) !important;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* ========== SIDEBAR ========== */
.sc-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sc-sidebar-card {
    position: relative;
    border-radius: 30px;
    padding: 28px;
    background: linear-gradient(160deg, #15100d, #070706);
    border: 1px solid var(--sc-border);
    box-shadow: var(--sc-shadow);
}

.sc-preco {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--sc-border);
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--sc-copper2);
    letter-spacing: -0.02em;
    line-height: 1;
}

.sc-preco-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--sc-text-light);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.sc-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 22px;
    border-radius: 16px;
    font-weight: 900;
    background: var(--sc-grad);
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: var(--sc-glow);
    transition: transform 220ms ease;
    font-size: 1rem;
    line-height: 1.2;
    box-sizing: border-box;
    border: 0;
    cursor: pointer;
}

.sc-btn-whatsapp:hover {
    transform: translateY(-2px);
}

.sc-btn-whatsapp svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Variante alternativa (PIX/checkout secundario) — fundo escuro */
.sc-btn-whatsapp-alt {
    background: #15100d;
    border: 1px solid var(--sc-border);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
    color: #fff !important;
}

.sc-buy-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 6px;
}

.sc-buy-stars {
    color: var(--sc-gold);
    font-weight: 900;
    margin-bottom: 6px;
}

.sc-buy-desc {
    color: var(--sc-text-light);
    font-size: 0.92rem;
    margin: 0 0 18px;
    line-height: 1.5;
}

.sc-buy-secure {
    margin-top: 14px;
    font-size: 0.8rem;
    color: var(--sc-text-light);
    text-align: center;
}

.sc-sidebar-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--sc-border);
}

.sc-sidebar-info h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sc-text-light);
    margin: 0 0 12px;
}

.sc-sidebar-info .sc-tag {
    display: inline-block;
    margin: 0 6px 8px 0;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(196, 122, 74, 0.1);
    color: var(--sc-copper2);
    font-size: 0.82rem;
    text-decoration: none;
    font-weight: 600;
    transition: background 200ms ease;
}

.sc-sidebar-info .sc-tag:hover {
    background: rgba(196, 122, 74, 0.2);
}

/* ========== RELACIONADOS ========== */
.sc-relacionados {
    width: min(calc(100% - 32px), 1180px);
    margin: 0 auto;
    padding: 36px 0 72px;
}

.sc-relacionados > h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

.sc-relacionados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    justify-content: center;
}

/* ========== CARDS ========== */
.sc-card {
    background: var(--sc-card-bg);
    border: 1px solid var(--sc-border);
    border-radius: 28px;
    overflow: hidden;
    transition: all 220ms ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.26);
}

.sc-card:hover {
    transform: translateY(-4px);
    border-color: rgba(196, 122, 74, 0.5);
    box-shadow: var(--sc-glow);
}

.sc-card-img-wrapper {
    position: relative;
    background: linear-gradient(135deg, #080706, #c47a4a);
    overflow: hidden;
}

.sc-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 400ms ease;
}

.sc-card:hover .sc-card-img {
    transform: scale(1.05);
}

.sc-card-img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.14), transparent 30%),
        linear-gradient(transparent, rgba(0, 0, 0, 0.55));
    pointer-events: none;
}

.sc-card-no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 250, 244, 0.7);
    font-size: 0.88rem;
}

.sc-card-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.sc-card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sc-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sc-card-title a {
    color: var(--sc-text);
    text-decoration: none;
}

.sc-card:hover .sc-card-title a {
    color: var(--sc-copper2);
}

.sc-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    gap: 12px;
}

.sc-card-preco {
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--sc-copper2);
}

.sc-card-btn {
    padding: 11px 18px;
    border-radius: 12px;
    background: var(--sc-grad);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 900;
    text-decoration: none;
    transition: transform 200ms ease;
    white-space: nowrap;
    box-shadow: var(--sc-glow);
}

.sc-card-btn:hover {
    transform: translateY(-2px);
}

/* ========== ARCHIVE ========== */
.sc-archive {
    padding: 40px 0 80px;
}

.sc-archive-header {
    width: min(calc(100% - 32px), 1180px);
    margin: 0 auto;
    padding: 32px 0;
}

.sc-archive-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    margin: 0 0 12px;
    letter-spacing: -0.04em;
}

.sc-archive-count {
    font-size: 0.88rem;
    color: var(--sc-text-light);
}

/* Barra de filtros — card auto-suficiente. Define bg/borda/raio/padding
   explicitamente pra nao herdar nada do CSS base (que deixava padding lateral 0). */
.sc-filters {
    width: min(calc(100% - 32px), 1180px);
    margin: 24px auto 0;
    padding: 16px 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--sc-border);
    border-radius: 18px;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
}

.sc-filters-label {
    font-size: 0.82rem;
    color: var(--sc-text-light);
    margin-right: 6px;
    font-weight: 700;
}

.sc-filters .sc-tag {
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid var(--sc-border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--sc-text-light);
    font-size: 0.85rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 200ms ease;
}

.sc-filters .sc-tag.active,
.sc-filters .sc-tag:hover {
    background: var(--sc-grad);
    border-color: transparent;
    color: #fff;
    box-shadow: var(--sc-glow);
}

.sc-search-form {
    display: flex;
    margin-left: auto;
    gap: 8px;
}

/* Input e botao com seletor composto (.sc-filters ...) pra ganhar do CSS base
   e do CSS dinamico do customizador (que pinta o botao com var(--sc-primary)). */
.sc-filters .sc-search-input,
.sc-search-input {
    padding: 11px 16px;
    border: 1px solid var(--sc-border);
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: var(--sc-font);
    background: rgba(255, 255, 255, 0.05);
    color: var(--sc-text);
    min-width: 220px;
    width: auto;
}

.sc-search-input::placeholder {
    color: var(--sc-soft);
}

.sc-filters .sc-search-input:focus,
.sc-search-input:focus {
    outline: none;
    border-color: var(--sc-copper);
    box-shadow: 0 0 0 2px rgba(196, 122, 74, 0.18);
}

.sc-filters .sc-search-btn,
.sc-search-btn {
    padding: 11px 24px;
    background: var(--sc-grad);
    color: #fff;
    border: 0;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 900;
    cursor: pointer;
    font-family: var(--sc-font);
    box-shadow: var(--sc-glow);
    transition: transform 200ms ease;
}

.sc-filters .sc-search-btn:hover,
.sc-search-btn:hover {
    background: var(--sc-grad);
    color: #fff;
    transform: translateY(-1px);
}

.sc-grid {
    width: 100%;
    max-width: 1180px;
    margin: 40px auto 0;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.sc-pagination {
    width: min(calc(100% - 32px), 1180px);
    margin: 48px auto 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.sc-pagination .page-numbers {
    padding: 10px 16px;
    border: 1px solid var(--sc-border);
    border-radius: 12px;
    color: var(--sc-text-light);
    background: rgba(255, 255, 255, 0.035);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    transition: all 200ms ease;
}

.sc-pagination .page-numbers.current,
.sc-pagination .page-numbers:hover {
    background: var(--sc-grad);
    color: #fff;
    border-color: transparent;
}

.sc-no-results {
    text-align: center;
    padding: 80px 24px;
    color: var(--sc-text-light);
    font-size: 1rem;
}

/* ========== FAB MOBILE ========== */
.sc-fab-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--sc-grad);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sc-glow);
    z-index: 50;
    text-decoration: none;
    transition: transform 200ms ease;
}

.sc-fab-whatsapp:hover {
    transform: scale(1.1);
}

/* ========== HIDE THEME HEADER/FOOTER EM PAGINAS DO PLUGIN ========== */
body.single-cursos .wp-site-blocks > header,
body.single-cursos .wp-site-blocks > .wp-block-template-part:first-child,
body.post-type-archive-cursos .wp-site-blocks > header,
body.post-type-archive-cursos .wp-site-blocks > .wp-block-template-part:first-child,
body.tax-categoria_curso .wp-site-blocks > header,
body.tax-categoria_curso .wp-site-blocks > .wp-block-template-part:first-child,
body.single-review_curso .wp-site-blocks > header,
body.single-review_curso .wp-site-blocks > .wp-block-template-part:first-child,
body.post-type-archive-review_curso .wp-site-blocks > header,
body.post-type-archive-review_curso .wp-site-blocks > .wp-block-template-part:first-child,
body.sync-cursos-page .wp-site-blocks > header,
body.sync-cursos-page .wp-site-blocks > .wp-block-template-part:first-child { display: none !important; }

body.single-cursos .wp-site-blocks > footer,
body.single-cursos .wp-site-blocks > .wp-block-template-part:last-child,
body.post-type-archive-cursos .wp-site-blocks > footer,
body.post-type-archive-cursos .wp-site-blocks > .wp-block-template-part:last-child,
body.tax-categoria_curso .wp-site-blocks > footer,
body.tax-categoria_curso .wp-site-blocks > .wp-block-template-part:last-child,
body.single-review_curso .wp-site-blocks > footer,
body.single-review_curso .wp-site-blocks > .wp-block-template-part:last-child,
body.post-type-archive-review_curso .wp-site-blocks > footer,
body.post-type-archive-review_curso .wp-site-blocks > .wp-block-template-part:last-child,
body.sync-cursos-page .wp-site-blocks > footer,
body.sync-cursos-page .wp-site-blocks > .wp-block-template-part:last-child { display: none !important; }

/* ========== NAVEGACAO ========== */
.sc-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(5, 5, 5, 0.78);
    border-bottom: 1px solid var(--sc-border);
}

.sc-nav-inner {
    width: min(calc(100% - 32px), 1180px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 18px;
}

.sc-nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 1.1rem;
    text-decoration: none;
    color: var(--sc-text);
    letter-spacing: 0.04em;
}

.sc-nav-logo-img {
    height: 46px;
    width: auto;
}

.sc-nav-logo-text {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--sc-text);
    letter-spacing: 0.08em;
}

/* Badge cobre antes do logo texto se nao tiver imagem */
.sc-nav-logo:not(:has(.sc-nav-logo-img))::before {
    content: '';
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--sc-grad);
    box-shadow: var(--sc-glow);
    flex-shrink: 0;
}

.sc-nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.sc-nav-link {
    color: #eaded3;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 200ms ease;
}

.sc-nav-link:hover {
    color: var(--sc-copper2);
}

.sc-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 16px;
    font-weight: 900;
    background: var(--sc-grad);
    color: #fff;
    text-decoration: none;
    box-shadow: var(--sc-glow);
    transition: transform 200ms ease;
    margin-left: 8px;
}

.sc-nav-cta:hover {
    transform: translateY(-2px);
    color: #fff;
}

.sc-nav-toggle {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 4px;
}

.sc-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--sc-text);
    border-radius: 2px;
    transition: all 0.2s;
}

/* ========== FOOTER ========== */
.sc-footer {
    padding: 58px 0 30px;
    border-top: 1px solid var(--sc-border);
    color: #bfb7b0;
    margin-top: 0;
    background: #050505;
    font-family: var(--sc-font);
}

.sc-footer-inner {
    width: min(calc(100% - 32px), 1180px);
    margin: 0 auto;
}

.sc-footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 32px;
}

.sc-footer-logo {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--sc-text);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.06em;
}

.sc-footer-desc {
    font-size: 0.88rem;
    margin-top: 12px;
    color: #bfb7b0;
    max-width: 340px;
    line-height: 1.7;
}

.sc-footer-links h4 {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sc-copper2);
    margin-bottom: 14px;
}

.sc-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sc-footer-links li {
    margin-bottom: 8px;
}

.sc-footer-links a {
    color: #bfb7b0;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 150ms ease;
}

.sc-footer-links a:hover {
    color: var(--sc-copper2);
}

.sc-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0 0;
    font-size: 0.8rem;
    text-align: center;
    color: #aaa;
}

/* ========== PAGINAS GERADAS (shortcodes, homepage) ========== */
.sc-page {
    font-family: var(--sc-font);
    color: var(--sc-text);
}

.sc-page-hero {
    padding: 84px 0 56px;
    width: min(calc(100% - 32px), 1180px);
    margin: 0 auto;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.sc-page-hero h1 {
    color: var(--sc-text);
    font-size: clamp(2.5rem, 5vw, 4.7rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.05em;
    margin: 0 0 18px;
}

.sc-page-hero h1 span {
    color: var(--sc-copper2);
    text-shadow: 0 0 24px rgba(196, 122, 74, 0.24);
}

.sc-page-hero p {
    color: var(--sc-text-light);
    font-size: 1.1rem;
    line-height: 1.55;
    margin: 0 0 28px;
    max-width: 660px;
}

.sc-page-section {
    padding: 36px 0 72px;
    width: min(calc(100% - 32px), 1180px);
    margin: 0 auto;
}

.sc-page-section-alt {
    background: transparent;
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 36px 0 72px;
    box-sizing: border-box;
}

.sc-page-section-alt > * {
    width: min(calc(100% - 32px), 1180px);
    margin-left: auto !important;
    margin-right: auto !important;
}

.sc-page-section-title {
    text-align: left;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
    color: var(--sc-text);
}

.sc-page-section-title span {
    color: var(--sc-copper2);
}

.sc-page-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.sc-page-step {
    text-align: left;
    padding: 30px;
    background: var(--sc-card-bg);
    border: 1px solid var(--sc-border);
    border-radius: 28px;
    transition: all 250ms ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.sc-page-step:hover {
    transform: translateY(-4px);
    border-color: rgba(196, 122, 74, 0.5);
    box-shadow: var(--sc-glow);
}

.sc-page-step-num {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: var(--sc-grad);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
    margin: 0 0 16px;
    box-shadow: var(--sc-glow);
}

.sc-page-step h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 8px;
    color: var(--sc-text);
}

.sc-page-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--sc-text-light);
    margin: 0;
}

/* Categorias como chips premium */
.sc-page-cats {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
}

.sc-page-cats .sc-tag {
    display: inline-flex;
    align-items: center;
    padding: 13px 20px;
    border-radius: 16px;
    border: 1px solid var(--sc-border);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
    color: var(--sc-text);
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.2);
    transition: all 220ms ease;
}

.sc-page-cats .sc-tag:hover {
    transform: translateY(-3px);
    border-color: rgba(196, 122, 74, 0.5);
    color: var(--sc-copper2);
    box-shadow: var(--sc-glow);
}

.sc-page-cta {
    padding: 46px;
    border-radius: 34px;
    background: linear-gradient(135deg, #0b0908, #1b100b 58%, #050505);
    border: 1px solid var(--sc-border);
    margin: 40px auto;
    width: min(calc(100% - 32px), 1180px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: var(--sc-shadow);
}

.sc-page-cta::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(196, 122, 74, 0.24), transparent 65%);
    pointer-events: none;
}

.sc-page-cta > * {
    position: relative;
    z-index: 1;
}

.sc-page-cta h2 {
    color: var(--sc-text);
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    margin: 0 0 10px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.sc-page-cta p {
    color: var(--sc-text-light);
    font-size: 1.05rem;
    margin: 0;
    max-width: 660px;
}

.sc-page-cta .sc-btn-whatsapp {
    display: inline-flex;
    width: auto;
}

.sc-page-faq {
    max-width: 880px;
    margin: 0 auto;
}

.sc-page-faq-item {
    padding: 24px;
    margin-bottom: 13px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--sc-border);
    border-radius: 20px;
}

.sc-page-faq-item h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 8px;
    color: var(--sc-text);
}

.sc-page-faq-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--sc-text-light);
    margin: 0;
}

/* Paginas legais */
.sc-page-legal-content {
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    color: var(--sc-text-light);
}

.sc-page-legal-content p {
    margin-bottom: 1em;
}

.sc-page-legal-content h2,
.sc-page-legal-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 2em 0 0.5em;
    color: var(--sc-text);
}

.sc-page-legal-content strong {
    color: var(--sc-copper2);
    font-weight: 700;
}

.sc-page-legal-content a {
    color: var(--sc-copper2);
    text-decoration: underline;
}

/* Aviso global */
.sc-aviso-global {
    margin-top: 24px;
    padding: 16px 20px;
    background: rgba(196, 122, 74, 0.12);
    border: 1px solid rgba(196, 122, 74, 0.4);
    border-radius: var(--sc-radius);
}

.sc-aviso-global p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--sc-gold);
    font-weight: 500;
}

/* =============================================================
   HERO ASSINATURA INFOCURSOS (homepage) — namespace .sc-ic-*
   Logo animado com chama, badges flutuantes, ticker.
   ============================================================= */
.sc-ic-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 50px;
}

.sc-ic-hero::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 220px;
    background: linear-gradient(90deg, transparent, rgba(196, 122, 74, 0.22), transparent);
    filter: blur(48px);
    opacity: 0.68;
    pointer-events: none;
}

.sc-ic-grid {
    width: min(calc(100% - 32px), 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    gap: 54px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sc-ic-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--sc-border);
    color: var(--sc-copper2);
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    background: rgba(196, 122, 74, 0.065);
}

.sc-ic-hero h1 {
    font-size: clamp(46px, 6vw, 84px);
    line-height: 0.94;
    margin: 26px 0 22px;
    letter-spacing: -0.065em;
    max-width: 800px;
    font-weight: 900;
    color: var(--sc-text);
}

.sc-ic-hero h1 span {
    color: var(--sc-copper2);
    text-shadow: 0 0 24px rgba(196, 122, 74, 0.24);
}

.sc-ic-hero-copy {
    font-size: 21px;
    line-height: 1.58;
    color: #d8cabd;
    max-width: 720px;
    margin: 0;
}

.sc-ic-search {
    margin: 30px 0 22px;
    display: flex;
    max-width: 680px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid var(--sc-border);
    border-radius: 19px;
    overflow: hidden;
    box-shadow: var(--sc-shadow);
}

.sc-ic-search input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    padding: 19px 21px;
    font-size: 16px;
    font-family: var(--sc-font);
}

.sc-ic-search input::placeholder {
    color: var(--sc-soft);
}

.sc-ic-search button {
    border: 0;
    background: var(--sc-grad);
    color: #fff;
    font-weight: 900;
    padding: 0 26px;
    cursor: pointer;
    font-family: var(--sc-font);
    font-size: 15px;
}

.sc-ic-cta-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.sc-ic-btn {
    border: 0;
    border-radius: 16px;
    padding: 15px 22px;
    font-weight: 900;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.22s;
    white-space: nowrap;
    font-size: 15px;
    text-decoration: none;
}

.sc-ic-btn:hover {
    transform: translateY(-2px);
}

.sc-ic-btn-copper {
    background: var(--sc-grad);
    color: #fff;
    box-shadow: var(--sc-glow);
}

.sc-ic-btn-dark {
    background: #15100d;
    color: #fff;
    border: 1px solid var(--sc-border);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

.sc-ic-btn-light {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border: 1px solid var(--sc-border);
}

/* Visual da direita */
.sc-ic-visual {
    min-height: 560px;
    border-radius: 36px;
    background: linear-gradient(145deg, #050505, #11100f 46%, #050505);
    border: 1px solid var(--sc-border);
    position: relative;
    overflow: hidden;
    box-shadow: var(--sc-shadow);
}

.sc-ic-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 33% 35%, rgba(232, 178, 127, 0.18), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(196, 122, 74, 0.16), transparent 34%),
        linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
}

/* Logo animado — simbolo "i" + chama. Brilho passando (shine sweep),
   fiel ao @keyframes shine do .logo-mark do codigo original. */
.sc-ic-symbol {
    position: absolute;
    inset: 62px auto auto 70px;
    width: 190px;
    height: 220px;
    border-radius: 42px;
    z-index: 2;
    overflow: hidden;
    filter: drop-shadow(0 0 30px rgba(196, 122, 74, 0.38));
}

.sc-ic-symbol::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 48px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: rotate(-38deg);
    top: 12px;
    left: -140px;
    z-index: 5;
    pointer-events: none;
    animation: sc-ic-shine 4s infinite;
}

@keyframes sc-ic-shine {
    50%, 100% { left: 200px; }
}

.sc-ic-symbol .i-bar {
    position: absolute;
    left: 52px;
    bottom: 34px;
    width: 42px;
    height: 124px;
    border-radius: 14px 14px 8px 8px;
    background: linear-gradient(180deg, #f6c49b, #b95e2d 62%, #743516);
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.45);
}

.sc-ic-symbol .i-dot {
    position: absolute;
    left: 54px;
    top: 10px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffd0a4, #b95e2d);
    box-shadow: 0 0 26px rgba(232, 178, 127, 0.45);
}

.sc-ic-symbol .flame {
    position: absolute;
    right: 18px;
    bottom: 28px;
    width: 106px;
    height: 138px;
    background: linear-gradient(145deg, #ffd0a4, #c47a4a 58%, #6e2d13);
    clip-path: polygon(18% 100%, 42% 62%, 58% 26%, 78% 0, 68% 44%, 96% 20%, 76% 70%, 100% 100%, 67% 86%, 48% 100%);
    filter: drop-shadow(0 0 18px rgba(196, 122, 74, 0.30));
}

.sc-ic-floating {
    position: absolute;
    z-index: 4;
    background: rgba(13, 11, 10, 0.82);
    border: 1px solid var(--sc-border);
    border-radius: 18px;
    padding: 15px 17px;
    box-shadow: var(--sc-glow);
    font-weight: 800;
    color: #fff;
    font-size: 15px;
}

.sc-ic-floating small {
    display: block;
    color: var(--sc-text-light);
    margin-top: 4px;
    font-weight: 500;
}

/* Badges empilhados a direita (topo), longe do logo (esquerda) e do
   title-card (base) — evita sobreposicao com o texto do cartao. */
.sc-ic-floating { max-width: 210px; }
.sc-ic-fl1 { right: 26px; top: 52px; }
.sc-ic-fl2 { right: 40px; top: 154px; }
.sc-ic-fl3 { right: 26px; top: 256px; }

.sc-ic-title-card {
    position: absolute;
    left: 58px;
    bottom: 44px;
    right: 58px;
    z-index: 3;
    border-left: 1px solid var(--sc-border);
    padding-left: 28px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent);
    backdrop-filter: blur(2px);
}

.sc-ic-title-card h2 {
    font-size: 32px;
    margin: 0 0 12px;
    letter-spacing: 0.02em;
    color: #fff;
    font-weight: 900;
}

.sc-ic-title-card h2 span {
    color: var(--sc-copper2);
}

.sc-ic-title-card p {
    color: var(--sc-text-light);
    line-height: 1.55;
    margin: 0 0 20px;
}

.sc-ic-light-lines {
    position: absolute;
    inset: auto -70px -18px -70px;
    height: 210px;
    background:
        repeating-linear-gradient(155deg, transparent 0 25px, rgba(196, 122, 74, 0.18) 26px 28px, transparent 30px 56px),
        linear-gradient(90deg, transparent, rgba(232, 178, 127, 0.18), transparent);
    opacity: 0.62;
    z-index: 1;
}

/* Ticker */
.sc-ic-ticker {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 18px 0;
    border-top: 1px solid var(--sc-border);
    border-bottom: 1px solid var(--sc-border);
    background: rgba(255, 255, 255, 0.025);
    color: var(--sc-copper2);
    font-weight: 900;
    letter-spacing: 0.07em;
    font-size: 13px;
}

/* ========== RESPONSIVO ========== */
@media (max-width: 980px) {
    .sc-single-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .sc-sidebar {
        position: static;
    }

    .sc-nav-links {
        display: none;
    }

    .sc-footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sc-info-adicional {
        grid-template-columns: 1fr;
    }

    .sc-page-steps {
        grid-template-columns: 1fr;
    }

    .sc-nav-toggle {
        display: flex;
    }

    /* Hero assinatura colapsa para 1 coluna */
    .sc-ic-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .sc-ic-visual {
        min-height: 420px;
    }

    .sc-ic-symbol {
        width: 130px;
        height: 155px;
    }

    .sc-ic-symbol .i-bar { left: 35px; bottom: 24px; width: 30px; height: 86px; }
    .sc-ic-symbol .i-dot { left: 36px; width: 28px; height: 28px; }
    .sc-ic-symbol .flame { right: 12px; width: 72px; height: 96px; }

    /* Badges decorativos escondidos no mobile — espaco vertical curto causaria
       sobreposicao com o title-card. Logo + cartao seguem como destaque. */
    .sc-ic-floating { display: none; }

    .sc-ic-title-card { left: 28px; right: 28px; bottom: 32px; }
}

@media (max-width: 560px) {
    .sc-hero {
        padding: 48px 0 32px;
    }

    .sc-content {
        padding: 24px;
    }

    .sc-sidebar-card {
        padding: 22px;
    }

    .sc-modulo-item {
        padding: 16px;
    }

    .sc-modulo-numero {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .sc-modulo-item details {
        margin-left: 54px !important;
    }

    .sc-search-form {
        width: 100%;
        margin-left: 0;
    }

    .sc-search-input {
        flex: 1;
        min-width: 0;
    }

    .sc-ic-hero h1 {
        font-size: clamp(38px, 11vw, 52px);
    }

    .sc-ic-hero-copy {
        font-size: 17px;
    }
}

/* =============================================================
   RESENHAS / REVIEWS (single-review_curso.php)
   Overrides para inline styles com cores claras hardcoded
   ============================================================= */
.sc-review .sc-hero {
    min-height: 250px;
    padding: 48px 24px;
    position: relative;
}

.sc-review .sc-hero-img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    opacity: 0.18;
    filter: blur(2px);
    z-index: 0;
}

.sc-review .sc-hero-content {
    position: relative;
    z-index: 2;
}

.sc-review .sc-hero-content h1 {
    font-size: clamp(1.6rem, 3vw, 2.4rem) !important;
    color: var(--sc-text);
}

.sc-review .sc-hero-content p {
    color: var(--sc-text-light) !important;
}

.sc-review .sc-review-stars { display: inline-flex; gap: 3px; }
.sc-review .sc-star { font-size: 1.3em; line-height: 1; }
.sc-review .sc-star-full { color: var(--sc-gold); }
.sc-review .sc-star-half { color: var(--sc-gold); opacity: 0.55; }
.sc-review .sc-star-empty { color: rgba(255, 255, 255, 0.15); }

/* Link para o curso (div com style inline background var(--sc-bg)) */
.sc-review .sc-single-main > div[style*="background:var(--sc-bg"],
.sc-review .sc-single-main > div[style*="background: var(--sc-bg"] {
    background: var(--sc-card-bg) !important;
    border: 1px solid var(--sc-border) !important;
    border-radius: var(--sc-radius) !important;
    padding: 20px !important;
}

.sc-review .sc-single-main > div[style*="background:var(--sc-bg"] p,
.sc-review .sc-single-main > div[style*="background: var(--sc-bg"] p {
    color: var(--sc-text-light) !important;
}

.sc-review .sc-single-main > div[style*="background:var(--sc-bg"] a,
.sc-review .sc-single-main > div[style*="background: var(--sc-bg"] a {
    color: var(--sc-text) !important;
}

.sc-review .sc-single-main > div[style*="background:var(--sc-bg"] span,
.sc-review .sc-single-main > div[style*="background: var(--sc-bg"] span {
    color: var(--sc-copper2) !important;
}

/* Pros e Contras — override cores claras (verde #f0fdf4, rosa #fef2f2) */
.sc-review [style*="grid-template-columns:1fr 1fr"] > div[style*="#f0fdf4"],
.sc-review [style*="grid-template-columns: 1fr 1fr"] > div[style*="#f0fdf4"] {
    background: rgba(22, 163, 74, 0.12) !important;
    border: 1px solid rgba(22, 163, 74, 0.35) !important;
    border-radius: var(--sc-radius) !important;
    padding: 22px !important;
}

.sc-review [style*="grid-template-columns:1fr 1fr"] > div[style*="#f0fdf4"] h3,
.sc-review [style*="grid-template-columns: 1fr 1fr"] > div[style*="#f0fdf4"] h3 {
    color: #4ade80 !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
}

.sc-review [style*="grid-template-columns:1fr 1fr"] > div[style*="#f0fdf4"] ul,
.sc-review [style*="grid-template-columns: 1fr 1fr"] > div[style*="#f0fdf4"] ul {
    color: #a7f3d0 !important;
}

.sc-review [style*="grid-template-columns:1fr 1fr"] > div[style*="#fef2f2"],
.sc-review [style*="grid-template-columns: 1fr 1fr"] > div[style*="#fef2f2"] {
    background: rgba(220, 38, 38, 0.12) !important;
    border: 1px solid rgba(220, 38, 38, 0.35) !important;
    border-radius: var(--sc-radius) !important;
    padding: 22px !important;
}

.sc-review [style*="grid-template-columns:1fr 1fr"] > div[style*="#fef2f2"] h3,
.sc-review [style*="grid-template-columns: 1fr 1fr"] > div[style*="#fef2f2"] h3 {
    color: #fca5a5 !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
}

.sc-review [style*="grid-template-columns:1fr 1fr"] > div[style*="#fef2f2"] ul,
.sc-review [style*="grid-template-columns: 1fr 1fr"] > div[style*="#fef2f2"] ul {
    color: #fecaca !important;
}

/* Veredicto — div com border-left primary */
.sc-review div[style*="border-left:4px solid"],
.sc-review div[style*="border-left: 4px solid"] {
    background:
        radial-gradient(circle at top left, rgba(196, 122, 74, 0.12), transparent 50%),
        var(--sc-card-solid) !important;
    border: 1px solid var(--sc-border) !important;
    border-left: 4px solid var(--sc-copper) !important;
    border-radius: var(--sc-radius) !important;
    padding: 28px !important;
}

.sc-review div[style*="border-left:4px solid"] h3,
.sc-review div[style*="border-left: 4px solid"] h3 {
    color: var(--sc-text) !important;
    font-weight: 700 !important;
    font-size: 1.15rem !important;
}

.sc-review div[style*="border-left:4px solid"] p,
.sc-review div[style*="border-left: 4px solid"] p {
    color: var(--sc-text-light) !important;
}

.sc-review div[style*="border-left:4px solid"] span,
.sc-review div[style*="border-left: 4px solid"] span {
    color: var(--sc-copper2) !important;
}

/* Sidebar da resenha — rating grande */
.sc-review .sc-sidebar-card div[style*="text-align:center"] div[style*="font-size:2em"],
.sc-review .sc-sidebar-card div[style*="text-align: center"] div[style*="font-size:2em"] {
    color: var(--sc-copper2) !important;
    font-size: 2.8rem !important;
    font-weight: 900 !important;
    letter-spacing: -0.03em;
}

.sc-review .sc-sidebar-card div[style*="text-align:center"] p,
.sc-review .sc-sidebar-card div[style*="text-align: center"] p {
    color: var(--sc-text-light) !important;
}

.sc-review .sc-sidebar-card a[style*="display:block"],
.sc-review .sc-sidebar-card a[style*="display: block"] {
    color: var(--sc-copper2) !important;
}

@media (max-width: 720px) {
    .sc-review [style*="grid-template-columns:1fr 1fr"],
    .sc-review [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

/* === Thumb da sidebar do single-curso === */
.sc-sidebar-thumb {
    display: block;
    width: 100%;
    max-height: 220px;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    margin-bottom: 18px;
    border: 1px solid var(--sc-border);
}
