/* ============================================================
   MAA Amazon — DESIGN PREMIUM ESTILO GUIA (v1.5.0)
   Inspirado em guiaomelhor.com.br
   ============================================================ */

:root {
    --amazon-yellow: #FFD814;
    --amazon-yellow-hover: #F7CA00;
    --amazon-orange: #FF9900;
    --amazon-orange-hover: #e68a00;
    --text-dark: #1a1a1a;
    --text-medium: #444;
    --text-light: #666;
    --bg-white: #ffffff;
    --bg-light: #f9f9f9;
    --bg-carousel: #FFF0EB;
    --border-color: #e8e8e8;
    --green-main: #2e7d32;
    --green-bg: #f0faf0;
    --green-bullet: #4CAF50;
    --red-main: #c62828;
    --red-bg: #fff5f5;
    --red-bullet: #ef5350;
    --badge-orange: #FF6B00;
    --badge-green: #1B8A3C;
    --badge-blue: #1565C0;
    --shadow-sm: 0 1px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

/* ============================================================
   CONTAINER GERAL
   ============================================================ */
.maa-amazon-article-wrap {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    max-width: 860px;
    margin: 0 auto;
    font-size: 16px;
}

.maa-amazon-article-wrap h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 24px 0;
    line-height: 1.3;
}

.maa-amazon-article-wrap h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 28px 0 16px 0;
    line-height: 1.3;
}

.maa-amazon-article-wrap h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 20px 0 12px 0;
}

.maa-amazon-article-wrap p {
    font-size: 16px;
    margin: 0 0 16px 0;
}

/* ============================================================
   CARROSSEL DE PRODUTOS EM DESTAQUE
   ============================================================ */
.maa-featured-section {
    margin: 30px 0 40px 0;
}

.maa-featured-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 18px 0;
    padding: 0;
}

.maa-carousel-wrapper {
    background: var(--bg-carousel);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    position: relative;
    overflow: hidden;
}

.maa-carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 2px;
}

.maa-carousel-track::-webkit-scrollbar { display: none; }

.maa-carousel-item {
    flex: 0 0 200px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 16px 12px 14px 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.maa-carousel-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.maa-carousel-item-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.maa-verified-icon {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

.maa-carousel-img-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
}

.maa-carousel-img-wrap img {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
}

.maa-carousel-item-title {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 12px;
    text-decoration: none;
}

.maa-carousel-item-title:hover { color: var(--amazon-orange); }

.maa-carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--amazon-yellow);
    color: var(--text-dark) !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 13px;
    padding: 9px 14px;
    border-radius: var(--radius-sm);
    width: 100%;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}

.maa-carousel-btn:hover { background: var(--amazon-yellow-hover); }

.maa-carousel-btn .maa-amazon-logo {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Navegação do carrossel */
.maa-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.maa-carousel-nav button {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    box-shadow: var(--shadow-sm);
}

.maa-carousel-nav button:hover {
    background: var(--amazon-orange);
    color: #fff;
    border-color: var(--amazon-orange);
}

/* ============================================================
   ÍNDICE DO ARTIGO
   ============================================================ */
.maa-toc {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin: 30px 0;
    overflow: hidden;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.maa-toc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    background: var(--bg-white);
    border: none;
    width: 100%;
    text-align: left;
}

.maa-toc-header:hover { background: var(--bg-light); }

.maa-toc-chevron {
    transition: transform 0.3s;
    font-size: 14px;
    color: var(--text-light);
}

.maa-toc.open .maa-toc-chevron { transform: rotate(180deg); }

.maa-toc-body {
    display: none;
    padding: 0 20px 16px 20px;
    border-top: 1px solid var(--border-color);
}

.maa-toc.open .maa-toc-body { display: block; }

.maa-toc-body ol {
    margin: 12px 0 0 0;
    padding-left: 20px;
}

.maa-toc-body li {
    margin-bottom: 8px;
    font-size: 15px;
}

.maa-toc-body a {
    color: var(--amazon-orange);
    text-decoration: none;
    font-weight: 500;
}

.maa-toc-body a:hover { text-decoration: underline; }

/* ============================================================
   CARD DE PRODUTO INDIVIDUAL (LISTA NUMERADA)
   ============================================================ */
.maa-product-list {
    margin: 40px 0;
}

.maa-product-entry {
    margin-bottom: 50px;
}

/* Título numerado com barra laranja */
.maa-product-entry-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 18px 0;
    padding: 0;
    line-height: 1.3;
}

.maa-product-entry-title::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 28px;
    background: var(--amazon-orange);
    border-radius: 3px;
    flex-shrink: 0;
}

/* Card principal do produto */
.maa-product-card-v2 {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    position: relative;
}

