:root {
      --primary: #4f46e5;
      --primary-dark: #4338ca;
      --bg-body: #f8fafc;
      --bg-card: #ffffff;
      --sidebar-bg: #0f172a;
      --text-main: #0f172a;
      --text-muted: #64748b;
      --border: #e2e8f0;
      --sidebar-width: 260px;

            --brand-color: #00a89e;
            --brand-hover: #008981;
            --input-border: #e0e0e0;

    }
 
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }

    body {
      background-color: var(--bg-body);
      color: var(--text-main);
      overflow-x: hidden;
    }

 
        .form-card {
            background: #fff;
            padding: 5px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .teal-line-top {
            width: 40px;
            height: 4px;
            background-color: var(--brand-color);
            margin: 0 auto 15px auto;
        }

        /* Progresso das Etapas */
        .step-progress-bar {
            height: 6px;
            background-color: #e9ecef;
            border-radius: 3px;
            overflow: hidden;
            margin-bottom: 25px;
        }

        .step-progress-fill {
            height: 100%;
            background-color: var(--brand-color);
            transition: width 0.3s ease;
        }

        .step-indicators {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
        }

        .step-item {
            text-align: center;
            flex: 1;
            position: relative;
        }

        .step-number {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #e9ecef;
            color: #6c757d;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-bottom: 6px;
            transition: all 0.3s ease;
        }

        .step-item.active .step-number {
            background-color: var(--brand-color);
            color: #fff;
        }

        .step-item.completed .step-number {
            background-color: #008981;
            color: #fff;
        }

        .step-title {
            font-size: 0.85rem;
            color: #6c757d;
            font-weight: 600;
        }

        .step-item.active .step-title {
            color: #2b2b2b;
        }

        /* Seção Título Interno */
        .section-title {
            display: flex;
            align-items: center;
            font-size: 1.15rem;
            font-weight: 700;
            color: #2b2b2b;
            margin-top: 10px;
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 8px;
        }

        .section-title::before {
            content: "";
            display: inline-block;
            width: 25px;
            height: 4px;
            background-color: var(--brand-color);
            margin-right: 10px;
        }

        /* Floating Labels */
        .form-floating > label {
            color: var(--text-muted);
            font-size: 0.85rem;
            padding-top: 0.6rem;
        }

        .form-floating > .form-control,
        .form-floating > .form-select {
            border-color: var(--input-border);
            border-radius: 4px;
            height: 58px;
            box-shadow: none !important;
            font-size: 0.95rem;
        }

        .form-floating > .form-control:focus,
        .form-floating > .form-select:focus {
            border-color: var(--brand-color);
        }

        /* Campo de Telefone */
        .phone-group { position: relative; }
        .phone-flag {
            position: absolute;
            left: 12px;
            bottom: 12px;
            z-index: 5;
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 0.85rem;
            color: #555;
        }
        .phone-group .form-control { padding-left: 55px; }

        /* Captcha Box */
        .captcha-box {
            background-color: #f8f9fa;
            border: 1px solid var(--input-border);
            border-radius: 4px;
            height: 58px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Georgia', cursive, serif;
            font-size: 1.8rem;
            font-weight: bold;
            font-style: italic;
            letter-spacing: 5px;
            color: #555;
            background-image: repeating-linear-gradient(45deg, #eee 0, #eee 2px, transparent 0, transparent 4px);
            user-select: none;
        }

        /* Botões */
        .btn-brand {
            background-color: var(--brand-color);
            color: #fff;
            border: none;
            border-radius: 4px;
            padding: 12px 35px;
            font-weight: 700;
            font-size: 0.95rem;
            transition: background-color 0.2s ease;
        }

        .btn-brand:hover {
            background-color: var(--brand-hover);
            color: #fff;
        }

        .btn-secondary-custom {
            background-color: #e9ecef;
            color: #495057;
            border: none;
            border-radius: 4px;
            padding: 12px 30px;
            font-weight: 600;
        }

        .btn-secondary-custom:hover {
            background-color: #dee2e6;
        }

        [v-cloak] { display: none; }




/* Botão de Eliminar - Estilo Base */
.btn-danger {
    background-color: #dc3545; /* Cor vermelha de perigo */
    color: white; /* Texto branco */
    border: none; /* Remove a borda padrão */
    padding: 8px 16px; /* Espaçamento interno */
    border-radius: 6px; /* Bordas arredondadas */
    font-weight: 600; /* Texto em negrito leve */
    cursor: pointer; /* Muda o cursor para mãozinha */
    display: flex; /* Alinha o ícone e o texto */
    align-items: center; /* Alinha verticalmente */
    gap: 8px; /* Espaço entre o ícone e o texto */
    transition: all 0.2s ease; /* Transição suave para efeitos */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra leve */
}

/* Efeito ao passar o mouse (Hover) */
.btn-danger:hover {
    background-color: #bb2d3b; /* Vermelho mais escuro no hover */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15); /* Sombra mais forte */
    transform: translateY(-1px); /* Levanta o botão levemente */
}

/* Efeito ao clicar (Active) */
.btn-danger:active {
    background-color: #a52834; /* Vermelho ainda mais escuro */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* Sombra menor */
    transform: translateY(0); /* Volta à posição original */
}

/* Estilo para o ícone */
.btn-danger i {
    font-size: 1.1em; /* Ícone levemente maior que o texto */
}

































 

    /* Tela de Login */
    .login-container {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--sidebar-bg);
      padding: 20px;
    }

    .login-card {
      background-color: var(--bg-card);
      border-radius: 16px;
      padding: 40px;
      width: 100%;
      max-width: 420px;
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    }

    .login-header {
      text-align: center;
      margin-bottom: 28px;
    }

    .login-header .brand-icon {
      width: 56px;
      height: 56px;
      background-color: #e0e7ff;
      color: var(--primary);
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.75rem;
      margin-bottom: 16px;
    }

    .login-header h2 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-main);
    }

    .login-header p {
      color: var(--text-muted);
      font-size: 0.875rem;
      margin-top: 4px;
    }

    .error-alert {
      background-color: #fef2f2;
      border: 1px solid #fecaca;
      color: #991b1b;
      padding: 10px 14px;
      border-radius: 8px;
      font-size: 0.85rem;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .btn-block {
      width: 100%;
      justify-content: center;
    }

    .btn-logout {
      background: none;
      border: none;
      color: var(--text-muted);
      cursor: pointer;
      font-size: 1rem;
      padding: 6px;
      border-radius: 6px;
      transition: color 0.2s;
    }

    .btn-logout:hover {
      color: #ef4444;
    }

    /* Layout do Painel */
    .dashboard-layout {
      display: flex;
      min-height: 100vh;
    }

    /* Sidebar Overlay (Mobile) */
    .sidebar-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(15, 23, 42, 0.5);
      backdrop-filter: blur(4px);
      z-index: 40;
      display: none;
    }

    /* Sidebar Style */
    .sidebar {
      width: var(--sidebar-width);
      background-color: var(--sidebar-bg);
      color: #94a3b8;
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 0;
      bottom: 0;
      left: 0;
      z-index: 50;
      transition: transform 0.3s ease;
    }

    .sidebar .brand {
      height: 70px;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0 24px;
      color: #fff;
      font-size: 1.25rem;
      font-weight: 700;
      border-bottom: 1px solid #1e293b;
    }

    .sidebar .brand i {
      color: #6366f1;
      font-size: 1.5rem;
    }

    .sidebar-nav {
      list-style: none;
      padding: 20px 12px;
      flex: 1;
    }

    .sidebar-nav li {
      margin-bottom: 4px;
    }

    .sidebar-nav a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      color: #94a3b8;
      text-decoration: none;
      border-radius: 10px;
      font-weight: 500;
      transition: all 0.2s;
    }

    .sidebar-nav a:hover,
    .sidebar-nav a.active {
      background-color: var(--primary);
      color: #ffffff;
    }

    /* Main Container */
    .main-wrapper {
      flex: 1;
      margin-left: var(--sidebar-width);
      display: flex;
      flex-direction: column;
      min-width: 0;
      transition: margin 0.3s ease;
    }

    /* Header */
    header {
      height: 70px;
      background-color: var(--bg-card);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 28px;
      position: sticky;
      top: 0;
      z-index: 30;
    }

    .header-left {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .btn-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.25rem;
      color: var(--text-main);
      cursor: pointer;
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .user-profile {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      object-fit: cover;
    }

    /* Main Content */
    .content {
      padding: 28px;
    }

    .page-header {
      margin-bottom: 24px;
    }

    .page-header h1 {
      font-size: 1.5rem;
      font-weight: 700;
    }

    .page-header p {
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    /* Forms */
    .form-card {
      background-color: var(--bg-card);
      border-radius: 16px;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-group.full-width {
      grid-column: span 2;
    }

    .form-group label {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-main);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 10px 14px;
      border: 1px solid var(--border);
      border-radius: 8px;
      outline: none;
      font-size: 0.9rem;
      transition: border-color 0.2s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--primary);
    }

    .btn-primary {
      background-color: var(--primary);
      color: #fff;
      border: none;
      padding: 12px 24px;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-primary:hover {
      background-color: var(--primary-dark);
    }

    .btn-primary:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    .btn-secondary {
      background-color: #e2e8f0;
      color: var(--text-main);
      border: none;
      padding: 8px 12px;
      border-radius: 6px;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.2s;
    }

    .btn-secondary:hover {
      background-color: #cbd5e1;
    }

    /* Table Component */
    .table-wrapper {
      background-color: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
      overflow: hidden;
    }

    .table-header {
      padding: 20px;
      border-bottom: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .search-input {
      position: relative;
      width: 260px;
    }

    .search-input input {
      width: 100%;
      padding: 8px 12px 8px 36px;
      border: 1px solid var(--border);
      border-radius: 8px;
      outline: none;
      font-size: 0.9rem;
    }

    .search-input i {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-muted);
    }

    .responsive-table {
      width: 100%;
      overflow-x: auto;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }

    th {
      background-color: #f8fafc;
      padding: 12px 20px;
      color: var(--text-muted);
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      border-bottom: 1px solid var(--border);
    }

    td {
      padding: 16px 20px;
      border-bottom: 1px solid var(--border);
      font-size: 0.9rem;
    }

    tr:last-child td {
      border-bottom: none;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
    }

    .badge-available { background-color: #dcfce7; color: #166534; }
    .badge-sold { background-color: #fee2e2; color: #991b1b; }

    /* Breakpoints */
    @media (max-width: 992px) {
      .sidebar {
        transform: translateX(-100%);
      }
      .sidebar.open {
        transform: translateX(0);
      }
      .sidebar-overlay.open {
        display: block;
      }
      .main-wrapper {
        margin-left: 0;
      }
      .btn-toggle {
        display: block;
      }
    }

    @media (max-width: 576px) {
      .content { padding: 16px; }
      header { padding: 0 16px; }
      .search-input { width: 100%; }
      .table-header { flex-direction: column; align-items: stretch; }
      .form-grid { grid-template-columns: 1fr; }
      .form-group.full-width { grid-column: span 1; }
    }