/* ==================== STYLE.CSS - APRENDINVESTE (VERSÃO FINAL 2026 - CORRIGIDA) ==================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@700;800&display=swap');

/* ===================== VARIÁVEIS ===================== */
:root {
    /* CORES PRINCIPAIS - CINZA MÉDIO/CLARO (60% da regra) */
    --gray-dark: #1e1e2f;
    --gray-medium: #374151;
    --gray-light: #4B5563;
    --gray-border: #9CA3AF;
    --gray-hover: #5A6A7A;
    --gray-bg: #f0f2f5;
    --gray-card: #ffffff;

    /* FUNDOS E TONS NEUTROS */
    --bg-body: #f0f2f5;
    --bg-card: #ffffff;
    --bg-highlight: #e5e7eb;
    --bg-hover: #d1d5db;
    --bg-input: #f0f2f5;
    --bg-dark-card: #1e1e2f;
    --bg-gray-medium: #4B5563;
    --bg-converter: #374151;
    --bg-gray-light: #e5e7eb;

    /* TEXTOS (30% da regra) */
    --text-primary: #1e1e2f;
    --text-secondary: #374151;
    --text-muted: #6B7280;
    --text-light: #FFFFFF;
    --text-dark: #1A1A1A;

    /* BORDAS E DESTAQUES */
    --border: #d1d5db;
    --border-dark: #9CA3AF;
    --border-light: #e5e7eb;

    /* CORES VIBRANTES PARA CTAs (10% da regra) - LARANJA E VERDE VIVO */
    --cta-orange: #F97316;
    --cta-orange-hover: #EA580C;
    --cta-orange-shadow: rgba(249, 115, 22, 0.35);

    --cta-green: #22C55E;
    --cta-green-hover: #16A34A;
    --cta-green-shadow: rgba(34, 197, 94, 0.35);

    --cta-gold: #FCD34D;
    --cta-gold-hover: #FBBF24;

    /* AZUL MARINHO PARA SUBTÍTULOS E TÍTULOS */
    --blue-navy: #1e3a6e;
    --blue-navy-hover: #1a3360;

    /* VERDE MUSGO PARA SUBTÍTULOS */
    --green-moss: #5A8F5A;

    /* SHADOWS */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.10);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);

    /* TRANSITIONS */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;

    /* FONTS */
    --font-primary: 'Inter', -apple-system, system-ui, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

/* ===================== RESET E BASE ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================== CABEÇALHO ===================== */
.header-bg {
    background-color: var(--bg-gray-medium);
}

.header-title {
    font-family: var(--font-display);
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--text-light);
}

.header-title span.gold {
    color: var(--cta-gold);
}

/* ===================== TIPOGRAFIA ===================== */
.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--gray-dark);
    letter-spacing: -0.02em;
}

.section-title-white {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 400;
}

