/* ============================================
   Campanha - Sorteios e Premios
   ============================================ */

.camp-page {
    min-height: 100vh;
    padding-bottom: 100px;
    position: relative;
    overflow-x: hidden;
}

.camp-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    pointer-events: none;
    object-fit: cover;
}

/* Loading */
.camp-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.camp-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(10, 46, 26, 0.3);
    border-top-color: #0a2e1a;
    border-radius: 50%;
    animation: campSpin 0.8s linear infinite;
}

@keyframes campSpin {
    to { transform: rotate(360deg); }
}

.camp-loading-text {
    color: rgba(10, 46, 26, 0.6);
    font-size: 14px;
}

/* Error */
.camp-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    gap: 16px;
    padding: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.camp-error p {
    color: rgba(10, 46, 26, 0.7);
    font-size: 16px;
}

/* Content */
.camp-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 17% 24px 0;
}

/* Title */
.camp-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #0a2e1a;
    margin: 24px 0 24px;
}

/* Campaign Info Card */
.camp-info-card {
    background: #fff;
    border: 2px solid #ffd401;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    margin-bottom: 30px;
}

.camp-info-icon {
    font-size: 36px;
    color: #ffd401;
}

.camp-info-title {
    font-size: 20px;
    font-weight: 700;
    color: #0a2e1a;
    margin-top: 4px;
}

.camp-info-value {
    font-size: 14px;
    font-weight: 700;
    color: #1a3a8a;
    margin-top: 16px;
}

.camp-info-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.camp-info-list li {
    font-size: 14px;
    color: #000;
    padding: 2px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.camp-info-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #000;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Section */
.camp-section {
    margin-bottom: 24px;
}

.camp-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 700;
    color: #0a2e1a;
}

.camp-section-header i {
    font-size: 20px;
}

/* Empty card */
.camp-empty-card {
    background: #fff;
    border: 2px solid #ffd401;
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 14px;
    color: #0a2e1a;
    text-align: center;
}

/* Draw Card */
.camp-draw-card {
    background: #1a3a8a;
    border: 2px solid #42A5F5;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
}

.camp-draw-tag {
    display: inline-block;
    background: #fff;
    color: #1a3a8a;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 9999px;
    text-transform: uppercase;
}

.camp-draw-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 8px 0;
}

.camp-draw-desc {
    font-size: 14px;
    color: #fff;
    margin: 0 0 16px;
}

.camp-draw-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #ffd401;
}

.camp-draw-date i {
    font-size: 14px;
}

/* Prizes list */
.camp-draw-prizes-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 16px 0 8px;
}

.camp-draw-prize-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 4px;
    font-size: 12px;
    color: #fff;
}

.camp-draw-prize-dot {
    width: 4px;
    height: 4px;
    background: #ffd401;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

/* Footer stats */
.camp-draw-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

/* Pagination */
.camp-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0 24px;
}

.camp-page-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #1457AA;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.camp-page-btn:hover:not(:disabled) {
    background: #1866c4;
}

.camp-page-btn:disabled {
    background: rgba(20,87,170,0.3);
    color: rgba(255,255,255,0.5);
    cursor: default;
}

.camp-page-info {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

/* Actions */
.camp-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
    padding-bottom: 24px;
}

.camp-actions .vlp-btn {
    box-shadow: none;
    border: none;
}

/* Buttons */
.camp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.camp-btn-primary {
    background: #0a2e1a;
    color: #ffd401;
}

.camp-btn-primary:hover {
    background: #0d3a22;
}

.camp-btn-white {
    background: #fff;
    color: #0a2e1a;
}

.camp-btn-white:hover {
    background: #f5f5f5;
    color: #0a2e1a;
}

img {
    margin-left: 5%;
}

/* Responsive */
@media (max-width: 480px) {
    img {
        margin-left: -8%;
    }
}
