/* Importar fonte Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Reset e variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #5B8DEF;
    --secondary-blue: #4A7FDB;
    --success-green: #4CAF50;
    --light-green: #68D391;
    --warning-orange: #FF9F43;
    --danger-red: #EF4444;
    --light-gray: #F7F9FC;
    --medium-gray: #E5E7EB;
    --dark-gray: #6B7280;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-gray);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Container principal */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Botão do menu mobile */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1001;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    font-size: 20px;
}

.mobile-menu-btn:hover {
    background: var(--secondary-blue);
}

/* Layout com sidebar */
.layout {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 260px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    padding-bottom: 70px; /* espaço para sidebar-user no rodapé */
}

.sidebar-logo {
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid var(--medium-gray);
}

.sidebar-logo h1 {
    font-size: 24px;
    color: var(--primary-blue);
    font-weight: 700;
}

.sidebar-logo small {
    font-size: 12px;
    color: var(--text-secondary);
    display: block;
    margin-top: 5px;
}

.sidebar-menu {
    padding: 20px 0;
}

.menu-item {
    display: block;
    padding: 12px 20px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.menu-item:hover,
.menu-item.active {
    background-color: var(--light-gray);
    color: var(--primary-blue);
    border-left: 3px solid var(--primary-blue);
}

.menu-item i {
    margin-right: 10px;
    width: 20px;
    display: inline-block;
}

.main-content {
    flex: 1;
    margin-left: 260px;
    padding: 30px;
}

/* Header da página */
.page-header {
    background: var(--white);
    padding: 25px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-header h1 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 25px;
    margin-bottom: 20px;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

/* Dashboard cards */
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.dashboard-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.dashboard-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
}

.dashboard-card-icon.blue {
    background: rgba(91, 141, 239, 0.1);
    color: var(--primary-blue);
}

.dashboard-card-icon.green {
    background: rgba(76, 175, 80, 0.1);
    color: var(--success-green);
}

.dashboard-card-icon.orange {
    background: rgba(255, 159, 67, 0.1);
    color: var(--warning-orange);
}

.dashboard-card-title {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.dashboard-card-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Botões */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-success {
    background: var(--success-green);
    color: var(--white);
}

.btn-success:hover {
    background: #45A049;
}

.btn-danger {
    background: var(--danger-red);
    color: var(--white);
}

.btn-danger:hover {
    background: #DC2626;
}

.btn-secondary {
    background: var(--white);
    color: var(--text-primary);
    border: 1px solid var(--medium-gray);
}

.btn-secondary:hover {
    background: var(--light-gray);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

.btn-icon {
    padding: 8px 12px;
}

/* Formulários */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-label.required:after {
    content: " *";
    color: var(--danger-red);
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(91, 141, 239, 0.1);
}

.form-control.error {
    border-color: var(--danger-red);
}

select.form-control {
    cursor: pointer;
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

/* Tabelas */
.table-responsive {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.table thead {
    background: var(--light-gray);
}

.table th,
.table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--medium-gray);
    font-size: 14px;
}

.table th {
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-size: 12px;
}

.table tbody tr:hover {
    background: var(--light-gray);
}

.table-actions {
    display: flex;
    gap: 8px;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.badge-rascunho {
    background: rgba(107, 114, 128, 0.1);
    color: var(--dark-gray);
}

.badge-enviado {
    background: rgba(91, 141, 239, 0.1);
    color: var(--primary-blue);
}

.badge-aprovado {
    background: rgba(76, 175, 80, 0.1);
    color: var(--success-green);
}

.badge-reprovado {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-red);
}

/* Alertas */
.alert {
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background: rgba(76, 175, 80, 0.1);
    color: var(--success-green);
    border-left: 4px solid var(--success-green);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-red);
    border-left: 4px solid var(--danger-red);
}

/* Login/Registro */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.auth-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    width: 100%;
    max-width: 450px;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h1 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.auth-header p {
    color: var(--text-secondary);
    font-size: 14px;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

.auth-footer a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Proposta Pública */
.public-container {
    min-height: 100vh;
    background: var(--light-gray);
    padding: 40px 20px;
}

.public-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.public-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 40px;
    text-align: center;
}

.public-content {
    padding: 40px;
}

.public-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

/* Filtros */
.filters {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.filters-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    align-items: end;
}

/* Gráfico */
.chart-container {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

/* Lista de itens da proposta */
.proposta-itens {
    margin-top: 30px;
}

.proposta-item {
    background: var(--light-gray);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Responsivo */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }
    
    .sidebar.aberta {
        transform: translateX(0);
    }
    
    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .sidebar-overlay.visivel {
        display: block;
    }
    
    .main-content {
        margin-left: 0;
        padding: 70px 15px 15px 15px;
    }
    
    .page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .dashboard-cards {
        grid-template-columns: 1fr;
    }
    
    .table-responsive {
        overflow-x: auto;
    }
    
    .filters-row {
        grid-template-columns: 1fr;
    }
    
    .public-actions {
        flex-direction: column;
    }
    
    .table-actions {
        flex-wrap: wrap;
    }
}

/* Loader */
.loader {
    border: 3px solid var(--light-gray);
    border-top: 3px solid var(--primary-blue);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.empty-state-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.empty-state h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-secondary);
}

/* Utilidades */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.flex { display: flex; }
.gap-1 { gap: 10px; }
.gap-2 { gap: 20px; }
.justify-between { justify-content: space-between; }
.items-center { align-items: center; }

/* ── Modal de itens ──────────────────────────────────── */
.modal{display:none;position:fixed;inset:0;background:rgba(0,0,0,.52);z-index:1000;align-items:center;justify-content:center;padding:16px;}
.modal.active{display:flex;}
.modal-content{background:#fff;border-radius:12px;padding:28px;width:100%;max-width:560px;max-height:90vh;overflow-y:auto;box-shadow:0 20px 60px rgba(0,0,0,.28);}
.modal-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:20px;border-bottom:1px solid #e5e7eb;padding-bottom:14px;}
.modal-header h3{font-size:18px;font-weight:600;color:#1f2937;}
.modal-close{background:none;border:none;font-size:26px;cursor:pointer;color:#9ca3af;line-height:1;}
.modal-close:hover{color:#374151;}

/* ── Tabela de itens da proposta (tela de form) ──────── */
#listaItens .table{font-size:13.5px;}
#listaItens .table th{font-size:11px;text-transform:uppercase;letter-spacing:.04em;background:#f7f9fc;color:#6b7280;}
.table-actions{display:flex;gap:5px;align-items:center;flex-wrap:wrap;}
.btn-danger{background:#ef4444;color:#fff;border:none;}
.btn-danger:hover{background:#dc2626;}

/* ── Badges tipo produto/serviço ─────────────────────── */
.badge-produto{background:#dbeafe;color:#1d4ed8;}
.badge-servico{background:#dcfce7;color:#15803d;}

/* ── Valor total proposta no formulário ──────────────── */
#totalPropostaBox{margin-top:12px;text-align:right;font-size:17px;font-weight:600;}
#totalPropostaBox span{color:#5b8def;}

/* ── Sidebar logo img ────────────────────────────────── */
.sidebar-logo-img{width:36px;height:36px;border-radius:8px;object-fit:contain;background:#fff;padding:2px;}
.sidebar-logo-txt{font-size:18px;font-weight:700;color:#fff;}
.sidebar-logo-sub{font-size:11px;color:rgba(255,255,255,.55);}

/* ============================================================
   PropostaFlex — Correções v2: Logo maior + Responsivo
   ============================================================ */

/* ── Sidebar logo melhorado ──────────────────────────── */
.sidebar-logo {
    padding: 20px 18px !important;
    text-align: left !important;
    border-bottom: 1px solid var(--medium-gray);
    background: #fff;
}

#sidebar-logo-img {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    object-fit: contain;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
    background: #f7f9fc;
    padding: 4px;
}

.sidebar-brand-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.sidebar-brand-sub {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 155px;
}

/* ── Rodapé do usuário na sidebar ────────────────────── */
.sidebar-user {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 18px;
    border-top: 1px solid var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
}

.sidebar-user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sidebar-user-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.sidebar-user-email {
    font-size: 11px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 145px;
}

/* ── Main content com espaço para sidebar fixa ───────── */
.main-content {
    margin-left: 260px;
    padding: 28px;
    min-height: 100vh;
    padding-bottom: 80px; /* espaço para o rodapé do usuário */
}

/* ── Overlay mobile ──────────────────────────────────── */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 999;
}

/* ── Botão hamburguer mobile ─────────────────────────── */
/* mobile-menu-btn base — removido duplicado (estava quebrando mobile) */
.mobile-menu-btn-placeholder {
    display: none;
}

/* ── Page header melhorado ───────────────────────────── */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.page-header h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

/* ── Cards dashboard ─────────────────────────────────── */
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

/* ── ============ RESPONSIVO ============ ──────────────── */

/* Tablet */
@media (max-width: 1024px) {
    .main-content { padding: 20px; }
    .dashboard-cards { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
    /* Esconde sidebar por padrão */
    .sidebar {
        transform: translateX(-100%);
        transition: transform .25s ease;
        z-index: 1000;
    }
    .sidebar.aberta {
        transform: translateX(0);
    }
    .sidebar-overlay.visivel {
        display: block;
    }

    /* Conteúdo ocupa tudo */
    .main-content {
        margin-left: 0 !important;
        padding: 16px;
        padding-top: 64px; /* espaço para o botão hamburguer */
    }

    /* Mostra botão hamburguer */
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .page-header h1 { font-size: 18px; }
    .dashboard-cards { grid-template-columns: 1fr 1fr; }

    /* Tabelas responsivas */
    .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }

    /* Formulários em coluna */
    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns:1fr 1fr"],
    [style*="grid-template-columns: 1fr 1fr 1fr"],
    [style*="grid-template-columns:1fr 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* Filters em coluna */
    .filters-row { flex-direction: column; }
    .filters-row .form-group { width: 100%; }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .dashboard-cards { grid-template-columns: 1fr; }
    .auth-card { padding: 24px 18px; }
    .table th, .table td { padding: 8px 10px; font-size: 13px; }
    .btn { padding: 7px 14px; font-size: 13px; }
}

/* ============================================================
   PropostaFlex — UI Components v3
   Toasts + Modal de Confirmação + Alertas
   ============================================================ */

/* ── Toast Container ─────────────────────────────────────── */
#pf-toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 380px;
  width: calc(100% - 40px);
  pointer-events: none;
}

/* ── Toast ───────────────────────────────────────────────── */
.pf-toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  pointer-events: all;
  transform: translateX(0);
  opacity: 1;
  transition: opacity .35s ease, transform .35s ease;
  border-left: 4px solid transparent;
}

.pf-toast-enter {
  opacity: 0;
  transform: translateX(40px);
}
.pf-toast-exit {
  opacity: 0;
  transform: translateX(40px);
}

.pf-toast-success { background:#fff; border-color:#27AE60; color:#1a4731; }
.pf-toast-error   { background:#fff; border-color:#C0392B; color:#7b2020; }
.pf-toast-warning { background:#fff; border-color:#D68910; color:#6b4400; }
.pf-toast-info    { background:#fff; border-color:#2B5EA7; color:#1a3a6b; }

.pf-toast-icon   { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.pf-toast-success .pf-toast-icon { color: #27AE60; }
.pf-toast-error   .pf-toast-icon { color: #C0392B; }
.pf-toast-warning .pf-toast-icon { color: #D68910; }
.pf-toast-info    .pf-toast-icon { color: #2B5EA7; }

.pf-toast-msg  { flex: 1; }
.pf-toast-close {
  background: none; border: none; cursor: pointer;
  color: inherit; opacity: .45; padding: 0 0 0 4px;
  font-size: 13px; line-height: 1; flex-shrink: 0;
  transition: opacity .15s;
}
.pf-toast-close:hover { opacity: .9; }

/* ── Modal de Confirmação ────────────────────────────────── */
#pf-confirm-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.52);
  z-index: 9998;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(2px);
}
#pf-confirm-overlay.pf-open {
  display: flex;
  animation: pfFadeIn .2s ease;
}

#pf-confirm-box {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px 24px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,.22);
  text-align: center;
  animation: pfSlideUp .25s ease;
}

#pf-confirm-icon-wrap {
  margin-bottom: 16px;
}
#pf-confirm-icon-wrap i {
  font-size: 40px;
}
.pf-icon-danger  { color: #C0392B; }
.pf-icon-warning { color: #D68910; }
.pf-icon-info    { color: #2B5EA7; }

#pf-confirm-title {
  font-size: 18px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 10px;
}
#pf-confirm-msg {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 24px;
}
#pf-confirm-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}
#pf-confirm-actions .btn {
  min-width: 120px;
  justify-content: center;
}

/* ── Alerta de sessão expirada (login page) ──────────────── */
.alert-warning {
  background: #FEF3E2;
  color: #6b4400;
  border-left: 4px solid #D68910;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 13.5px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.alert-warning i { color: #D68910; font-size: 18px; flex-shrink: 0; margin-top: 1px; }

/* ── Animações ───────────────────────────────────────────── */
@keyframes pfFadeIn   { from { opacity: 0; }                    to { opacity: 1; }               }
@keyframes pfSlideUp  { from { transform: translateY(20px); opacity:0; } to { transform:translateY(0); opacity:1; } }

/* ── Mobile ajuste toast ─────────────────────────────────── */
@media (max-width: 480px) {
  #pf-toast-container { top: 10px; right: 10px; width: calc(100% - 20px); }
  #pf-confirm-box     { padding: 24px 18px 20px; }
}

/* ============================================================
   PropostaFlex v4 — Assinatura + Logo Upload + PWA
   ============================================================ */

/* ── Banners de trial/expirado ───────────────────────────── */
.assin-banner {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: 10px;
  font-size: 14px; margin-bottom: 24px; border-left: 4px solid;
}
.assin-banner i { font-size: 20px; flex-shrink: 0; }
.assin-banner-trial   { background:#FEF3E2; color:#6b4400; border-color:#D68910; }
.assin-banner-trial i { color:#D68910; }
.assin-banner-expired   { background:#FDEDEB; color:#7b2020; border-color:#C0392B; }
.assin-banner-expired i { color:#C0392B; }

/* ── Grid dos planos ─────────────────────────────────────── */
.assin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 780px;
  margin: 0 auto 32px;
}

/* ── Card de plano ───────────────────────────────────────── */
.assin-card {
  background: #fff;
  border: 2px solid #E2E8F0;
  border-radius: 16px;
  padding: 28px;
  position: relative;
  transition: box-shadow .2s, border-color .2s;
}
.assin-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.12); border-color: #2B5EA7; }

.assin-card-destaque {
  border-color: #2B5EA7;
  box-shadow: 0 8px 32px rgba(43,94,167,.15);
}

.assin-economize {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: #27AE60; color: #fff;
  font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 20px;
  white-space: nowrap;
}

.assin-card-header { text-align: center; margin-bottom: 20px; }
.assin-badge       { display:inline-block; background:#EBF3FC; color:#2B5EA7; font-size:11px; font-weight:700; padding:3px 12px; border-radius:20px; margin-bottom:10px; }
.assin-badge-gold  { background:#FEF3E2; color:#B7770D; }
.assin-nome        { font-size: 20px; font-weight: 700; color: #1E293B; margin-bottom: 8px; }
.assin-preco       { display: flex; align-items: flex-start; justify-content: center; gap: 2px; }
.assin-cifrao      { font-size: 18px; font-weight: 600; color: #2B5EA7; margin-top: 6px; }
.assin-valor       { font-size: 52px; font-weight: 800; color: #2B5EA7; line-height: 1; }
.assin-centavos    { font-size: 20px; font-weight: 600; color: #2B5EA7; margin-top: 10px; }
.assin-periodo     { font-size: 13px; color: #94A3B8; margin-top: 4px; }

.assin-features {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.assin-features li { display:flex; align-items:center; gap:8px; font-size:14px; color:#334155; }
.assin-features i  { color:#27AE60; font-size:14px; flex-shrink:0; }

.assin-btn      { width:100%; justify-content:center; padding:12px; font-size:15px; font-weight:600; }
.assin-btn-gold { background:#D68910; color:#fff; border-color:#D68910; }
.assin-btn-gold:hover { background:#b7770d; border-color:#b7770d; }

/* ── Garantias ───────────────────────────────────────────── */
.assin-garantias {
  display: flex; gap: 20px; flex-wrap: wrap;
  justify-content: center; margin: 20px 0;
  max-width: 780px; margin-left: auto; margin-right: auto;
}
.assin-garantia-item {
  display: flex; align-items: center; gap: 12px;
  background: #F8FAFC; border-radius: 10px; padding: 14px 18px;
  flex: 1; min-width: 200px;
}
.assin-garantia-item i { font-size: 22px; color: #2B5EA7; flex-shrink: 0; }
.assin-garantia-item small { color: #94A3B8; }

/* ── Badge de plano no menu ──────────────────────────────── */
.plano-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 700; padding: 2px 8px;
  border-radius: 20px; margin-left: 6px; vertical-align: middle;
}
.plano-badge-trial { background: #FEF3E2; color: #B7770D; }
.plano-badge-pro   { background: #E8F8F0; color: #1A7A49; }

/* ── Upload de logo na configuração ─────────────────────── */
.logo-upload-area {
  border: 2px dashed #CBD5E1; border-radius: 12px;
  padding: 24px; text-align: center; cursor: pointer;
  transition: border-color .2s, background .2s;
  position: relative;
}
.logo-upload-area:hover  { border-color: #2B5EA7; background: #EBF3FC; }
.logo-upload-area.dragover { border-color: #27AE60; background: #E8F8F0; }

.logo-upload-area input[type=file] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.logo-upload-preview {
  width: 80px; height: 80px; border-radius: 12px;
  object-fit: contain; margin: 0 auto 8px;
  background: #F8FAFC; padding: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.logo-upload-hint { font-size: 13px; color: #94A3B8; margin-top: 6px; }

/* ── Banner de trial na topbar ───────────────────────────── */
.topbar-trial {
  background: linear-gradient(90deg, #D68910, #E59320);
  color: #fff; font-size: 13px; font-weight: 500;
  padding: 8px 20px; display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
}
.topbar-trial a { color: #fff; font-weight: 700; text-decoration: underline; }

/* ── PWA install prompt ──────────────────────────────────── */
#pf-pwa-banner {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: #1A3A6B; color: #fff; border-radius: 14px;
  padding: 14px 20px; display: flex; align-items: center; gap: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.28); z-index: 9990;
  max-width: 380px; width: calc(100% - 32px);
  animation: pfSlideUp .35s ease;
}
#pf-pwa-banner img  { width:40px; height:40px; border-radius:10px; object-fit:contain; background:#fff; padding:3px; }
#pf-pwa-banner-txt  { flex:1; font-size:13.5px; line-height:1.4; }
#pf-pwa-banner-txt strong { display:block; font-size:14.5px; }
.pf-pwa-btn-instalar { background:#2B5EA7; color:#fff; border:none; border-radius:8px; padding:8px 16px; font-size:13px; font-weight:600; cursor:pointer; white-space:nowrap; }
.pf-pwa-btn-fechar   { background:none; border:none; color:rgba(255,255,255,.6); cursor:pointer; font-size:18px; padding:4px; }

/* ── Responsivo assinatura ───────────────────────────────── */
@media (max-width: 640px) {
  .assin-grid     { grid-template-columns: 1fr; }
  .assin-garantias{ flex-direction: column; }
  .assin-card     { padding: 22px 18px; }
  .assin-valor    { font-size: 42px; }
}

/* ── Trial countdown barra de progresso ──────────────────── */
.trial-progress-wrap {
  background: rgba(255,255,255,.2);
  border-radius: 20px;
  height: 6px;
  margin-top: 6px;
  overflow: hidden;
  width: 120px;
}
.trial-progress-bar {
  height: 100%;
  border-radius: 20px;
  background: #FFD700;
  transition: width .3s ease;
}

/* ── Auth card — 15 dias banner ──────────────────────────── */
.trial-gift-banner {
  background: linear-gradient(135deg, #1A3A6B, #2B5EA7);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.trial-gift-banner i   { font-size: 24px; color: #FFD700; flex-shrink: 0; }
.trial-gift-banner strong { font-size: 14px; font-weight: 700; display: block; }
.trial-gift-banner span   { font-size: 12px; opacity: .85; }

/* ── Registro — garantias abaixo do botão ────────────────── */
.registro-garantias {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.registro-garantias span {
  font-size: 12px;
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: 4px;
}
.registro-garantias i { color: #27AE60; }

/* ============================================================
   PropostaFlex v5 — Pagamento + Assinatura Redesign
   ============================================================ */

/* ── Layout 2 colunas da página de pagamento ─────────────── */
.pag-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  max-width: 900px;
  align-items: flex-start;
}

/* ── Resumo do plano no topo do form ─────────────────────── */
.pag-resumo-card {
  background: linear-gradient(135deg, #1A3A6B, #2B5EA7);
  color: #fff;
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 20px;
}
.pag-trial-notice {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.2);
  font-size: 13px;
  color: rgba(255,255,255,.85);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Seção do formulário ─────────────────────────────────── */
.pag-section       { background:#fff; border-radius:14px; padding:24px; box-shadow:0 1px 4px rgba(0,0,0,.08); border:1px solid #E2E8F0; }
.pag-section-title { font-size:16px; font-weight:700; color:#1E293B; margin-bottom:18px; padding-bottom:14px; border-bottom:2px solid #EBF3FC; }

/* ── Tabs cartão/pix/boleto ──────────────────────────────── */
.pag-tabs { display:flex; gap:0; margin-bottom:22px; border:1.5px solid #E2E8F0; border-radius:10px; overflow:hidden; }
.pag-tab  {
  flex:1; background:#fff; border:none; padding:12px 8px; font-size:13px; font-weight:500;
  color:#64748B; cursor:pointer; transition:background .15s,color .15s;
  display:flex; align-items:center; justify-content:center; gap:7px;
  border-right:1.5px solid #E2E8F0;
}
.pag-tab:last-child { border-right:none; }
.pag-tab:hover  { background:#F8FAFC; }
.pag-tab.active { background:#EBF3FC; color:#2B5EA7; font-weight:700; }

/* ── Abas ────────────────────────────────────────────────── */
.pag-aba        { display:none; }
.pag-aba.active { display:block; }

/* ── Campos do formulário ────────────────────────────────── */
.pag-field-group { margin-bottom:16px; }
.pag-label       { display:block; font-size:12px; font-weight:700; color:#1A3A6B; text-transform:uppercase; letter-spacing:.05em; margin-bottom:6px; }
.pag-input       {
  width:100%; padding:11px 14px; border:1.5px solid #CBD5E1; border-radius:8px;
  font-size:14.5px; color:#1E293B; font-family:inherit;
  transition:border-color .15s, box-shadow .15s; outline:none;
}
.pag-input:focus  { border-color:#2B5EA7; box-shadow:0 0 0 3px rgba(43,94,167,.12); }
.pag-row-2        { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.pag-input-icon   { position:relative; }
.pag-bandeiras    { position:absolute; right:12px; top:50%; transform:translateY(-50%); display:flex; gap:4px; }
.pag-bandeiras img{ height:22px; opacity:.7; }
#num-cartao       { padding-right:80px; letter-spacing:.12em; }

/* ── Botão pagar ─────────────────────────────────────────── */
.pag-btn-pagar {
  width:100%; padding:14px; border:none; border-radius:10px; cursor:pointer;
  font-size:15px; font-weight:700; font-family:inherit;
  background:#2B5EA7; color:#fff; margin-top:8px;
  display:flex; align-items:center; justify-content:center; gap:10px;
  transition:background .15s, transform .1s;
}
.pag-btn-pagar:hover:not(:disabled) { background:#1E4585; transform:translateY(-1px); }
.pag-btn-pagar:disabled { opacity:.7; cursor:not-allowed; transform:none; }
.pag-btn-pix    { background:linear-gradient(135deg,#00B894,#00CEC9); }
.pag-btn-pix:hover:not(:disabled) { background:linear-gradient(135deg,#00a384,#00b8b8); }
.pag-btn-boleto { background:#475569; }
.pag-btn-boleto:hover:not(:disabled) { background:#334155; }

/* ── PIX info ────────────────────────────────────────────── */
.pag-pix-info, .pag-boleto-info {
  display:flex; align-items:flex-start; gap:14px;
  background:#F0FDF4; border-radius:10px; padding:16px; margin-bottom:18px;
  border-left:4px solid #27AE60;
}
.pag-boleto-info { background:#EBF3FC; border-color:#2B5EA7; }
.pag-pix-icon { width:42px; height:42px; border-radius:10px; background:linear-gradient(135deg,#00B894,#00CEC9); display:flex; align-items:center; justify-content:center; color:#fff; font-size:18px; flex-shrink:0; }

/* ── Coluna direita: sumário ─────────────────────────────── */
.pag-summary-box       { background:#fff; border-radius:14px; padding:22px; box-shadow:0 1px 4px rgba(0,0,0,.08); border:1px solid #E2E8F0; position:sticky; top:20px; }
.pag-summary-title     { font-size:15px; font-weight:700; color:#1E293B; margin-bottom:16px; }
.pag-summary-row       { display:flex; justify-content:space-between; font-size:14px; color:#64748B; margin-bottom:10px; }
.pag-summary-divider   { border:none; border-top:1.5px solid #E2E8F0; margin:12px 0; }
.pag-summary-total     { display:flex; justify-content:space-between; font-size:17px; font-weight:700; color:#1E293B; }
.pag-summary-includes  { margin-top:18px; padding-top:16px; border-top:1.5px solid #EBF3FC; }
.pag-sum-inc-title     { font-size:12px; font-weight:700; color:#94A3B8; text-transform:uppercase; letter-spacing:.06em; margin-bottom:10px; }
.pag-sum-inc-item      { font-size:13px; color:#475569; display:flex; align-items:center; gap:8px; margin-bottom:7px; }
.pag-sum-inc-item i    { color:#27AE60; flex-shrink:0; }

/* ── Selos de segurança ──────────────────────────────────── */
.pag-selos { display:flex; gap:8px; flex-wrap:wrap; margin-top:16px; justify-content:center; }
.pag-selo  { display:flex; align-items:center; gap:5px; font-size:11.5px; color:#64748B; background:#F8FAFC; padding:5px 10px; border-radius:20px; border:1px solid #E2E8F0; }
.pag-selo i{ color:#2B5EA7; }

/* ── Assinatura index — reorganizada ─────────────────────── */
.assin-page-hero {
  text-align: center;
  padding: 32px 20px 24px;
  background: linear-gradient(135deg, #0F2A47 0%, #2B5EA7 100%);
  border-radius: 16px;
  margin-bottom: 32px;
  color: #fff;
}
.assin-page-hero h1 { font-size:26px; font-weight:800; margin-bottom:8px; }
.assin-page-hero p  { font-size:15px; opacity:.85; max-width:480px; margin:0 auto; }

/* ── Responsivo pagamento ────────────────────────────────── */
@media(max-width:768px) {
  .pag-layout      { grid-template-columns:1fr; }
  .pag-summary-box { position:static; }
  .pag-row-2       { grid-template-columns:1fr; }
  .pag-tabs .pag-tab { font-size:12px; padding:10px 4px; }
}

/* ============================================================
   PropostaFlex v6 — Pagamento Redesign + Fixes
   ============================================================ */

/* ── Breadcrumb ──────────────────────────────────────────── */
.pag-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #94A3B8; margin-bottom: 24px;
}
.pag-breadcrumb a { color: #2B5EA7; text-decoration: none; display:flex; align-items:center; gap:6px; }
.pag-breadcrumb a:hover { text-decoration: underline; }

/* ── Pill do plano no topo ───────────────────────────────── */
.pag-plan-pill {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg,#1A3A6B,#2B5EA7);
  border-radius: 14px; padding: 18px 22px; margin-bottom: 20px; color:#fff;
  gap: 16px; flex-wrap: wrap;
}
.pag-plan-pill-left   { display:flex; align-items:center; gap:14px; }
.pag-plan-pill-icon   { width:42px; height:42px; border-radius:10px; background:rgba(255,255,255,.15); display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.pag-plan-pill-name   { font-size:16px; font-weight:700; }
.pag-plan-pill-sub    { font-size:12px; opacity:.8; margin-top:2px; }
.pag-plan-pill-price  { font-size:26px; font-weight:800; white-space:nowrap; }

/* ── Card principal ──────────────────────────────────────── */
.pag-card          { background:#fff; border-radius:14px; padding:26px; box-shadow:0 1px 6px rgba(0,0,0,.07); border:1px solid #E2E8F0; }
.pag-card-title    { font-size:16px; font-weight:700; color:#1E293B; margin-bottom:20px; display:flex; align-items:center; gap:8px; padding-bottom:14px; border-bottom:2px solid #F0F4F8; }

/* ── Tabs ────────────────────────────────────────────────── */
.pag-tabs { display:flex; border:1.5px solid #E2E8F0; border-radius:10px; overflow:hidden; margin-bottom:24px; }
.pag-tab  { flex:1; padding:12px 10px; border:none; background:#fff; color:#64748B; font-size:13px; font-weight:500; cursor:pointer; transition:.15s; display:flex; flex-direction:column; align-items:center; gap:5px; border-right:1.5px solid #E2E8F0; font-family:inherit; }
.pag-tab i { font-size:18px; }
.pag-tab span { font-size:12px; }
.pag-tab:last-child { border-right:none; }
.pag-tab:hover  { background:#F8FAFC; }
.pag-tab.active { background:#EBF3FC; color:#2B5EA7; font-weight:700; }

/* ── Abas ────────────────────────────────────────────────── */
.pag-aba        { display:none; }
.pag-aba.active { display:block; }

/* ── Campos ──────────────────────────────────────────────── */
.pag-field    { margin-bottom:16px; }
.pag-label    { display:block; font-size:11.5px; font-weight:700; color:#1A3A6B; text-transform:uppercase; letter-spacing:.06em; margin-bottom:6px; }
.pag-input    { width:100%; padding:12px 14px; border:1.5px solid #CBD5E1; border-radius:9px; font-size:15px; color:#1E293B; font-family:inherit; outline:none; transition:.15s; box-sizing:border-box; }
.pag-input:focus { border-color:#2B5EA7; box-shadow:0 0 0 3px rgba(43,94,167,.1); }
.pag-select   { appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; padding-right:40px; cursor:pointer; }
.pag-row      { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.pag-tooltip  { color:#94A3B8; cursor:help; margin-left:4px; }

/* ── Número do cartão + bandeiras ────────────────────────── */
.pag-input-wrap  { position:relative; }
.pag-card-flags  { position:absolute; right:12px; top:50%; transform:translateY(-50%); display:flex; gap:4px; }
.pag-flag        { font-size:10px; font-weight:800; padding:2px 6px; border-radius:4px; background:#E2E8F0; color:#94A3B8; letter-spacing:.05em; transition:.2s; }
.pag-flag-active { background:#1A3A6B; color:#fff; }
.pag-flag-mc     { background:#E2E8F0; }
.pag-flag-elo    { background:#E2E8F0; }
#num-cartao      { padding-right:110px; letter-spacing:.1em; }

/* ── Botão pagar ─────────────────────────────────────────── */
.pag-btn-submit {
  width:100%; padding:14px 20px; border:none; border-radius:10px; cursor:pointer;
  font-size:15px; font-weight:700; font-family:inherit;
  background:linear-gradient(135deg,#1A3A6B,#2B5EA7); color:#fff;
  margin-top:8px; display:flex; align-items:center; justify-content:center; gap:10px;
  transition:.15s; letter-spacing:.02em;
}
.pag-btn-submit:hover:not(:disabled) { opacity:.92; transform:translateY(-1px); box-shadow:0 4px 14px rgba(43,94,167,.3); }
.pag-btn-submit:disabled             { opacity:.65; cursor:not-allowed; transform:none; }
.pag-btn-pix    { background:linear-gradient(135deg,#00A86B,#00C87A); }
.pag-btn-pix:hover:not(:disabled)    { box-shadow:0 4px 14px rgba(0,168,107,.3); }
.pag-btn-boleto { background:linear-gradient(135deg,#334155,#475569); }
.pag-btn-boleto:hover:not(:disabled) { box-shadow:0 4px 14px rgba(51,65,85,.3); }

/* ── Info de método (PIX / Boleto) ───────────────────────── */
.pag-method-info {
  display:flex; align-items:flex-start; gap:14px;
  border-radius:10px; padding:16px; margin-bottom:18px; border-left:4px solid;
}
.pag-method-icon { width:40px; height:40px; border-radius:9px; display:flex; align-items:center; justify-content:center; font-size:18px; color:#fff; flex-shrink:0; }
.pag-method-info strong { display:block; font-size:14px; color:#1E293B; margin-bottom:4px; }
.pag-method-info p { font-size:13px; color:#64748B; line-height:1.5; margin:0; }
.pag-pix-theme   { background:#F0FDF8; border-color:#00A86B; }
.pag-pix-theme   .pag-method-icon { background:linear-gradient(135deg,#00A86B,#00C87A); }
.pag-boleto-theme{ background:#F8FAFC; border-color:#475569; }
.pag-boleto-theme .pag-method-icon { background:linear-gradient(135deg,#334155,#475569); }

/* ── Selos de segurança ──────────────────────────────────── */
.pag-security-row { display:flex; justify-content:center; gap:20px; flex-wrap:wrap; margin-top:16px; padding-top:16px; border-top:1px solid #F0F4F8; }
.pag-security-row span { font-size:11.5px; color:#94A3B8; display:flex; align-items:center; gap:5px; }
.pag-security-row i { color:#27AE60; }

/* ── Aside (coluna direita) ──────────────────────────────── */
.pag-aside         { /* sticky positioning handled below */ }
.pag-aside-card    { background:#fff; border-radius:14px; padding:22px; box-shadow:0 1px 6px rgba(0,0,0,.07); border:1px solid #E2E8F0; position:sticky; top:20px; }
.pag-aside-header  { margin-bottom:16px; padding-bottom:14px; border-bottom:2px solid #F0F4F8; }
.pag-aside-label   { font-size:13px; font-weight:700; color:#94A3B8; text-transform:uppercase; letter-spacing:.06em; }
.pag-aside-plan    { display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.pag-aside-plan-icon { width:40px; height:40px; border-radius:9px; background:linear-gradient(135deg,#1A3A6B,#2B5EA7); display:flex; align-items:center; justify-content:center; color:#fff; font-size:16px; flex-shrink:0; }
.pag-aside-row     { display:flex; justify-content:space-between; font-size:13.5px; color:#64748B; margin-bottom:8px; }
.pag-aside-discount{ color:#27AE60; font-weight:500; }
.pag-aside-divider { border:none; border-top:1.5px solid #F0F4F8; margin:12px 0; }
.pag-aside-total   { display:flex; justify-content:space-between; font-size:18px; font-weight:800; color:#1E293B; }
.pag-aside-trial   { display:flex; align-items:center; gap:8px; font-size:12.5px; color:#64748B; background:#F0FDF8; padding:10px 14px; border-radius:8px; margin:14px 0; }
.pag-aside-features       { margin-top:14px; padding-top:14px; border-top:1.5px solid #F0F4F8; }
.pag-aside-features-title { font-size:11px; font-weight:700; color:#94A3B8; text-transform:uppercase; letter-spacing:.06em; margin-bottom:10px; }
.pag-aside-feature        { font-size:13px; color:#475569; display:flex; align-items:center; gap:8px; margin-bottom:7px; }
.pag-aside-feature i      { color:#27AE60; flex-shrink:0; font-size:11px; }
.pag-aside-guarantee      { display:flex; align-items:center; gap:12px; margin-top:14px; background:#EBF3FC; border-radius:10px; padding:14px 16px; }

/* ── Layout 2 colunas ────────────────────────────────────── */
.pag-layout { display:grid; grid-template-columns:1fr 320px; gap:24px; align-items:flex-start; max-width:860px; }

/* ── Responsivo ──────────────────────────────────────────── */
@media(max-width:768px) {
  .pag-layout   { grid-template-columns:1fr; }
  .pag-aside-card { position:static; }
  .pag-row      { grid-template-columns:1fr; }
  .pag-tab span { display:none; }
  .pag-tab      { padding:12px; }
  .pag-plan-pill{ flex-direction:column; align-items:flex-start; }
}

/* ============================================================
   PropostaFlex — Hostinger Parceiro
   ============================================================ */

/* ── Sidebar — item Hostinger ────────────────────────────── */
.menu-item-parceiro {
  margin: 6px 8px 0;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(106,13,173,.08), rgba(255,107,43,.08));
  border: 1px solid rgba(106,13,173,.15) !important;
  color: #6A0DAD !important;
  font-weight: 600 !important;
  position: relative;
  overflow: hidden;
}
.menu-item-parceiro::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(106,13,173,.06), rgba(255,107,43,.06));
  opacity: 0;
  transition: opacity .2s;
}
.menu-item-parceiro:hover::before { opacity: 1; }
.menu-item-parceiro i { color: #6A0DAD !important; }

.menu-parceiro-badge {
  font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  background: linear-gradient(135deg, #6A0DAD, #FF6B2B);
  color: #fff; padding: 2px 6px; border-radius: 20px;
  margin-left: auto; flex-shrink: 0;
}

/* ── Dashboard — banner Hostinger ───────────────────────── */
.hostinger-banner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  background: linear-gradient(135deg, #0F1C3A 0%, #6A0DAD 60%, #FF6B2B 100%);
  border-radius: 14px; padding: 18px 22px; margin-bottom: 24px;
  text-decoration: none; color: #fff;
  transition: opacity .2s, transform .2s;
  cursor: pointer;
}
.hostinger-banner:hover { opacity: .95; transform: translateY(-1px); }

.hostinger-banner-left { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0; }
.hostinger-banner-logo {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,.15); display: flex; align-items: center;
  justify-content: center; font-size: 20px; flex-shrink: 0;
}
.hostinger-banner-title { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.hostinger-banner-sub   { font-size: 12.5px; opacity: .85; line-height: 1.4; }

.hostinger-banner-cta {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.2); color: #fff;
  padding: 9px 18px; border-radius: 8px;
  font-size: 13px; font-weight: 700; white-space: nowrap;
  transition: background .15s;
  flex-shrink: 0;
}
.hostinger-banner:hover .hostinger-banner-cta { background: rgba(255,255,255,.3); }

/* ── Assinatura — seção Hostinger ────────────────────────── */
.hostinger-section {
  margin-top: 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0F1C3A, #6A0DAD);
  padding: 2px; /* borda gradiente */
}
.hostinger-section-inner {
  background: #fff;
  border-radius: 14px;
  padding: 24px 26px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.hostinger-section-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, #6A0DAD, #FF6B2B);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff; flex-shrink: 0;
}
.hostinger-section-text { flex: 1; min-width: 200px; }
.hostinger-section-text h3 { font-size: 16px; font-weight: 700; color: #1E293B; margin-bottom: 6px; }
.hostinger-section-text p  { font-size: 13.5px; color: #64748B; line-height: 1.6; margin: 0; }

.hostinger-section-btn {
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #6A0DAD, #FF6B2B);
  color: #fff; padding: 12px 20px; border-radius: 10px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  white-space: nowrap; transition: opacity .15s, transform .15s;
  flex-shrink: 0;
}
.hostinger-section-btn:hover { opacity: .92; transform: translateY(-1px); }

/* ── Responsivo ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .hostinger-banner      { flex-direction: column; align-items: flex-start; }
  .hostinger-banner-cta  { width: 100%; justify-content: center; }
  .hostinger-section-inner { flex-direction: column; text-align: center; }
  .hostinger-section-btn   { width: 100%; justify-content: center; }
}

/* ============================================================
   PropostaFlex v7 — RESPONSIVO UNIFICADO (mobile-first fix)
   Cobre: sidebar, layout, cards, tabelas, forms, pagamento
   ============================================================ */

/* ── Variáveis de base ───────────────────────────────────── */
:root {
  --sidebar-w: 260px;
  --topbar-h:  52px;
}

/* ── Botão hamburguer — sempre fixo ─────────────────────── */
.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 12px; left: 12px;
  z-index: 1100;
  width: 44px; height: 44px;
  background: var(--primary-blue, #2B5EA7);
  color: #fff;
  border: none; border-radius: 10px;
  font-size: 18px; cursor: pointer;
  align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
  transition: background .15s;
}
.mobile-menu-btn:hover { background: #1E4585; }

/* ── Sidebar base ────────────────────────────────────────── */
.sidebar {
  transition: transform .28s cubic-bezier(.4,0,.2,1);
}

/* ── Página de pagamento — layout 2 col ─────────────────── */
.pag-novo-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: flex-start;
  max-width: 900px;
}
.pag-novo-aside .card { position: sticky; top: 20px; }

/* ── Tabs de pagamento ───────────────────────────────────── */
.pag-method-tabs {
  display: flex;
  gap: 0;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 22px;
}
.pag-method-tab {
  flex: 1; padding: 11px 8px;
  border: none; background: #fff; color: #64748B;
  font-size: 13px; font-weight: 500; cursor: pointer;
  transition: background .15s, color .15s;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  border-right: 1.5px solid #E2E8F0;
  font-family: inherit;
}
.pag-method-tab:last-child { border-right: none; }
.pag-method-tab:hover  { background: #F8FAFC; }
.pag-method-tab.active { background: #EBF3FC; color: #2B5EA7; font-weight: 700; }
.pag-method-aba        { display: none; }
.pag-method-aba.active { display: block; }

/* ── Bandeiras do cartão ─────────────────────────────────── */
.flag-chip {
  font-size: 10px; font-weight: 800; letter-spacing: .05em;
  padding: 2px 7px; border-radius: 4px;
  background: #E2E8F0; color: #94A3B8;
  transition: background .2s, color .2s;
}
.flag-chip.flag-ativa { background: #1A3A6B; color: #fff; }

/* ── grid-2 / grid-3 (usados no form de proposta E pagamento) */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

/* ════════════════════════════════════════════════════════════
   BREAKPOINT: TABLET  (max 1024px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pag-novo-layout { grid-template-columns: 1fr 260px; }
  .main-content    { padding: 20px; }
}

/* ════════════════════════════════════════════════════════════
   BREAKPOINT: MOBILE  (max 768px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Mostra botão hamburguer ─────────────────────────── */
  .mobile-menu-btn { display: flex !important; }

  /* ── Sidebar deslizante ──────────────────────────────── */
  .sidebar {
    transform: translateX(-100%);
    z-index: 1000;
  }
  .sidebar.aberta { transform: translateX(0); }
  .sidebar-overlay.visivel { display: block; }

  /* ── Conteúdo sem margem lateral ─────────────────────── */
  .main-content {
    margin-left: 0 !important;
    padding: 16px !important;
    padding-top: calc(var(--topbar-h) + 12px) !important;
    padding-bottom: 80px !important;
  }

  /* ── Page header empilha em mobile ───────────────────── */
  .page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .page-header h1 {
    font-size: 18px;
    /* Abre espaço para não ficar atrás do botão hamburguer fixo */
    padding-left: 56px;
    margin-top: -4px;
  }

  /* ── Cards internos ──────────────────────────────────── */
  .card { padding: 16px; }
  .card-title { font-size: 15px; }

  /* ── Grids colapsam para 1 coluna ────────────────────── */
  .grid-2, .grid-3,
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* ── Tabelas responsivas ─────────────────────────────── */
  .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .table th, .table td { padding: 10px 10px; font-size: 13px; }

  /* ── Filtros de lista ────────────────────────────────── */
  .filters-row { flex-direction: column; }

  /* ── Forms de pagamento ──────────────────────────────── */
  .pag-novo-layout { grid-template-columns: 1fr; }
  .pag-novo-aside .card { position: static; }
  .pag-novo-aside { order: -1; }   /* resumo aparece ACIMA do form em mobile */

  /* ── Tabs pagamento ──────────────────────────────────── */
  .pag-method-tab { font-size: 12px; padding: 10px 6px; }
  .pag-method-tab i { font-size: 16px; }

  /* ── Dashboard cards ─────────────────────────────────── */
  .dashboard-cards { grid-template-columns: 1fr 1fr !important; gap: 12px; }

  /* ── Hostinger banner empilha ────────────────────────── */
  .hostinger-banner { flex-direction: column; align-items: flex-start; }
  .hostinger-banner-cta { width: 100%; justify-content: center; }

  /* ── Assinatura — planos em coluna ───────────────────── */
  .assin-grid { grid-template-columns: 1fr; }

  /* ── Botões de ação da tabela ────────────────────────── */
  .table-actions { flex-wrap: wrap; gap: 4px; }

  /* ── Auth cards ──────────────────────────────────────── */
  .auth-card { padding: 24px 16px; margin: 16px; }

  /* ── Modal de confirmação ────────────────────────────── */
  #pf-confirm-box { padding: 24px 18px; margin: 16px; }
}

/* ════════════════════════════════════════════════════════════
   BREAKPOINT: MOBILE PEQUENO  (max 480px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .dashboard-cards { grid-template-columns: 1fr !important; }
  .btn { padding: 9px 14px; font-size: 13px; }
  .table th, .table td { padding: 8px; font-size: 12px; }

  /* Toasts menores */
  #pf-toast-container { top: 8px; right: 8px; width: calc(100% - 16px); }
  .pf-toast { font-size: 13px; padding: 12px 14px; }

  /* Modal texto menor */
  #pf-confirm-title { font-size: 16px; }
  #pf-confirm-msg   { font-size: 13px; }
}

/* ── Touch targets mínimos (acessibilidade mobile) ───────── */
@media (hover: none) and (pointer: coarse) {
  .btn, .menu-item, .pag-method-tab, .pag-tab {
    min-height: 44px;
  }
  .form-control, .pag-input {
    min-height: 46px;
    font-size: 16px !important; /* evita zoom automático no iOS */
  }
  select.form-control { font-size: 16px !important; }
}

/* ============================================================
   PropostaFlex v7 — Pagamento: detalhes visuais
   ============================================================ */

/* ── Resumo do pedido aside ──────────────────────────────── */
.pag-novo-aside .card { border: 2px solid #EBF3FC; }

/* ── Botão PIX verde ─────────────────────────────────────── */
.btn-success {
  background: linear-gradient(135deg, #1A7A49, #27AE60);
  color: #fff; border: none;
}
.btn-success:hover { background: linear-gradient(135deg, #165f3a, #21994f); }

/* ── Input com ícone de bandeiras alinhado ───────────────── */
#num-cartao-v2 { padding-right: 105px !important; }

/* ── Garantia visual no aside ────────────────────────────── */
.pag-garantia-strip {
  display: flex; align-items: center; gap: 10px;
  background: #F8FAFC; border-radius: 8px; padding: 12px 14px;
  margin-top: 14px; font-size: 12.5px; color: #64748B;
}
.pag-garantia-strip i { color: #2B5EA7; font-size: 18px; }

/* ── Step visual de pagamento ────────────────────────────── */
.pag-step-badge {
  width: 22px; height: 22px; border-radius: 50%;
  background: #2B5EA7; color: #fff;
  font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  margin-right: 6px; flex-shrink: 0;
}

/* ============================================================
   PropostaFlex — Rodapé Fixo Centralizado
   ============================================================ */

.pf-footer-copyright {
    /* Fixo na base da tela, centralizado horizontalmente */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 998;

    /* Visual */
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -2px 10px rgba(0,0,0,.06);

    /* Layout — centraliza o conteúdo */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 14px;
    padding: 9px 20px;

    /* Tipografia */
    font-size: 12.5px;
    color: #6b7280;
    text-align: center;
    line-height: 1.4;
}
.pf-footer-copyright a {
    color: #5B8DEF;
    text-decoration: none;
}
.pf-footer-copyright a:hover { text-decoration: underline; }

/* Offset para que o conteúdo não fique atrás do rodapé */
body { padding-bottom: 52px; }
.main-content { padding-bottom: 68px; }

/* Em mobile, desconta a sidebar que não existe */
@media (max-width: 768px) {
    .pf-footer-copyright {
        font-size: 11.5px;
        padding: 7px 14px;
    }

}
/* ============================================================
   FechaFlex — RESPONSIVO v8 FINAL (unificado)
   Resolve: sidebar, layout, grids, tabelas, forms, cards,
   auth pages, pagamento, dashboard, mobile touch targets
   ============================================================ */

/* ── Reset de base mobile-first ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
img, video { max-width: 100%; height: auto; }
table { min-width: 0; }

/* ── Sidebar base — transição suave ─────────────────────── */
.sidebar {
    transition: transform .28s cubic-bezier(.4,0,.2,1), box-shadow .28s;
    will-change: transform;
}

/* ── Main content — compensa sidebar + footer ────────────── */
.main-content {
    min-height: calc(100vh - 52px);
}

/* ── Grid helpers ────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

/* ── Formulários — largura máxima sensata ────────────────── */
.form-group { max-width: 100%; }
.form-control { width: 100%; max-width: 100%; }

/* ── Tabelas — scroll horizontal em telas pequenas ──────── */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
}

/* ─────────────────────────────────────────────────────────
   BREAKPOINT TABLET  max-width: 1024px
   ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .main-content { padding: 20px 18px; }
    .pag-novo-layout { grid-template-columns: 1fr 260px; }
    .dashboard-cards { grid-template-columns: repeat(3, 1fr); }
}

/* ─────────────────────────────────────────────────────────
   BREAKPOINT MOBILE  max-width: 768px
   ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {

    /* ── Mostra botão hamburguer ─────────────────────────── */
    .mobile-menu-btn {
        display: flex !important;
        position: fixed;
        top: 10px; left: 10px;
        z-index: 1100;
        width: 44px; height: 44px;
        background: var(--primary-blue, #5B8DEF);
        color: #fff; border: none; border-radius: 10px;
        font-size: 18px; cursor: pointer;
        align-items: center; justify-content: center;
        box-shadow: 0 2px 12px rgba(0,0,0,.18);
    }

    /* ── Sidebar deslizante ──────────────────────────────── */
    .sidebar {
        transform: translateX(-100%) !important;
        position: fixed !important;
        z-index: 1050;
        height: 100vh;
        overflow-y: auto;
    }
    .sidebar.aberta {
        transform: translateX(0) !important;
        box-shadow: 4px 0 24px rgba(0,0,0,.18);
    }
    .sidebar-overlay.visivel {
        display: block !important;
    }

    /* ── Conteúdo — sem margem da sidebar ────────────────── */
    .main-content {
        margin-left: 0 !important;
        padding: 14px 14px 68px !important;
        padding-top: calc(44px + 18px) !important;
    }

    /* ── Layout de páginas ───────────────────────────────── */
    .layout { display: block !important; }

    /* ── Page header ─────────────────────────────────────── */
    .page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 16px;
        margin-bottom: 16px;
    }
    .page-header h1 { font-size: 18px; line-height: 1.3; }

    /* ── Cards ───────────────────────────────────────────── */
    .card { padding: 14px; }
    .card-title { font-size: 14.5px; }

    /* ── Grids → 1 coluna ───────────────────────────────── */
    .grid-2, .grid-3,
    .pag-row, .pag-row-2 {
        grid-template-columns: 1fr !important;
    }
    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns:1fr 1fr"],
    [style*="grid-template-columns: 1fr 1fr 1fr"],
    [style*="grid-template-columns:1fr 1fr 1fr"],
    [style*="grid-template-columns: 1fr 1fr 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* ── Dashboard ───────────────────────────────────────── */
    .dashboard-cards { grid-template-columns: 1fr 1fr !important; gap: 12px; }
    .chart-container { padding: 12px; }

    /* ── Tabelas ─────────────────────────────────────────── */
    .table th, .table td { padding: 9px 10px; font-size: 12.5px; }
    /* Esconde colunas menos importantes em mobile */
    .table .hide-mobile { display: none; }

    /* ── Filtros ─────────────────────────────────────────── */
    .filters, .filters-row { flex-direction: column !important; }

    /* ── Botões ──────────────────────────────────────────── */
    .btn { padding: 9px 14px; font-size: 13.5px; }
    .table-actions { flex-wrap: wrap; gap: 4px; }

    /* ── Pagamento ───────────────────────────────────────── */
    .pag-novo-layout { grid-template-columns: 1fr !important; }
    .pag-novo-aside .card { position: static; }
    .pag-novo-aside { order: -1; }
    .pag-method-tab { font-size: 12px; padding: 10px 6px; }

    /* ── Auth pages ──────────────────────────────────────── */
    .auth-container { padding: 16px; }
    .auth-card { padding: 22px 16px; margin: 0; }

    /* ── Modal de confirmação ────────────────────────────── */
    #pf-confirm-box { padding: 22px 16px; margin: 14px; max-width: calc(100% - 28px); }
    #pf-confirm-actions { flex-direction: column; gap: 8px; }
    #pf-confirm-actions .btn { width: 100%; justify-content: center; }

    /* ── Toasts ──────────────────────────────────────────── */
    #pf-toast-container { top: 8px; right: 8px; width: calc(100% - 16px); max-width: none; }

    /* ── Assinatura ──────────────────────────────────────── */
    .assin-grid { grid-template-columns: 1fr !important; }
    .assin-garantias { flex-direction: column; }

    /* ── Hostinger banner ────────────────────────────────── */
    .hostinger-banner { flex-direction: column; align-items: flex-start; }
    .hostinger-banner-cta { width: 100%; justify-content: center; }
    .hostinger-section-inner { flex-direction: column; text-align: center; }
    .hostinger-section-btn { width: 100%; justify-content: center; }

    /* ── Proposta pública ────────────────────────────────── */
    .public-container { padding: 12px; }
    .public-card { padding: 16px; }
    .public-actions { flex-direction: column; gap: 10px; }
    .public-actions .btn { width: 100%; justify-content: center; }
}

/* ─────────────────────────────────────────────────────────
   BREAKPOINT MOBILE PEQUENO  max-width: 480px
   ───────────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .dashboard-cards { grid-template-columns: 1fr !important; }
    .btn { font-size: 13px; padding: 9px 12px; }
    .table th, .table td { padding: 7px 8px; font-size: 12px; }
    #pf-toast-container { top: 6px; right: 6px; width: calc(100% - 12px); }
    .pf-toast { font-size: 13px; padding: 11px 13px; }
    .auth-card { padding: 18px 12px; }
    .assin-card { padding: 18px 14px; }
    .page-header h1 { font-size: 16px; }
}

/* ─────────────────────────────────────────────────────────
   TOUCH TARGETS — acessibilidade (Apple HIG: 44px mínimo)
   ───────────────────────────────────────────────────────── */
@media (hover: none) and (pointer: coarse) {
    .btn, .menu-item, .pag-method-tab, .pag-tab { min-height: 44px; }
    /* Evita zoom automático do iOS ao focar input */
    input, select, textarea { font-size: 16px !important; }
    .form-control, .pag-input { font-size: 16px !important; min-height: 46px; }
}

/* ─────────────────────────────────────────────────────────
   IMPRESSÃO — esconde UI navegacional
   ───────────────────────────────────────────────────────── */
@media print {
    .sidebar, .mobile-menu-btn, .pf-footer-copyright,
    .pf-pwa-banner, #pf-toast-container, #pf-confirm-overlay { display: none !important; }
    .main-content { margin-left: 0 !important; padding: 0 !important; }
}

/* ── Footer separator ────────────────────────────────────── */
.pf-footer-sep { color: #d1d5db; user-select: none; }