.subtitle-sm {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

.subtitle-orange {
    color: var(--cta-orange);
    font-weight: 600;
}

.subtitle-blue-navy {
    color: var(--blue-navy);
    font-weight: 600;
}

/* ===================== CARDS E CONTAINERS ===================== */
.card-white {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.card-white:hover {
    box-shadow: var(--shadow-md);
}

.card-dark {
    background: var(--bg-dark-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--border-dark);
    color: var(--text-light);
}

/* ===================== FUNDO CINZA MÉDIO PARA SEÇÕES ===================== */
.bg-gray-medium {
    background-color: var(--bg-gray-medium);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    color: var(--text-light);
}

.bg-gray-medium .section-title {
    color: var(--text-light);
}

.bg-gray-medium .subtitle {
    color: #d1d5db;
}

.bg-gray-medium .subtitle-orange {
    color: var(--cta-orange) !important;
}

.bg-gray-medium .btn-cta {
    background-color: var(--cta-green);
}

.bg-gray-medium .btn-cta:hover {
    background-color: var(--cta-green-hover);
}

.bg-gray-medium .card-white {
    background-color: var(--bg-gray-medium);
    border-color: #6B7280;
    box-shadow: none;
}

.bg-gray-medium .card-white .section-title {
    color: var(--text-light);
}

.bg-gray-medium .card-white .text-[#4A2C7A] {
    color: #d1d5db !important;
}

.bg-gray-medium .card-white .text-[#1e1e2f] {
    color: #f3f4f6 !important;
}

.bg-gray-medium .card-white .subtitle-orange {
    color: var(--cta-orange) !important;
}

.bg-gray-medium .card-white .bio-text {
    color: #e5e7eb;
}

.bg-gray-medium .card-white .bio-text strong {
    color: var(--cta-gold);
}

.bg-gray-medium .card-white .product-item .subtitle {
    color: #e5e7eb;
}

.bg-gray-medium .card-white .text-sm {
    color: #d1d5db;
}

.bg-gray-medium .card-white .text-xs {
    color: #9CA3AF;
}

.bg-gray-medium .card-white .text-emerald-600 {
    color: #34D399;
}

.bg-gray-medium .card-white .border-gray-200 {
    border-color: #6B7280;
}

.bg-gray-medium .card-white .bg-[#f0f2f5] {
    background-color: var(--bg-converter);
}

.bg-gray-medium .card-white .bg-[#f0f2f5] .result-value {
    color: #34D399;
}

.bg-gray-medium .card-white .bg-[#f0f2f5] input,
.bg-gray-medium .card-white .bg-[#f0f2f5] select {
    background-color: var(--bg-converter);
    color: #f3f4f6;
    border-color: #6B7280;
}

.bg-gray-medium .card-white .bg-[#f0f2f5] input::placeholder {
    color: #9CA3AF;
}

.bg-gray-medium .card-white .bg-[#f0f2f5] .border {
    border-color: #6B7280;
}

.bg-gray-medium .card-white .bg-[#f0f2f5] .divide-y {
    border-color: #6B7280;
}

.bg-gray-medium .card-white .bg-[#f0f2f5] .divide-y .text-[#1e1e2f] {
    color: #f3f4f6 !important;
}

/* ===================== FUNDO CINZA CLARO PARA BANCOS ===================== */
.bg-gray-light {
    background-color: var(--bg-gray-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    color: var(--text-primary);
}

.bg-gray-light .text-[#4A2C7A] {
    color: var(--text-primary) !important;
}

.bg-gray-light .text-[#1e1e2f] {
    color: var(--text-primary) !important;
}

.bg-gray-light .subtitle-orange {
    color: var(--cta-orange) !important;
}

/* ===================== CONVERSOR DE MOEDAS ===================== */
/* ORDEM 18 - CONVERSOR DE MOEDAS (TEMPO REAL) */
.converter-bg {
    background-color: var(--bg-converter);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.text-orange-vivo {
    color: var(--cta-orange);
}

.currency-loading {
    animation: pulse 1.5s ease-in-out infinite;
}

.currency-success {
    color: var(--cta-green);
}

.currency-error {
    color: #EF4444;
}

/* ===================== BIOGRAFIAS ===================== */
/* ORDEM 7 - QUEM SOU EU */
.bio-text {
    font-size: 0.8rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: justify;
    margin-top: 0.5rem;
    padding: 0.75rem;
    max-height: 340px;
    overflow-y: auto;
    scroll-behavior: smooth;
    background: var(--bg-input);
    border-radius: var(--radius);
    border-left: 3px solid var(--cta-orange);
}

.bio-text::-webkit-scrollbar {
    width: 4px;
}

.bio-text::-webkit-scrollbar-thumb {
    background: var(--cta-orange);
    border-radius: 4px;
}

.bio-text::-webkit-scrollbar-track {
    background: transparent;
}

.bio-text strong {
    color: var(--gray-dark);
    font-weight: 700;
}

/* ===================== GRIDS ===================== */
.ebook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1.8rem;
    justify-items: center;
    padding: 0.5rem 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
    gap: 1.5rem;
    justify-items: center;
    padding: 0.5rem 0;
}

/* ===================== ITEM DO PRODUTO ===================== */
.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 185px;
    transition: var(--transition);
}

.product-item .subtitle {
    color: var(--text-secondary);
    font-size: 0.7rem;
    text-align: center;
    margin-top: 0.5rem;
    line-height: 1.3;
    padding: 0 0.2rem;
    font-weight: 500;
    min-height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-item:hover .clickable-img {
    transform: scale(1.06) translateY(-4px);
    border-color: var(--cta-orange);
    box-shadow: var(--shadow-xl);
}

/* ===================== IMAGENS CLICÁVEIS ===================== */
.clickable-img {
    width: 100%;
    max-width: 185px;
    height: 185px;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--bg-input);
    border: 2px solid var(--border-light);
    padding: 4px;
}

.clickable-img:hover {
    transform: scale(1.06) translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--cta-orange);
}

.clickable-img:active {
    transform: scale(0.95);
}

/* ===================== IMAGENS DOS EBOOKS AUMENTADAS EM 50% ===================== */
/* ORDEM 16 - EBOOKS AUMENTADOS EM 50% */
.ebook-img-aumentada {
    width: 100%;
    max-width: 180px !important;
    height: 180px !important;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--bg-input);
    border: 2px solid var(--border-light);
    padding: 4px;
}

.ebook-img-aumentada:hover {
    transform: scale(1.06) translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--cta-orange);
}

.ebook-img-aumentada:active {
    transform: scale(0.95);
}

/* ===================== INVESTIDORES ===================== */
/* ORDEM 44 - MAIORES INVESTIDORES DO MUNDO */
/* ORDEM 45 - MAIORES INVESTIDORES DO BRASIL */
.investor-img {
    width: 100%;
    max-width: 245px;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    margin: 0 auto;
    display: block;
    border: 2px solid var(--border-light);
    padding: 4px;
    aspect-ratio: 1/1;
    object-fit: cover;
    background: var(--bg-input);
}

.investor-img:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--cta-orange);
}

.investor-img:active {
    transform: scale(0.97);
}

/* ===================== CARROSSEL WARREN BUFFETT ===================== */
/* ORDEM 26 - CONSELHOS DE WARREN BUFFETT PARA O INVESTIDOR INICIANTE */
#buffett-carousel {
    background: var(--bg-converter);
    border: 2px solid var(--cta-orange);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    min-height: 300px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

#buffett-carousel::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 6rem;
    color: rgba(249, 115, 22, 0.10);
    font-family: var(--font-display);
    line-height: 1;
}

#buffett-carousel::after {
    content: '"';
    position: absolute;
    bottom: -40px;
    right: 15px;
    font-size: 6rem;
    color: rgba(249, 115, 22, 0.10);
    font-family: var(--font-display);
    line-height: 1;
}

#quote-text {
    transition: opacity 0.5s ease;
    font-family: var(--font-primary);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    text-align: center;
    padding: 0.5rem 1rem;
    position: relative;
    z-index: 1;
}

