/*
Theme Name:   Coin360 SmartMag
Theme URI:    https://coin360.com.br
Description:  Tema filho do SmartMag para o portal Coin360.com.br. Mantém todos os templates customizados de preço de moedas, página de moeda individual, calculadora e mercado.
Author:       Coin360
Author URI:   https://coin360.com.br
Template:     smart-mag
Version:      1.0.0
License:      GNU General Public License v2 or later
Text Domain:  coin360-smartmag
*/

/* ── Estilos customizados do Coin360 que sobrescrevem o SmartMag ── */

/* Fonte padrão do site */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Ticker de preços no header ── */
.c360-ticker-wrap {
    background: #fff;
    border-bottom: 2px solid #E8500A;
    overflow: hidden;
    width: 100%;
}
.c360-ticker-inner {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
    align-items: stretch;
}
.c360-ticker-inner::-webkit-scrollbar { display: none; }
.c360-tick {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    border-right: 1px solid #F0EDE5;
    text-decoration: none;
    color: #111;
    white-space: nowrap;
    font-size: 13px;
    flex-shrink: 0;
    transition: background .15s;
}
.c360-tick:hover { background: #FEF0EA; }
.c360-tick-sym { font-size: 11px; font-weight: 700; color: #6B7280; text-transform: uppercase; }
.c360-tick-price { font-weight: 700; font-family: 'DM Mono', monospace; }
.c360-tick-chg { font-size: 11px; font-weight: 600; padding: 1px 5px; border-radius: 4px; }
.c360-tick-chg.up { color: #16A34A; background: #F0FDF4; }
.c360-tick-chg.dn { color: #DC2626; background: #FEF2F2; }

/* ── Adaptações SmartMag ── */
/* Garante que o conteúdo do plugin de previsão não seja afetado pelo reset do SmartMag */
.cpp-wrapper { all: initial; display: block; }
.cpp-wrapper * { box-sizing: border-box; }

/* ── Página de moeda: garante largura total ── */
.page-template-page-moeda .site-content,
.page-template-page-moeda .content-area,
body.page-moeda .site-content {
    max-width: 100%;
    padding: 0;
}

/* ── SmartMag: ajustes de cor da marca ── */
:root {
    --smag-primary: #E8500A;
    --smag-secondary: #111;
}
.site-header .main-nav .nav-menu > li > a:hover,
.site-header .main-nav .nav-menu > li.current-menu-item > a {
    color: #E8500A;
}

/* ── Breadcrumb do SmartMag: cor da marca ── */
.breadcrumb a:hover { color: #E8500A; }

/* ── Post single: largura confortável ── */
.single .entry-content {
    max-width: 800px;
    margin: 0 auto;
}
