/*
Theme Name: Mito das Ofertas Pro
Author: Mito das Ofertas
Description: Layout focado em reviews de produtos e conversão de afiliados.
Version: 2.0
*/

:root {
    --fundo: #232f3f;
    --fita: #FFD700;
    --branco: #ffffff;
    --card-bg: #2d3949;
    --texto-cor: #e2e8f0;
}

body {
    background-color: var(--fundo);
    color: var(--texto-cor);
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    margin: 0;
    line-height: 1.6;
}

/* Fita de Afiliado */
.top-affiliate-banner {
    background: var(--fita);
    height: 40px;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.top-affiliate-banner img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Header */
.site-header {
    padding: 40px 20px;
    text-align: center;
}

.site-logo {
    font-size: 36px;
    font-weight: 900;
    color: var(--branco);
    text-decoration: none;
    letter-spacing: -1.5px;
}

/* Listagem de Reviews (Index) */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.review-post {
    background: var(--card-bg);
    border-radius: 16px;
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease;
}

.review-post:hover {
    transform: translateY(-5px);
}

.review-thumb {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.review-body {
    padding: 25px;
}

.review-title {
    font-size: 24px;
    margin: 0 0 15px 0;
}

.review-title a {
    color: var(--branco);
    text-decoration: none;
}

.btn-mito {
    background: var(--fita);
    color: #000;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}