#buffett-carousel button {
    transition: var(--transition);
    font-weight: 700;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cta-orange);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
}

#buffett-carousel button:hover {
    transform: scale(1.1);
    background: var(--cta-orange-hover);
    box-shadow: 0 8px 20px var(--cta-orange-shadow);
}

#buffett-carousel button:active {
    transform: scale(0.9);
}

/* ===================== CARROSSEL REGRAS DE OURO ===================== */
/* ORDEM 4 - TOP 5 REGRAS DE OURO DO INVESTIDOR INICIANTE */
.regras-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: var(--bg-converter);
    min-height: 250px;
    border: 1px solid #6B7280;
}

.regras-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    will-change: transform;
}

.regras-carousel-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
}

.regras-carousel-slide .regra-titulo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cta-gold);
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
}

.regras-carousel-slide .regra-texto {
    font-size: 0.9rem;
    color: #E0E7FF;
    line-height: 1.6;
    max-width: 90%;
}

.regras-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.75rem;
}

.regras-nav button {
    background: var(--cta-orange);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.regras-nav button:hover {
    background: var(--cta-orange-hover);
    transform: scale(1.05);
}

.regras-nav button:active {
    transform: scale(0.9);
}

.regras-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.regras-carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.regras-carousel-dots button.active {
    background: var(--cta-orange);
    transform: scale(1.2);
}

.regras-carousel-dots button:hover {
    background: var(--cta-orange-hover);
}

/* ===================== CARROSSEL VERDADES ===================== */
/* ORDEM 19 - VERDADES DO MERCADO FINANCEIRO (TRANSFERIDA DA ESQUERDA PARA CENTRAL) */
.verdades-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: var(--bg-input);
    min-height: 300px;
    border: 1px solid var(--border-light);
}

.verdades-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    will-change: transform;
}

.verdades-carousel-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    text-align: center;
}

.verdades-carousel-slide img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.verdades-carousel-slide .frase {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    padding: 0 0.5rem;
}

.verdades-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.verdades-carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.verdades-carousel-dots button.active {
    background: var(--cta-orange);
    transform: scale(1.2);
}

.verdades-carousel-dots button:hover {
    background: var(--cta-orange-hover);
}

.verdades-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.75rem;
}

.verdades-nav button {
    background: var(--cta-orange);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.verdades-nav button:hover {
    background: var(--cta-orange-hover);
    transform: scale(1.05);
}

.verdades-nav button:active {
    transform: scale(0.9);
}

/* ============================================================ */
/* ==================== CARROSSÉIS AUTOMÁTICOS PADRÃO ========== */
/* ============================================================ */
/* ORDEM 37 - CARROSSEL TIGRE (COLUNA ESQUERDA)                */
/* ORDEM 54 - CARROSSEL INC (COLUNA DIREITA)                   */
/* ORDEM 3  - CARROSSEL 03 (COLUNA DIREITA)                   */
/* ============================================================ */

.auto-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: var(--bg-input);
    min-height: auto;
    border: 1px solid var(--border-light);
}

.auto-carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    will-change: transform;
}

.auto-carousel-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.auto-carousel-slide img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.auto-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.auto-carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.auto-carousel-dots button.active {
    background: var(--cta-orange);
    transform: scale(1.2);
}

.auto-carousel-dots button:hover {
    background: var(--cta-orange-hover);
}

/* ===================== BANCOS ===================== */
/* ORDEM 30 - TOP 8 BANCOS DIGITAIS (COLUNA ESQUERDA) */
.bancos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.2rem;
}

.bancos-grid .banco-item {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(156, 163, 175, 0.3);
    font-size: 0.85rem;
    transition: var(--transition);
}

.bancos-grid .banco-item:hover {
    background: var(--bg-hover);
    padding-left: 0.5rem;
    border-radius: 4px;
}

.bancos-grid .banco-item .indice {
    color: var(--cta-green);
    font-weight: 600;
}

/* ===================== CANAIS DE FINANÇAS ===================== */
/* ORDEM 31 - 5 CANAIS DE FINANÇAS (COLUNA ESQUERDA) */
.canal-item {
    background-color: var(--bg-converter);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    border: 1px solid #6B7280;
}

.canal-item:hover {
    transform: scale(1.02);
    background-color: var(--gray-light);
    border-color: var(--cta-orange);
}

.canal-item .canal-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--cta-orange);
    flex-shrink: 0;
    transition: var(--transition);
}

.canal-item:hover .canal-img {
    border-color: var(--cta-gold);
    transform: scale(1.05);
}

.canal-item .canal-nome {
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    flex: 1;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    letter-spacing: 0.5px;
}

/* ===================== TABELA ===================== */
.table-custom {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

.table-custom th {
    background: var(--gray-dark);
    color: var(--text-light);
    font-weight: 600;
    padding: 0.75rem 1rem;
    text-align: left;
}

.table-custom td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
}

.table-custom tr:hover td {
    background: var(--bg-hover);
}

