@import url('default.css');

/* -------------------------------------------
   1. Configurações Globais (Tamanho Base)
   ------------------------------------------- */
html {
    font-size: 16px;
     /* Esta linha faz a mágica! */
    scroll-behavior: smooth; 
}

/* -------------------------------------------
   2. Fonte Principal (Corpo do Texto)
   ------------------------------------------- */
body {
    font-family: 'Inter', sans-serif !important;
    background: var(--bg);
    color: var(--fg);
    font-size: 16px;
}

/* -------------------------------------------
   3. Fontes Secundárias (Títulos)
   ------------------------------------------- */
h1,
h2,
h3 {
    font-family: 'Roboto', 'Inter', sans-serif;
    font-weight: 700;
}

/* -------------------------------------------
   4. Fonte para Código (Monospace)
   ------------------------------------------- */
/* Se você tiver uma terceira fonte como o Open Sans, use-a para um propósito claro: */
code, pre {
    /* Usar Open Sans não faz sentido aqui. Se você baixou uma fonte monospace como o 'Roboto Mono', use-a. */
    font-family: 'Roboto Mono', monospace !important; 
    background-color: white;
    color: #0f1115;
}

.text-gold {
    color: var(--gold) !important
}

.btn-gold {
    background: var(--gold);
    color: #111;
    font-weight: 700;
    border: none
}

.btn-gold:hover {
    background: #e6c22f;
    color: #111
}

.btn-outline-gold {
    color: var(--gold);
    border-color: var(--gold)
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #111
}

.card-dark {
    background: #151823;
    border: 1px solid #23283b;
    color: var(--fg)
}

.small-muted {
    color: var(--muted);
    font-size: .95rem
}

header.hero {
    background: radial-gradient(1200px 600px at 50% -10%, #1b2030, #0f1115)
}

.icon {
    font-size: 1.25rem;
    margin-right: .5rem
}

.sticky-cta {
    position: sticky;
    bottom: 0;
    background: #0f1115e6;
    border-top: 1px solid #23283b;
    backdrop-filter: blur(6px);
    z-index: 1030
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #23283b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: .5rem
}

a[href*="wa.me"] {
    text-decoration: none
}

.ratio img {
    object-fit: cover
}

.nav-tabs .nav-link {
    color: #e8eaf0;
    border-color: transparent
}

.nav-tabs .nav-link.active {
    background: #1b2030;
    border-color: #23283b;
    color: #ffd54a
}

.badge-soft {
    background: #1b2030;
    border: 1px solid #23283b;
    color: #e8eaf0
}

.guarantee {
    display: inline-flex;
    gap: .5rem;
    align-items: center;
    background: #1b2030;
    border: 1px dashed #2a324a;
    border-radius: 12px;
    padding: .35rem .6rem;
    font-size: .95rem
}

.policy-note {
    font-size: .9rem;
    color: var(--muted)
}


.img-thumbnail {
    border: 1px solid var(--color-border);
    border-radius: 10px;
}

.img-thumbnail {
    display: inline-block;
    padding: 1px;
    margin: 1px;
    /* border: 1px solid #ddd; */
    border-radius: 4px;
}
.img-thumbnail {
    padding: .25rem;
    background-color: #1b2030;
    border: 1px solid #1b2030;
    border-radius: .25rem;
    max-width: 100%;
    height: auto;
}
img {
    vertical-align: middle;
    border-style: none;
}