/* Badge de destaque (canto superior direito) */
.maa-product-badge-top {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.maa-badge-best { background: var(--badge-orange); color: #fff; }
.maa-badge-choice { background: var(--badge-green); color: #fff; }
.maa-badge-value { background: var(--badge-blue); color: #fff; }
.maa-badge-premium { background: #6A1B9A; color: #fff; }

/* Conteúdo interno do card */
.maa-card-v2-inner {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 200px;
}

.maa-card-v2-image-col {
    background: #fafafa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
        padding: 50px 16px 16px 16px;
    border-right: 1px solid var(--border-color);
    gap: 10px;
}

.maa-card-v2-image-col img {
    max-width: 160px;
    max-height: 160px;
    object-fit: contain;
}

.maa-card-v2-source {
    font-size: 11px;
    color: var(--text-light);
    text-decoration: none;
}

.maa-card-v2-source:hover { color: var(--amazon-orange); }

/* Badge "Recomendado" pequeno */
.maa-recommended-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #E8F5E9;
    color: var(--green-main);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #C8E6C9;
}

.maa-card-v2-info-col {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.maa-card-v2-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.maa-card-v2-updated {
    font-size: 11px;
    color: var(--text-light);
}

.maa-card-v2-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    line-height: 1.35;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.maa-card-v2-title:hover { color: var(--amazon-orange); }

.maa-card-v2-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.5;
}

.maa-card-v2-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

/* Botão principal Amazon */
.maa-btn-amazon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--amazon-yellow);
    color: var(--text-dark) !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    transition: background 0.2s, box-shadow 0.2s;
    border: 1px solid #d4a017;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    white-space: nowrap;
}

.maa-btn-amazon:hover {
    background: var(--amazon-yellow-hover);
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.maa-btn-amazon .maa-amazon-logo {
    width: 22px;
    height: 22px;
}

/* Botão secundário "Ver Comentários" */
.maa-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-white);
    color: var(--text-medium) !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
    padding: 11px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.maa-btn-secondary:hover {
    background: var(--bg-light);
    border-color: #ccc;
}

/* ============================================================
   ANÁLISE TEXTUAL DO PRODUTO
   ============================================================ */
.maa-product-analysis {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.75;
    margin-bottom: 24px;
}

.maa-product-analysis p {
    margin: 0 0 16px 0;
}

/* ============================================================
   PRÓS E CONTRAS (DOIS BOXES LADO A LADO)
   ============================================================ */
.maa-pros-cons-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0 40px 0;
}

.maa-pros-box,
.maa-cons-box {
    border-radius: var(--radius-md);
    padding: 20px 22px;
}

.maa-pros-box {
    background: var(--green-bg);
    border: 1px solid #C8E6C9;
}

.maa-cons-box {
    background: var(--red-bg);
    border: 1px solid #FFCDD2;
}

.maa-pros-cons-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 16px;
}

.maa-pros-box .maa-pros-cons-header { color: var(--green-main); }
.maa-cons-box .maa-pros-cons-header { color: var(--red-main); }

.maa-pros-cons-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    flex-shrink: 0;
}

.maa-pros-box .maa-pros-cons-icon {
    background: var(--green-bullet);
    color: #fff;
}

.maa-cons-box .maa-pros-cons-icon {
    background: var(--red-bullet);
    color: #fff;
}

.maa-pros-cons-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.maa-pros-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-medium);
}

.maa-pros-cons-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}

.maa-pros-box .maa-pros-cons-list li::before { background: var(--green-bullet); }
.maa-cons-box .maa-pros-cons-list li::before { background: var(--red-bullet); }

/* ============================================================
   TABELA COMPARATIVA
   ============================================================ */
.maa-comparison-section {
    margin: 40px 0;
}

.maa-comparison-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

.maa-comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.maa-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    min-width: 520px;
    font-size: 14px;
}

.maa-comparison-table thead tr {
    background: #f5f5f5;
}

.maa-comparison-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 700;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.maa-comparison-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
    color: var(--text-medium);
}

.maa-comparison-table tbody tr:last-child td { border-bottom: none; }

.maa-comparison-table tbody tr:hover { background: #fafafa; }

.maa-table-product-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.maa-table-product-cell img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 4px;
    background: #f5f5f5;
    padding: 2px;
    flex-shrink: 0;
}

.maa-table-product-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 13px;
    line-height: 1.4;
}