/* ===================== BOTÕES ===================== */
.btn-cta {
    background: var(--cta-orange);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.btn-cta:hover {
    background: var(--cta-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -8px var(--cta-orange-shadow);
}

.btn-cta:active {
    transform: translateY(0);
}

.btn-cta:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-cta-green {
    background: var(--cta-green);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.btn-cta-green:hover {
    background: var(--cta-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -8px var(--cta-green-shadow);
}

.btn-cta-green:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--cta-gold);
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.btn-secondary:hover {
    background: var(--cta-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -8px rgba(251, 191, 36, 0.35);
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-carousel {
    background: var(--cta-orange);
    color: var(--text-light);
    padding: 0.5rem 1.2rem;
    border-radius: 9999px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-carousel:hover {
    background: var(--cta-orange-hover);
    transform: scale(1.05);
    box-shadow: 0 8px 20px -6px var(--cta-orange-shadow);
}

.btn-carousel:active {
    transform: scale(0.95);
}

/* ===================== RESULTADOS DO SIMULADOR ===================== */
/* ORDEM 21 - SIMULADOR DE RENDA FIXA */
.result-value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--cta-green);
}

.result-detail {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ===================== INPUTS ===================== */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: var(--border);
    height: 6px;
    border-radius: 4px;
    outline: none;
    transition: var(--transition);
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--cta-orange);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.5);
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--cta-orange);
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

input[type="number"],
select {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.6rem 1rem;
    color: var(--text-primary);
    transition: var(--transition);
    width: 100%;
    font-family: var(--font-primary);
    font-size: 1rem;
}

input[type="number"]:focus,
select:focus {
    outline: none;
    border-color: var(--cta-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

/* ===================== SEÇÃO MERCADO DE AÇÕES E FIIs ===================== */
/* ORDEM 27 - MERCADO DE AÇÕES E FIIs BRASILEIRO (COLUNA CENTRAL) */
.market-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.market-grid .col {
    background: var(--bg-converter);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #6B7280;
    overflow: visible;
    box-shadow: var(--shadow-sm);
}

.market-grid .col h4 {
    color: var(--cta-orange);
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--gray-medium);
    padding: 0.5rem 0;
    border-radius: 6px;
}

.market-grid .col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
}

.market-grid .col ul li {
    padding: 0.35rem 0.5rem;
    border-bottom: 1px solid rgba(156, 163, 175, 0.25);
    font-size: 0.95rem;
    color: var(--text-light);
    transition: var(--transition);
    display: block;
    width: 100%;
    text-align: center;
}

.market-grid .col ul li a {
    color: #d1d5db;
    text-decoration: none;
    display: block;
    transition: var(--transition);
}

.market-grid .col ul li a:hover {
    color: var(--cta-orange);
}

.market-grid .col ul li:hover {
    background: rgba(249, 115, 22, 0.08);
    border-radius: 4px;
}

.market-grid .col ul li:last-child {
    border-bottom: none;
}

/* ============================================================ */
/* ==================== SEÇÃO MANUAL ========================== */
/* ============================================================ */
/* ORDEM 25 - ADQUIRA OS PRODUTOS DA MANUAL CONTRA A CALVÍCE (COLUNA CENTRAL) */

.manual-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: var(--bg-converter);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #6B7280;
}

.manual-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    will-change: transform;
}

.manual-carousel-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.manual-carousel-slide img {
    width: 100%;
    max-height: 280px;
    object-fit: contain;
    border-radius: 8px;
    user-select: none;
    -webkit-user-drag: none;
}

.manual-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.25rem 0;
}

.manual-carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.manual-carousel-dots button.active {
    background: var(--cta-orange);
    transform: scale(1.25);
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.4);
}

.manual-carousel-dots button:hover {
    background: var(--cta-orange-hover);
    transform: scale(1.1);
}

.manual-carousel-dots button:focus-visible {
    outline: 2px solid var(--cta-orange);
    outline-offset: 2px;
}

.manual-cell-left {
    background: var(--bg-converter);
    border-radius: 12px;
    padding: 0.5rem;
    border: 1px solid #6B7280;
    overflow: hidden;
}

.manual-cell-right {
    background: var(--bg-converter);
    border-radius: 12px;
    padding: 0.5rem;
    border: 1px solid #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.manual-cell-right img {
    width: 100%;
    max-height: 280px;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.manual-cell-right img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px -5px rgba(249, 115, 22, 0.3);
}

.manual-cell-right img:active {
    transform: scale(0.97);
}

/* ============================================================ */
/* ==================== SEÇÃO AFILIADO MERCADO LIVRE ========== */
/* ============================================================ */
/* ORDEM 9 - AFILIADO DO MERCADO LIVRE (COLUNA CENTRAL) */

.afiliado-mercado-livre {
    background: linear-gradient(145deg, #1e1e2f, #2a2a40);
    border-radius: var(--radius-lg);
    border: 1px solid #4A2C7A;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.afiliado-mercado-livre:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.afiliado-mercado-livre .titulo-interno {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cta-gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05em;
    text-align: center;
    padding: 0.75rem 0;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid var(--cta-gold);
    font-family: var(--font-display);
}

.afiliado-mercado-livre .celula-horizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1.5rem;
    gap: 1.5rem;
}

.afiliado-mercado-livre .celula-horizontal .imagem-lado {
    flex: 0 0 auto;
}

.afiliado-mercado-livre .celula-horizontal .imagem-lado img {
    width: 100%;
    max-width: 200px;
    border-radius: var(--radius);
    border: 2px solid var(--cta-gold);
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.afiliado-mercado-livre .celula-horizontal .imagem-lado img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px -8px rgba(252, 211, 77, 0.4);
    border-color: var(--cta-orange);
}

.afiliado-mercado-livre .celula-horizontal .imagem-lado img:active {
    transform: scale(0.95);
}

