/*
Theme Name: Gerador de Posts Promocionais
Description: Tema WordPress para geração de posts promocionais com sistema de pagamento PIX e aprovação administrativa
Version: 1.0
Author: Seu Nome
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body { 
    font-family: 'Inter', sans-serif !important; 
    margin: 0 !important;
    padding: 0 !important;
}

.gradient-bg {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
    min-height: 100vh !important;
    padding: 20px !important;
}

.post-preview {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 20px;
    padding: 20px;
    color: white;
    font-weight: 500;
    line-height: 1.4;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.fire-emoji { 
    font-size: 1.2em; 
}

.price-old { 
    text-decoration: line-through; 
    opacity: 0.8;
    font-size: 0.9em;
}

.price-new { 
    font-weight: 700; 
    font-size: 1.1em;
}

.warning-text {
    font-size: 0.85em;
    opacity: 0.9;
    margin-top: 10px;
}

/* Estilos para o painel administrativo */
.admin-panel {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.admin-table th,
.admin-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.admin-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.btn-approve {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 5px;
}

.btn-reject {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
}

.btn-approve:hover {
    background: #218838;
}

.btn-reject:hover {
    background: #c82333;
}

.status-pending {
    color: #ffc107;
    font-weight: 600;
}

.status-approved {
    color: #28a745;
    font-weight: 600;
}

.status-rejected {
    color: #dc3545;
    font-weight: 600;
}

/* Responsividade */
@media (max-width: 768px) {
    .gradient-bg {
        padding: 10px;
    }
    
    .admin-table {
        font-size: 14px;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 8px;
    }
}
