/* www/css/dashboard-pro.css */

/* Container que centraliza o form no PC */
.form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.page-title {
    font-size: 28px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: white;
}

.highlight { color: #bc13fe; }

.section-subtitle {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* Botão Voltar Circular */
.back-circle {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    color: white;
}
.back-circle:hover { background: #bc13fe; }

/* Banner de Capa no PC */
.banner-upload {
    width: 100%;
    height: 250px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed rgba(188, 19, 254, 0.3);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #555;
    transition: 0.3s;
}
.banner-upload:hover .placeholder-content { color: #bc13fe; }
.placeholder-content i { font-size: 50px; margin-bottom: 10px; }
.placeholder-content span { font-size: 11px; font-weight: 900; text-transform: uppercase; }

#capa-preview { width: 100%; height: 100%; object-fit: cover; }

/* Inputs Estilo Bento Dark */
.grid-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-bento {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(188, 19, 254, 0.1) !important;
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
}

.input-bento label {
    font-size: 9px;
    font-weight: 900;
    color: #bc13fe;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.input-bento input, .input-bento textarea {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-weight: 600;
    font-size: 15px;
}

/* Botão Salvar */
.btn-save-pro {
    background: #bc13fe;
    color: white;
    padding: 18px 50px;
    border-radius: 15px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(188, 19, 254, 0.2);
    border: none;
}
.btn-save-pro:hover { transform: scale(1.02); }

@media (max-width: 768px) {
    .grid-form { grid-template-columns: 1fr; }
}
/* dashboard-pro.css - DESIGN DOS ELEMENTOS */

/* Títulos e Identidade */
.page-title {
    font-size: 28px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: white;
}
.highlight { color: #bc13fe; }

.section-subtitle {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* Cards de Estatísticas e Bento Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.stat-card, .bento-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(188, 19, 254, 0.1);
    padding: 25px;
    border-radius: 20px;
    transition: 0.3s;
}
.stat-card:hover, .bento-card:hover {
    border-color: #bc13fe;
    transform: translateY(-5px);
}

/* Formulários Estilo Bento */
.grid-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-bento {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(188, 19, 254, 0.1) !important;
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
}

.input-bento label {
    font-size: 9px;
    font-weight: 900;
    color: #bc13fe;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.input-bento input, .input-bento textarea {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-weight: 600;
    font-size: 15px;
}

/* Botões Neon */
.btn-save-pro, .btn-main {
    background: #bc13fe;
    color: white;
    padding: 18px 50px;
    border-radius: 15px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(188, 19, 254, 0.2);
    border: none;
    transition: 0.3s;
}
.btn-save-pro:hover { box-shadow: 0 15px 30px rgba(188, 19, 254, 0.4); transform: scale(1.02); }

@media (max-width: 768px) {
    .grid-form { grid-template-columns: 1fr; }
}
/* --- ESTILO ESPECÍFICO DA VITRINE --- */

/* Grid de Produtos centralizado */
#render-lista-produtos {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
    gap: 20px !important;
    width: 100%;
    margin-top: 20px;
}

/* Card de Produto (Bento Card Dark) */
.bento-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(188, 19, 254, 0.1) !important;
    padding: 20px;
    border-radius: 20px;
    transition: 0.3s ease;
}

.bento-card:hover {
    border-color: #bc13fe;
    box-shadow: 0 10px 30px rgba(188, 19, 254, 0.1);
    transform: translateY(-5px);
}

.bento-card img {
    border-radius: 12px;
    margin-bottom: 10px;
}

.bento-card h4 { 
    color: white !important; 
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 5px;
}

/* --- ESTILOS DE TERMOS E CONDIÇÕES --- */
.terms-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
    width: 100%;
    max-width: 600px;
}

.terms-box:hover { 
    border-color: rgba(188, 19, 254, 0.3); 
}

.terms-box input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: #bc13fe;
    cursor: pointer;
}

.terms-box label {
    font-size: 13px;
    font-weight: 600;
    color: #aaa;
    cursor: pointer;
    line-height: 1.4;
}

/* Estado de bloqueio do botão */
.btn-disabled {
    opacity: 0.2 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    filter: grayscale(1);
}