.afiliado-mercado-livre .celula-horizontal .texto-lado {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.afiliado-mercado-livre .celula-horizontal .texto-lado .frase-principal {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.afiliado-mercado-livre .celula-horizontal .texto-lado .frase-principal .destaque {
    color: var(--cta-gold);
}

.afiliado-mercado-livre .celula-horizontal .texto-lado .subtitulo-frase {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cta-orange);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.03em;
    font-family: var(--font-primary);
}

/* ============================================================ */
/* ==================== SEÇÃO AFILIADO SHOPEE ================== */
/* ============================================================ */
/* ORDEM 17 - AFILIADO DA SHOPEE (COLUNA CENTRAL) */

/* TEXTO DA SHOPEE AUMENTADO EM 8 PONTOS - ORDEM 17 */
.shopee-texto-aumentado {
    font-size: 1.15rem !important;
    line-height: 1.7 !important;
}

@media (max-width: 768px) {
    .shopee-texto-aumentado {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .shopee-texto-aumentado {
        font-size: 0.9rem !important;
    }
}

.shopee-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    justify-items: center;
}

.shopee-product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 140px;
    transition: var(--transition);
}

.shopee-product-item .clickable-img {
    max-width: 120px;
    height: 120px;
}

.shopee-product-item .subtitle {
    font-size: 0.6rem;
    min-height: 1.8rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 0.4rem;
    line-height: 1.3;
    padding: 0 0.1rem;
    font-weight: 500;
}

.shopee-product-item:hover .clickable-img {
    transform: scale(1.06) translateY(-4px);
    border-color: var(--cta-orange);
    box-shadow: var(--shadow-xl);
}

/* ============================================================ */
/* ==================== SEÇÃO ACHADINHOS DA SHOPEE ============ */
/* ============================================================ */
/* ORDEM 61 e 62 - ACHADINHOS DA SHOPEE (COLUNAS ESQUERDA E DIREITA) */

.achadinhos-titulo {
    color: var(--blue-navy) !important; /* Azul Marinho */
}

.achadinhos-sub-laranja {
    color: var(--cta-orange) !important; /* Laranja Vivo */
}

.achadinhos-sub-verde {
    color: var(--green-moss) !important; /* Verde Musgo */
}

/* ============================================================ */
/* ==================== SEÇÃO ENCURTADOR DE LINKS ============= */
/* ============================================================ */
/* ORDEM 43 - UTILIZE AQUI O ENCURTADOR DE LINKS (COLUNA ESQUERDA) */

.shortener-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.shortener-container input {
    width: 100%;
    max-width: 400px;
    padding: 0.75rem;
    border: 2px solid var(--border-light);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: var(--transition);
}

