/* ============================================================
   Banner: Quer ser parecerista externo?
   Arquivo: parecerista-banner.css
   Fonte externa necessária no <h:head> do template:
   <link href="https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Source+Sans+3:wght@400;600&display=swap" rel="stylesheet" type="text/css" />
   ============================================================ */

.parecerista-banner {
    position: relative;
    display: block;
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(135deg, #c45e0a 0%, #e8800a 55%, #f5a623 100%);
    border-radius: 4px;
    padding: 12px 16px 10px 16px;
    box-shadow: 4px 4px 0 #7a3800, 6px 6px 0 rgba(0, 0, 0, 0.18);
    text-decoration: none;
    cursor: pointer;
    margin-top: 16px;
    margin-bottom: 6px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.parecerista-banner:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #7a3800, 8px 8px 0 rgba(0, 0, 0, 0.18);
    text-decoration: none;
}

.parecerista-banner:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #7a3800;
}

.banner-badge {
    display: none;
}

.banner-eyebrow {
    font-family: 'Source Sans 3', Arial, sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 6px 0;
    padding: 0;
}

.banner-title {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.banner-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    margin: 0 0 10px 0;
}

.banner-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.banner-cta-text {
    font-family: 'Source Sans 3', Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #fff3e0;
    letter-spacing: 0.04em;
}

.banner-arrow {
    background: rgba(255, 255, 255, 0.20);
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s ease;
    font-size: 14px;
    color: #ffffff;
    line-height: 1;
}

.parecerista-banner:hover .banner-arrow {
    background: rgba(255, 255, 255, 0.35);
}