/* ═══════════════════════════════════════════════
   Card Escolha as Opções
   ═══════════════════════════════════════════════ */

.ceo-wrap {
    --ceo-btn-bg:       #1e2939;
    --ceo-btn-bg-hover: #0f172a;
    --ceo-btn-color:    #ffffff;

    max-width: 600px;
    margin: 64px auto;
    padding: 32px 28px;
    background: var(--ceo-wrap-bg, #ffffff);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--ceo-text, #111827);
    box-sizing: border-box;
}

.ceo-wrap .ceo-title {
    font-size: 48px !important;
    margin-top: 20px !important;
    margin-bottom: 10px !important;
    font-weight: 900;
    letter-spacing: 4px;
    margin: 0 0 20px;
    padding: 0;
    color: var(--ceo-text, #111827);
    line-height: 1.2;
}

.ceo-wrap .ceo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 16px;
    border: 1.5px solid var(--ceo-badge-text, var(--ceo-text, #111827));
    border-radius: 999px;
    color: var(--ceo-badge-text, var(--ceo-text, #111827));
    margin-bottom: 24px;
}

.ceo-wrap .ceo-highlight {
    font-size: 1.5rem !important;
    font-weight: 800;
    margin: 0 0 24px;
    line-height: 1.3;
    color: var(--ceo-text, #111827);
}

.ceo-wrap .ceo-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 16px;
}

.ceo-wrap .ceo-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    background-color: var(--ceo-btn-bg);
    color: var(--ceo-btn-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 20px;
    border-radius: 999px;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    box-sizing: border-box;
    animation: ceo-heartbeat 2.6s ease-in-out infinite;
}

.ceo-wrap .ceo-btn:hover,
.ceo-wrap .ceo-btn:focus-visible {
    background-color: var(--ceo-btn-bg-hover);
    color: var(--ceo-btn-color);
    text-decoration: none;
    opacity: 0.92;
}

/* Animação de pulsação lenta (estilo "heartbeat"), igual ao card-imagem-cta */
@keyframes ceo-heartbeat {
    0%   { transform: scale(1); }
    15%  { transform: scale(1.045); }
    30%  { transform: scale(1); }
    45%  { transform: scale(1.045); }
    60%  { transform: scale(1); }
    100% { transform: scale(1); }
}

.ceo-wrap .ceo-btn__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    line-height: 1;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.ceo-wrap .ceo-btn__text {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
}

.ceo-wrap .ceo-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #eff6ff;
    color: #475569;
    font-size: 0.78rem;
    padding: 10px 14px;
    border-radius: 10px;
    box-sizing: border-box;
    margin-bottom: 24px;
}

.ceo-wrap .ceo-notice__icon {
    font-size: 0.85rem;
    line-height: 1;
    flex-shrink: 0;
}

.ceo-wrap .ceo-divider {
    width: 100%;
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 0 0 16px;
}

.ceo-wrap .ceo-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.ceo-wrap .ceo-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #94a3b8;
    margin: 0;
}

.ceo-wrap .ceo-rating__text {
    color: var(--ceo-text, #94a3b8);
}

.ceo-wrap .ceo-stars {
    position: relative;
    display: inline-block;
    font-size: 0.7rem;
    line-height: 1;
}

.ceo-wrap .ceo-stars__empty {
    color: #d1d5db;
}

.ceo-wrap .ceo-stars__filled {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #f59e0b;
}

.ceo-wrap .ceo-copyright {
    font-size: 0.72rem;
    color: #cbd5e1;
    margin: 0;
}

.ceo-wrap .entry-content img { border: none !important; }

/* ── Mobile ── */
@media (max-width: 767px) {
    .ceo-wrap {
        max-width: 100%;
        margin: 32px auto;
        padding: 28px 20px;
        border-radius: 16px;
    }
    .ceo-wrap .ceo-title { font-size: 36px !important; letter-spacing: 3px; }
    .ceo-wrap .ceo-highlight { font-size: 1.3rem !important; }
}
