/* ===============================
   CONTAINER PRINCIPAL
================================ */
.cdp-caixa {
    border: 2px solid #cfa94a;
    background: #fff8e7;
    padding: 20px;
    max-width: 520px;           /* largura ideal para cards */
    margin: 40px auto;
    text-align: center;
    transition: all 0.6s ease;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ANIMAÇÃO AO SORTEAR */
.cdp-caixa.abrindo {
    transform: scale(0.95) rotateX(10deg);
    opacity: 0.6;
}

/* ===============================
   IMAGEM DESTACADA (RETANGULAR)
================================ */
.cdp-caixa img {
    width: 100%;
    height: 220px;              /* 🔥 deixa retangular */
    object-fit: cover;          /* corta sem distorcer */
    border-radius: 10px;
    margin-bottom: 15px;
}

/* ===============================
   TÍTULO
================================ */
.cdp-titulo {
    font-size: 22px;
    color: #7a4a00;
    margin-bottom: 10px;
    font-weight: 700;
}

/* ===============================
   TEXTO DA PROMESSA
================================ */
.cdp-texto {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

/* ===============================
   BOTÃO
================================ */
.cdp-btn {
    background: linear-gradient(135deg, #cfa94a, #b08a2e);
    color: #fff;
    border: none;
    padding: 12px 26px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cdp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* ===============================
   RESPONSIVO
================================ */
@media (max-width: 600px) {
    .cdp-caixa {
        max-width: 100%;
        margin: 20px auto;
    }

    .cdp-caixa img {
        height: 180px;
    }
}