.shortener-container input:focus {
    border-color: var(--cta-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
    outline: none;
}

.shortener-container .shortener-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.shortener-container .shortener-actions button {
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.shortener-container .shortener-actions .btn-shorten {
    background: var(--cta-green);
    color: var(--text-light);
}

.shortener-container .shortener-actions .btn-shorten:hover {
    background: var(--cta-green-hover);
    transform: translateY(-2px);
}

.shortener-container .shortener-actions .btn-copy-short {
    background: #8b5cf6;
    color: var(--text-light);
}

.shortener-container .shortener-actions .btn-copy-short:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

.shortener-container #shortenedUrl {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    color: #3b82f6;
    word-break: break-all;
    text-align: center;
}

/* ============================================================ */
/* ==================== SEÇÃO GERADOR QR CODE ================== */
/* ============================================================ */
/* ORDEM 58 - GERADOR DE QR CODE (COLUNA DIREITA) */

.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.qr-container input {
    width: 100%;
    max-width: 400px;
    padding: 0.75rem;
    border: 2px solid var(--border-light);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: var(--transition);
}

.qr-container input:focus {
    border-color: var(--cta-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
    outline: none;
}

.qr-container .qr-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.qr-container .qr-actions button {
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.qr-container .qr-actions .btn-generate {
    background: var(--cta-green);
    color: var(--text-light);
}

.qr-container .qr-actions .btn-generate:hover {
    background: var(--cta-green-hover);
    transform: translateY(-2px);
}

.qr-container .qr-actions .btn-download {
    background: #3b82f6;
    color: var(--text-light);
}

.qr-container .qr-actions .btn-download:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.qr-container .qr-actions .btn-copy {
    background: #8b5cf6;
    color: var(--text-light);
}

.qr-container .qr-actions .btn-copy:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

.qr-container #qrCode {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.qr-container #qrCode canvas {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

/* ============================================================ */
/* ==================== SEÇÃO AS DUAS MELHORES FORMAS ========== */
/* ============================================================ */
/* ORDEM 49 - AS DUAS MELHORES FORMAS DE GANHAR DINHEIRO COM AÇÕES (COLUNA DIREITA) */

.acoes-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-primary);
    text-align: justify;
}

.acoes-text strong {
    color: var(--gray-dark);
}

.acoes-text .destaque {
    color: var(--cta-orange);
    font-weight: 700;
}

/* ============================================================ */
/* ==================== SEÇÃO MINI DICIONÁRIO ================== */
/* ============================================================ */
/* ORDEM 51 - MINI DICIONÁRIO DO MUNDO FINANCEIRO (COLUNA DIREITA) */

.dicionario-termo {
    display: block;
    margin-bottom: 0.8rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid var(--border-light);
}

.dicionario-termo .termo {
    font-weight: 700;
    color: var(--gray-dark);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.2rem;
}

.dicionario-termo .definicao {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: justify;
    display: block;
}

/* ============================================================ */
/* ==================== SEÇÃO CANAIS DO YOUTUBE ================ */
/* ============================================================ */
/* ORDEM 53 - O YOUTUBE TEM, APROXIMADAMENTE, MAIS DE 14 BILHÕES DE VÍDEOS (COLUNA DIREITA) */

.youtube-item {
    margin-bottom: 1.5rem;
    text-align: center;
}

.youtube-item img {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.youtube-item img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

.youtube-item img:active {
    transform: scale(0.97);
}

.youtube-item .subtitle-video {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 0.5rem;
}

/* ============================================================ */
/* ==================== SEÇÃO INSTRUÇÕES DE IR ================ */
/* ============================================================ */
/* ORDEM 29 - INSTRUÇÕES DE DECLARAÇÃO DE IMPOSTO DE RENDA (COLUNA CENTRAL) */

.ir-section {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.ir-section h2 {
    font-family: var(--font-display);
    color: var(--gray-dark);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.ir-section h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.ir-section p {
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 0.75rem;
}

.ir-section ul {
    list-style: disc;
    padding-left: 1.5rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.ir-section ul li {
    margin-bottom: 0.25rem;
}

.ir-section .highlight-ir {
    background: var(--bg-input);
    border-left: 4px solid var(--cta-green);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.ir-section .highlight-ir strong {
    color: var(--cta-green);
}

/* ============================================================ */
/* ==================== SEÇÃO QUEM SOU EU ====================== */
/* ============================================================ */
/* ORDEM 7 - QUEM SOU EU (COLUNA CENTRAL) */

.quem-sou-eu-texto {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 0.5rem;
    scroll-behavior: smooth;
}

.quem-sou-eu-texto::-webkit-scrollbar {
    width: 4px;
}

.quem-sou-eu-texto::-webkit-scrollbar-thumb {
    background: var(--cta-orange);
    border-radius: 4px;
}

.quem-sou-eu-texto::-webkit-scrollbar-track {
    background: transparent;
}

.quem-sou-eu-texto p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: justify;
    margin-bottom: 0.5rem;
}

/* ============================================================ */
/* ==================== SEÇÃO MAIORES BANCOS BRASILEIROS ======== */
/* ============================================================ */
/* ORDEM 47 - MAIORES BANCOS BRASILEIROS (COLUNA DIREITA) */

.bancos-brasileiros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem 0.8rem;
}

.bancos-brasileiros-grid .banco-item {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(156, 163, 175, 0.2);
    font-size: 0.8rem;
    transition: var(--transition);
}

.bancos-brasileiros-grid .banco-item:hover {
    background: var(--bg-hover);
    padding-left: 0.3rem;
    border-radius: 4px;
}

.bancos-brasileiros-grid .banco-item .indice {
    color: var(--cta-green);
    font-weight: 600;
}

/* ============================================================ */
/* ==================== ANIMAÇÕES ============================== */
/* ============================================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.pulse {
    animation: pulse 1.5s ease-in-out infinite;
}

/* ============================================================ */
/* ==================== SCROLL PERSONALIZADO ================== */
/* ============================================================ */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-input);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--cta-orange);
    border-radius: 4px;
    transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cta-green);
}

/* ============================================================ */
/* ==================== RESPONSIVIDADE ======================== */
/* ============================================================ */

@media (max-width: 1440px) {
    .clickable-img { max-width: 175px; height: 175px; }
    .investor-img { max-width: 220px; }
    .bio-text { max-height: 300px; font-size: 0.75rem; }
    .product-item { max-width: 175px; }
    .product-item .subtitle { font-size: 0.65rem; }
    .manual-carousel-container { min-height: 250px; }
    .manual-carousel-slide img { max-height: 250px; }
    .manual-cell-right { min-height: 250px; }
    .manual-cell-right img { max-height: 250px; }
    .shopee-product-item { max-width: 130px; }
    .shopee-product-item .clickable-img { max-width: 110px; height: 110px; }
}

@media (max-width: 1024px) {
    .ebook-grid { grid-template-columns: repeat(auto-fit, minmax(165px, 1fr)); gap: 1.6rem; }
    .product-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.4rem; }
    .clickable-img { max-width: 170px; height: 170px; }
    .investor-img { max-width: 200px; }
    #buffett-carousel { min-height: 260px; padding: 2rem 1.2rem; }
    #quote-text { font-size: 0.95rem; }
    .bio-text { max-height: 270px; font-size: 0.75rem; }
    .product-item { max-width: 170px; }
    .product-item .subtitle { font-size: 0.65rem; min-height: 2rem; }
    .manual-carousel-container { min-height: 220px; }
    .manual-carousel-slide img { max-height: 220px; }
    .manual-cell-right { min-height: 220px; }
    .manual-cell-right img { max-height: 220px; }
    .shopee-product-item { max-width: 120px; }
    .shopee-product-item .clickable-img { max-width: 100px; height: 100px; }
    .shopee-product-item .subtitle { font-size: 0.55rem; }
    .regras-carousel-container { min-height: 220px; }
    .verdades-carousel-container { min-height: 260px; }
    .auto-carousel-container { min-height: auto; }
    .auto-carousel-slide img { max-height: none; }
}

