/* Start custom CSS for html, class: .elementor-element-c3b72eb *//* Reset Básico */
    * { 
      margin:0; 
      padding:0; 
      box-sizing:border-box; 
      font-family:'Inter',sans-serif; 
    }
    a { 
      text-decoration:none; 
      color: inherit; 
    }
    ul { 
      list-style:none; 
    }

    /* Layout Principal */
    .dashboard {
      display: grid;
      grid-template-columns: 240px 1fr;
      min-height: 100vh;
      background: #f5f6fa;
    }
    @media(max-width: 768px) {
      .dashboard {
        grid-template-columns: 1fr;
        grid-template-rows: 60px 1fr;
      }
      .sidebar { 
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 60px;
        z-index: 1000;
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: 1fr;
        overflow-x: auto;
      }
      .main {
        margin-top: 60px;
        padding: 15px;
      }
    }

    /* Sidebar */
    .sidebar {
      background: #2980B9;
      color: white;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      transition: all 0.3s ease;
    }
    .profile-pic {
      width: 100px; 
      height: 100px;
      border-radius: 50%;
      background: url('http://canteirocentral.com.br/wp-content/uploads/2025/07/carlos-mendes-eletricista.jpg') center/cover;
      border: 3px solid white;
      box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }
    .profile-name { 
      font-size: 1.2rem; 
      font-weight:600; 
      text-align:center; 
      color: white;
    }
    .nav-menu { 
      width:100%; 
      margin-top: 20px;
    }
    .nav-menu li {
      margin: 12px 0;
    }
    .nav-menu a {
      display:flex; 
      align-items:center; 
      gap:10px;
      padding:8px 12px;
      border-radius:6px;
      transition:background .3s;
      color: white;
    }
    .nav-menu a:hover { 
      background: rgba(255,255,255,0.2); 
    }

    /* Ícones Exemplo (usando Unicode) */
    .nav-menu i { 
      font-style: normal; 
      font-size: 1.2rem;
    }

    /* Main */
    .main {
      background: #f5f6fa;
      padding: 20px;
      overflow-y:auto;
    }

    /* Cabeçalho */
    .header {
      display:flex; 
      justify-content:space-between; 
      align-items:center;
      margin-bottom: 30px;
      flex-wrap: wrap;
    }

    .search-container {
      display: flex;
      flex: 1;
      max-width: 400px;
      margin-right: 20px;
    }

    .search-container input {
      flex: 1;
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 6px 0 0 6px;
      font-size: 0.95rem;
    }

    .search-container button {
      padding: 10px 20px;
      background: #F39C12;
      color: white;
      border: none;
      border-radius: 0 6px 6px 0;
      cursor: pointer;
      transition: background 0.3s;
    }

    .search-container button:hover {
      background: #e67e00;
    }

    .notif {
      position:relative;
      font-size:1.2rem;
      cursor:pointer;
      background: #F39C12;
      padding: 10px 15px;
      border-radius: 6px;
      transition: background 0.3s;
    }

    .notif:hover {
      background: #e67e00;
    }

    .notif-dropdown {
      position: absolute;
      top: 50px;
      right: 0;
      width: 250px;
      background: white;
      border-radius: 6px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      padding: 15px;
      display: none;
      z-index: 100;
    }

    .notif:hover .notif-dropdown {
      display: block;
    }

    .notif-dropdown h4 {
      margin-bottom: 10px;
      font-size: 1rem;
      color: #2980B9;
    }

    .notif-dropdown ul {
      list-style: none;
      padding: 0;
    }

    .notif-dropdown li {
      padding: 5px 0;
      font-size: 0.9rem;
      color: #333;
    }

    /* Cartões KPI */
    .kpi-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 20px;
      margin-bottom: 30px;
    }

    .card {
      background:white;
      border-radius:8px;
      padding:15px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card .value { 
      font-size:1.5rem; 
      font-weight:700; 
      color:#2980B9; 
    }

    .card .label { 
      font-size:0.9rem; 
      color:#7F8C8D; 
      margin-top:5px; 
    }

    /* Painel de Desempenho */
    .performance {
      margin-bottom: 30px;
    }

    .performance h2 {
      font-size: 1.5rem;
      margin-bottom: 20px;
      color: #2980B9;
    }

    .charts {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    @media(max-width:768px) {
      .charts {
        grid-template-columns: 1fr;
      }
    }

    .chart {
      background:white;
      border-radius:8px;
      padding:15px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .chart h3 {
      margin-bottom:10px;
      font-size:1.1rem;
      color:#2980B9;
    }

    /* Gráfico de Barras */
    .bar-chart .bars {
      display:flex;
      justify-content:space-between;
      height:120px;
      align-items:flex-end;
    }

    .bar-chart .bar {
      width:15%;
      background:#3498DB;
      border-radius:4px 4px 0 0;
      position:relative;
    }

    .bar-chart .bar span {
      position:absolute;
      top:-20px;
      left:50%;
      transform:translateX(-50%);
      font-size:0.8rem;
      color:#2C3E50;
    }

    /* Gráfico de Pizza */
    .pie-chart .pie-container {
      position: relative;
      width: 200px;
      height: 200px;
      margin: 20px auto;
    }

    .pie-chart .slice {
      position: absolute;
      width: 100%;
      height: 100%;
      clip: rect(0px, 200px, 200px, 100px);
      border-radius: 50%;
    }

    .slice1 {
      background: #3498DB;
      clip: rect(0px, 200px, 200px, 100px);
      transform: rotate(120deg);
    }

    .slice2 {
      background: #F39C12;
      clip: rect(0px, 200px, 200px, 100px);
      transform: rotate(240deg);
    }

    .slice3 {
      background: #27AE60;
      clip: rect(0px, 200px, 200px, 100px);
      transform: rotate(360deg);
    }

    .pie-chart .center-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 1.2rem;
      font-weight: bold;
    }

    .pie-chart .legend {
      margin-top: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .legend-color {
      display: inline-block;
      width: 20px;
      height: 20px;
      border-radius: 3px;
      margin-right: 5px;
    }

    .color1 { background: #3498DB; }
    .color2 { background: #F39C12; }
    .color3 { background: #27AE60; }

    /* Gestão de Serviços */
    .services {
      margin-bottom: 30px;
    }

    .services .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .service-card {
      background: white;
      border-radius: 8px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }

    .service-card:hover {
      transform: translateY(-5px);
    }

    .service-card h4 {
      margin-bottom: 10px;
      color: #2980B9;
    }

    .service-card p {
      margin-bottom: 15px;
      color: #7F8C8D;
    }

    .actions {
      display: flex;
      justify-content: center;
      gap: 10px;
    }

    .btn-edit, .btn-delete {
      padding: 6px 12px;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      font-size: 0.8rem;
    }

    .btn-edit {
      background: #3498DB;
      color: white;
    }

    .btn-delete {
      background: #E74C3C;
      color: white;
    }

    .service-card.disabled {
      background: #f1f2f6;
      cursor: not-allowed;
    }

    .service-card.disabled h4 {
      color: #7F8C8D;
    }

    /* Controle de Disponibilidade */
    .availability {
      margin-bottom: 30px;
    }

    .availability h3 {
      font-size: 1.1rem;
      color: #2980B9;
      margin-bottom: 20px;
    }

    .availability-days {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin-bottom: 20px;
    }

    .day {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .time-range {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .time-range label {
      font-weight: 600;
    }

    .time-range input[type="time"] {
      padding: 6px 10px;
      border-radius: 4px;
      border: 1px solid #ddd;
    }

    /* Tabela de Histórico */
    .table-container {
      background:white; 
      border-radius:8px; 
      padding:15px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .table-container h3 { 
      margin-bottom:10px; 
      font-size:1.1rem; 
      color:#2980B9; 
    }

    table {
      width:100%; 
      border-collapse:collapse;
    }

    th, td {
      text-align:left; 
      padding:10px; 
      border-bottom:1px solid #ddd;
      font-size:0.9rem;
    }

    th {
      background:#f1f2f6;
      color: #2980B9;
    }

    /* WhatsApp Button */
    .whatsapp-btn {
      position: fixed;
      right: 20px;
      bottom: 20px;
      background: #25CC69;
      color: white;
      padding: 15px 20px;
      border-radius: 50px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      transition: background 0.3s;
      z-index: 1000;
      text-align: center;
    }

    .whatsapp-btn:hover {
      background: #1fbf5d;
    }

    .chat-limit {
      font-size: 0.7rem;
      margin-top: 2px;
    }

    @media(max-width: 768px) {
      .whatsapp-btn {
        right: 10px;
        bottom: 70px;
        padding: 12px 16px;
        font-size: 14px;
      }
    }/* End custom CSS */