.maa-table-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.maa-table-badge.best { background: #FFF3E0; color: #E65100; }
.maa-table-badge.choice { background: #E8F5E9; color: #2E7D32; }
.maa-table-badge.value { background: #E3F2FD; color: #1565C0; }
.maa-table-badge.premium { background: #F3E5F5; color: #6A1B9A; }

.maa-table-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--amazon-yellow);
    color: var(--text-dark) !important;
    text-decoration: none !important;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    transition: background 0.2s;
    white-space: nowrap;
}

.maa-table-btn:hover { background: var(--amazon-yellow-hover); }

/* ============================================================
   CARD MELHOR ESCOLHA (DESTAQUE ESPECIAL)
   ============================================================ */
.maa-best-product-card {
    border: 2px solid var(--amazon-orange);
    border-radius: var(--radius-md);
    margin: 30px 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.maa-best-badge {
    background: var(--amazon-orange);
    color: #fff;
    padding: 12px 20px;
    font-weight: 800;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.maa-best-content {
    display: grid;
    grid-template-columns: 240px 1fr;
    padding: 28px;
    gap: 28px;
    align-items: center;
}

.maa-best-image {
    text-align: center;
    background: #fafafa;
    border-radius: var(--radius-sm);
    padding: 16px;
}

.maa-best-image img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}

.maa-best-info h3 {
    margin: 0 0 12px 0;
    font-size: 22px;
    color: var(--text-dark);
    line-height: 1.3;
    font-weight: 700;
}

.maa-best-info p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ============================================================
   SVG LOGO AMAZON (inline)
   ============================================================ */
.maa-amazon-logo-svg {
    display: inline-block;
    vertical-align: middle;
}

/* ============================================================
   RESPONSIVIDADE MOBILE
   ============================================================ */
@media (max-width: 768px) {
    .maa-card-v2-inner {
        grid-template-columns: 1fr;
        position: relative;
    }

    .maa-product-badge-top {
        top: 10px;
        right: 10px;
        padding: 5px 12px;
        font-size: 10px;
        z-index: 20;
    }

    .maa-card-v2-image-col {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 60px 16px 16px 16px;
    }

    .maa-card-v2-image-col img {
        max-width: 140px;
        max-height: 140px;
    }

    .maa-card-v2-info-col {
        padding: 16px;
    }

    .maa-card-v2-title {
        font-size: 17px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .maa-card-v2-subtitle {
        font-size: 15px;
        margin-bottom: 14px;
        line-height: 1.5;
    }

    .maa-card-v2-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        margin-bottom: 8px;
    }

    .maa-card-v2-updated {
        font-size: 10px;
    }

    .maa-pros-cons-v2 {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .maa-pros-box,
    .maa-cons-box {
        padding: 16px 14px;
    }

    .maa-pros-cons-header {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .maa-pros-cons-list li {
        font-size: 14px;
        line-height: 1.5;
    }

    .maa-best-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px;
    }

    .maa-best-info h3 { font-size: 18px; }

    .maa-carousel-item { flex: 0 0 160px; }

    .maa-carousel-img-wrap {
        width: 90px;
        height: 90px;
    }

    .maa-carousel-img-wrap img {
        max-width: 75px;
        max-height: 75px;
    }

    .maa-carousel-item-title {
        font-size: 12px;
        height: 36px;
    }

    .maa-carousel-btn {
        font-size: 12px;
        padding: 8px 10px;
    }

    .maa-product-entry-title { 
        font-size: 16px;
        gap: 8px;
    }

    .maa-product-entry-title::before {
        width: 4px;
        height: 22px;
    }

    .maa-btn-amazon { 
        width: 100%; 
        justify-content: center;
        font-size: 14px;
        padding: 11px 16px;
    }

    .maa-btn-secondary { 
        width: 100%; 
        justify-content: center;
        font-size: 13px;
        padding: 10px 14px;
    }

    .maa-card-v2-actions { 
        flex-direction: column;
        gap: 8px;
    }

    .maa-product-analysis {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 18px;
    }

    .maa-product-analysis p {
        margin: 0 0 14px 0;
    }

    .maa-comparison-table {
        font-size: 12px;
    }

    .maa-comparison-table th,
    .maa-comparison-table td {
        padding: 10px 12px;
    }

    .maa-table-product-cell {
        flex-direction: column;
        gap: 8px;
    }

    .maa-table-product-cell img {
        width: 40px;
        height: 40px;
    }

    .maa-table-product-name {
        font-size: 12px;
    }
}

/* ============================================================
   ADMIN UI — PAINEL DO METABOX
   ============================================================ */
.maa-amazon-section { padding: 10px 0; }

.maa-amazon-thumb {
    width: 120px;
    border: 2px solid #ddd;
    padding: 10px;
    cursor: pointer;
    position: relative;
    border-radius: 8px;
    background: #fff;
    transition: all 0.2s;
    text-align: center;
}

.maa-amazon-thumb.selected {
    border-color: #0073aa;
    background: #f0f6fb;
}

.maa-amazon-thumb .check {
    display: none;
    position: absolute;
    top: -8px;
    right: -8px;
    background: #0073aa;
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    font-weight: bold;
    z-index: 10;
}

.maa-amazon-thumb.selected .check { display: block; }
.maa-amazon-thumb img { width: 100%; height: 100px; object-fit: contain; }
.maa-amazon-thumb .title { font-size: 11px; height: 28px; overflow: hidden; margin-top: 8px; line-height: 1.2; color: #333; }

/* ============================================================
   FAQ - PERGUNTAS FREQUENTES
   ============================================================ */
.maa-amazon-article-wrap h2:contains("Perguntas Frequentes"),
.maa-amazon-article-wrap h2:has(+ h3),
.maa-amazon-article-wrap h2 {
    /* Estilo padrão já definido, mas garantindo espaçamento */
}

.maa-faq-section {
    margin: 40px 0;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.maa-faq-section h2 {
    margin: 0 !important;
    padding: 20px 25px;
    background: #fafafa;
    border-bottom: 1px solid var(--border-color);
    font-size: 20px !important;
}

.maa-faq-item {
    border-bottom: 1px solid var(--border-color);
}

.maa-faq-item:last-child {
    border-bottom: none;
}

.maa-faq-question {
    width: 100%;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    background: #fff;
    transition: background 0.2s;
    user-select: none;
}

.maa-faq-question:hover {
    background: #f9f9f9;
}

.maa-faq-question::after {
    content: "▼";
    font-size: 12px;
    color: var(--text-light);
    transition: transform 0.3s;
}

.maa-faq-item.open .maa-faq-question::after {
    transform: rotate(180deg);
}

.maa-faq-answer {
    display: none;
    padding: 0 25px 20px 25px;
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    background: #fff;
}

.maa-faq-answer a {
    color: var(--amazon-orange);
    text-decoration: none;
    font-weight: 600;
}

.maa-faq-answer a:hover {
    text-decoration: underline;
}

.maa-faq-item.open .maa-faq-answer {
    display: block;
}

/* --- Tabela de Especificações (Novo) --- */
.maa-specs-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin: 20px 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.maa-specs-header {
    background: #f8f9fa;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.maa-specs-icon {
    font-size: 18px;
}

.maa-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.maa-specs-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.maa-specs-table tr:last-child {
    border-bottom: none;
}

.maa-specs-table th {
    width: 40%;
    text-align: left;
    padding: 12px 20px;
    background: #fafafa;
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

.maa-specs-table td {
    padding: 12px 20px;
    color: #333;
    font-size: 14px;
}

@media (max-width: 600px) {
    .maa-specs-table th {
        width: 50%;
        padding: 10px 15px;
    }
    .maa-specs-table td {
        padding: 10px 15px;
    }
}

/* ============================================================
   BOX DE INFORMATIVO (LINKAGEM INTERNA)
   ============================================================ */
.maa-info-box {
    background: #f0f7ff;
    border-left: 5px solid #2196F3;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 15px;
}

.maa-info-box strong {
    color: #0d47a1;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

.maa-info-box a {
    color: #1565C0;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.4;
}

.maa-info-box a:hover {
    text-decoration: underline;
    color: #0d47a1;
}

/* Responsividade para o card v2 */
@media (max-width: 600px) {
    .maa-card-v2-inner {
        grid-template-columns: 1fr;
    }
    .maa-card-v2-image-col {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 40px 20px 20px 20px;
    }
}

/* ============================================================
   CARD ÚNICO DE DESTAQUE (SINGLE HIGHLIGHT)
   ============================================================ */
.maa-single-highlight-card {
    transition: transform 0.3s ease;
}

.maa-single-highlight-card:hover {
    transform: translateY(-5px);
}

.maa-single-highlight-card .maa-btn-amazon {
    background: #FF9900 !important;
    border: none !important;
    color: #fff !important;
}

.maa-single-highlight-card .maa-btn-amazon:hover {
    background: #e68a00 !important;
}


/* ============================================================
   PLACEHOLDER DE IMAGEM CLICKBANK (NOVA FUNCIONALIDADE)
   ============================================================ */
.maa-cb-image-placeholder {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.maa-cb-image-placeholder a {
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.maa-cb-image-placeholder a:hover {
    color: #005a87;
    text-decoration: underline;
}

/* Garantir que imagens do card ClickBank sejam redimensionadas corretamente */
.maa-card-v2-image-col img {
    max-width: 160px !important;
    max-height: 160px !important;
    object-fit: contain !important;
    width: auto !important;
    height: auto !important;
}

/* Responsividade para placeholder */
@media (max-width: 768px) {
    .maa-cb-image-placeholder {
        height: 180px !important;
    }
    
    .maa-cb-image-placeholder span:first-child {
        font-size: 40px;
    }
}