@media (max-width: 768px) {
    .ebook-grid { grid-template-columns: repeat(auto-fit, minmax(145px, 1fr)); gap: 1.2rem; }
    .product-grid { grid-template-columns: repeat(auto-fit, minmax(135px, 1fr)); gap: 1.2rem; }
    .clickable-img { max-width: 155px; height: 155px; }
    .investor-img { max-width: 180px; }
    .result-value { font-size: 1.6rem; }
    #buffett-carousel { min-height: 240px; padding: 1.5rem 1rem; }
    #quote-text { font-size: 0.85rem; line-height: 1.6; }
    .bancos-grid { grid-template-columns: 1fr; gap: 0.3rem; }
    .bancos-brasileiros-grid { grid-template-columns: 1fr; gap: 0.3rem; }
    .bio-text { max-height: 240px; font-size: 0.7rem; padding: 0.3rem 0.5rem; }
    .section-title { font-size: 1.5rem !important; }
    .product-item { max-width: 155px; }
    .product-item .subtitle { font-size: 0.6rem; min-height: 1.8rem; margin-top: 0.4rem; }
    .market-grid { grid-template-columns: 1fr; gap: 1rem; }
    .market-grid .col ul li { font-size: 0.85rem; padding: 0.3rem 0.4rem; }
    .afiliado-mercado-livre .celula-horizontal {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 1rem;
    }
    .afiliado-mercado-livre .celula-horizontal .imagem-lado img { max-width: 150px; }
    .afiliado-mercado-livre .celula-horizontal .texto-lado .frase-principal { font-size: 1.2rem; }
    .afiliado-mercado-livre .celula-horizontal .texto-lado .subtitulo-frase { font-size: 0.9rem; }
    .afiliado-mercado-livre .titulo-interno { font-size: 1.4rem; padding: 0.5rem 0; }
    .manual-carousel-container { min-height: 200px; }
    .manual-carousel-slide img { max-height: 200px; }
    .manual-cell-right { min-height: 200px; }
    .manual-cell-right img { max-height: 200px; }
    .manual-carousel-dots button { width: 8px; height: 8px; }
    .shopee-product-grid { grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 0.8rem; }
    .shopee-product-item { max-width: 105px; }
    .shopee-product-item .clickable-img { max-width: 90px; height: 90px; }
    .shopee-product-item .subtitle { font-size: 0.5rem; min-height: 1.6rem; }
    .regras-carousel-container { min-height: 200px; }
    .regras-carousel-slide .regra-titulo { font-size: 1rem; }
    .regras-carousel-slide .regra-texto { font-size: 0.8rem; }
    .verdades-carousel-container { min-height: 240px; }
    .verdades-carousel-slide .frase { font-size: 0.9rem; }
    .auto-carousel-container { min-height: auto; }
    .auto-carousel-slide img { max-height: none; }
    .dicionario-termo .termo { font-size: 0.9rem; }
    .dicionario-termo .definicao { font-size: 0.8rem; }
    .quem-sou-eu-texto { max-height: 40vh; }
    .quem-sou-eu-texto p { font-size: 0.85rem; }
    .canal-item .canal-nome { font-size: 0.9rem; }
    .canal-item .canal-img { width: 44px; height: 44px; }
}

@media (max-width: 480px) {
    .ebook-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 1rem; }
    .product-grid { grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 1rem; }
    .clickable-img { max-width: 130px; height: 130px; border-radius: 12px; }
    .investor-img { max-width: 150px; }
    .result-value { font-size: 1.3rem; }
    #buffett-carousel { min-height: 200px; padding: 1rem 0.8rem; }
    #quote-text { font-size: 0.8rem; line-height: 1.5; }
    #buffett-carousel::before, #buffett-carousel::after { font-size: 3rem; }
    #buffett-carousel::before { top: -5px; left: 8px; }
    #buffett-carousel::after { bottom: -20px; right: 8px; }
    .section-title { font-size: 1.2rem !important; }
    .bio-text { max-height: 220px; font-size: 0.65rem; padding: 0.25rem 0.4rem; line-height: 1.5; }
    input[type="number"], select { font-size: 0.9rem; padding: 0.5rem 0.8rem; }
    .btn-cta, .btn-cta-green, .btn-secondary { font-size: 0.9rem; padding: 0.6rem 1rem; }
    .market-grid .col ul li { font-size: 0.8rem; padding: 0.25rem 0.3rem; }
    .market-grid .col h4 { font-size: 0.75rem; }
    .product-item { max-width: 130px; }
    .product-item .subtitle { font-size: 0.55rem; min-height: 1.6rem; margin-top: 0.3rem; padding: 0 0.1rem; }
    .afiliado-mercado-livre .celula-horizontal .imagem-lado img { max-width: 120px; }
    .afiliado-mercado-livre .celula-horizontal .texto-lado .frase-principal { font-size: 1rem; }
    .afiliado-mercado-livre .celula-horizontal .texto-lado .subtitulo-frase { font-size: 0.8rem; }
    .afiliado-mercado-livre .titulo-interno { font-size: 1.1rem; padding: 0.4rem 0; }
    .manual-carousel-container { min-height: 150px; }
    .manual-carousel-slide img { max-height: 150px; }
    .manual-cell-right { min-height: 150px; }
    .manual-cell-right img { max-height: 150px; }
    .manual-carousel-dots button { width: 6px; height: 6px; gap: 0.3rem; }
    .manual-carousel-dots { gap: 0.3rem; margin-top: 0.5rem; }
    .shopee-product-grid { grid-template-columns: repeat(auto-fit, minmax(85px, 1fr)); gap: 0.6rem; }
    .shopee-product-item { max-width: 90px; }
    .shopee-product-item .clickable-img { max-width: 75px; height: 75px; }
    .shopee-product-item .subtitle { font-size: 0.45rem; min-height: 1.4rem; }
    .regras-carousel-container { min-height: 180px; }
    .regras-carousel-slide .regra-titulo { font-size: 0.85rem; }
    .regras-carousel-slide .regra-texto { font-size: 0.7rem; }
    .regras-nav button { width: 32px; height: 32px; font-size: 0.9rem; }
    .verdades-carousel-container { min-height: 200px; }
    .verdades-carousel-slide .frase { font-size: 0.8rem; }
    .verdades-nav button { width: 32px; height: 32px; font-size: 0.9rem; }
    .auto-carousel-container { min-height: auto; }
    .auto-carousel-slide img { max-height: none; }
    .dicionario-termo .termo { font-size: 0.85rem; }
    .dicionario-termo .definicao { font-size: 0.75rem; }
    .quem-sou-eu-texto { max-height: 30vh; }
    .quem-sou-eu-texto p { font-size: 0.8rem; }
    .shortener-container input { font-size: 0.9rem; padding: 0.5rem; }
    .qr-container input { font-size: 0.9rem; padding: 0.5rem; }
    .canal-item .canal-nome { font-size: 0.8rem; }
    .canal-item .canal-img { width: 36px; height: 36px; }
    .canal-item { padding: 0.5rem 0.75rem; }
}

@media (max-width: 360px) {
    .ebook-grid { grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 0.8rem; }
    .product-grid { grid-template-columns: repeat(auto-fit, minmax(95px, 1fr)); gap: 0.8rem; }
    .clickable-img { max-width: 110px; height: 110px; }
    .investor-img { max-width: 130px; }
    .bio-text { max-height: 200px; font-size: 0.6rem; }
    .product-item { max-width: 110px; }
    .product-item .subtitle { font-size: 0.5rem; min-height: 1.4rem; margin-top: 0.25rem; }
    .manual-carousel-container { min-height: 120px; }
    .manual-carousel-slide img { max-height: 120px; }
    .manual-cell-right { min-height: 120px; }
    .manual-cell-right img { max-height: 120px; }
    .shopee-product-item { max-width: 75px; }
    .shopee-product-item .clickable-img { max-width: 65px; height: 65px; }
    .shopee-product-item .subtitle { font-size: 0.4rem; min-height: 1.2rem; }
    .regras-carousel-container { min-height: 160px; }
    .verdades-carousel-container { min-height: 180px; }
    .auto-carousel-container { min-height: auto; }
    .auto-carousel-slide img { max-height: none; }
}

/* ============================================================ */
/* ==================== UTILITÁRIOS =========================== */
/* ============================================================ */

.text-green { color: var(--cta-green); }
.text-orange { color: var(--cta-orange); }
.text-gold { color: var(--cta-gold); }
.text-navy { color: var(--blue-navy); }
.text-muted { color: var(--text-muted); }
.bg-card-gray { background: var(--bg-card); }
.bg-highlight { background: var(--bg-highlight); }
.border-orange { border-color: var(--cta-orange); }
.shadow-glow { box-shadow: 0 0 40px rgba(249, 115, 22, 0.06); }

h2, h3, .section-title { scroll-margin-top: 100px; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
    outline: 2px solid var(--cta-orange);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .manual-carousel-track,
    .regras-carousel-track,
    .verdades-carousel-track,
    .auto-carousel-track {
        transition: none !important;
    }
}

/* ============================================================ */
/* ==================== IMPRESSÃO ============================= */
/* ============================================================ */

@media print {
    .sticky { position: relative !important; }
    .financial-card { break-inside: avoid; box-shadow: none !important; border: 1px solid #333 !important; }
    .clickable-img, .investor-img { max-width: 120px; }
    #buffett-carousel { border: 1px solid #333; box-shadow: none !important; }
    .bio-text { max-height: none !important; overflow: visible !important; }
    body { background: white !important; color: #222 !important; }
    .text-green, .text-orange, .text-gold, .section-title { color: #222 !important; }
    .header-title { color: #222 !important; }
    .product-item .subtitle { color: #222 !important; }
    .manual-carousel-container { min-height: auto !important; border: 1px solid #333 !important; }
    .manual-carousel-slide img { max-height: 180px !important; }
    .manual-cell-right { min-height: auto !important; }
    .manual-cell-right img { max-height: 180px !important; }
    .manual-carousel-dots { display: none !important; }
    .btn-cta, .btn-cta-green, .btn-secondary { background: #333 !important; color: white !important; }
    .regras-carousel-container { min-height: auto !important; border: 1px solid #333 !important; }
    .regras-carousel-dots { display: none !important; }
    .regras-nav { display: none !important; }
    .verdades-carousel-container { min-height: auto !important; border: 1px solid #333 !important; }
    .verdades-carousel-dots { display: none !important; }
    .verdades-nav { display: none !important; }
    .auto-carousel-container { min-height: auto !important; border: 1px solid #333 !important; }
    .auto-carousel-dots { display: none !important; }
    .shopee-product-grid .clickable-img { max-width: 80px !important; height: 80px !important; }
    .quem-sou-eu-texto { max-height: none !important; overflow: visible !important; }
}