/* Start custom CSS for html, class: .elementor-element-d7f6a63 */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #f5f5f5;
}

/* Garante que o dashboard ocupe toda a altura da viewport */
.dashboard {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

/* SIDEBAR */
.sidebar {
  width: 250px;
  background: #2c3e50;
  display: flex;
  flex-direction: column;
  color: white;
  padding: 20px 0;
  overflow-y: auto;
  height: 100vh;
  box-sizing: border-box;
  position: relative;
}



.profile-pic {
  width: 80px;
  height: 80px;
  background: #34495e;
  border-radius: 50%;
  margin: 0 auto 15px;
}

.profile-name {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
}

.nav-menu {
  list-style: none;
}

.nav-menu li {
  margin-bottom: 5px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  transition: background 0.3s;
}

.nav-menu a:hover {
  background: #34495e;
}

.nav-menu a i {
  margin-right: 10px;
  font-size: 18px;
}

/* MAIN */
.main {
  flex-grow: 1;
  width: calc(100% - 250px);
  padding: 20px;
  overflow-y: auto;
}


.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-container {
  display: flex;
  gap: 10px;
}

.search-container input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 300px;
}

.search-container button {
  padding: 10px 20px;
  background: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.notif {
  position: relative;
  cursor: pointer;
}

.notif-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  width: 250px;
  display: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

.notif:hover .notif-dropdown {
  display: block;
}

.kpi-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.card .value {
  font-size: 24px;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 5px;
}

.card .label {
  color: #7f8c8d;
  font-size: 14px;
}

.promotions {
  background: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.promotions h2 {
  margin-bottom: 20px;
  color: #2c3e50;
}

.promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.promo-card {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.promo-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.btn-orange {
  background: white;
  color: #ee5a24;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 10px;
}

.table-container {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.table-container h3 {
  margin-bottom: 15px;
  color: #2c3e50;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

th {
  background: #f8f9fa;
  font-weight: 600;
}

.status {
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

.status.completed {
  background: #d4edda;
  color: #155724;
}

.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  padding: 15px 20px;
  border-radius: 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s;
  z-index: 1000;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .sidebar {
    width: 70px;
  }
  .sidebar .profile-name,
  .sidebar .nav-menu a span {
    display: none;
  }
  .sidebar .nav-menu a {
    justify-content: center;
    padding: 15px;
  }
  .sidebar .nav-menu a i {
    margin-right: 0;
    font-size: 20px;
  }
  .main {
    margin-left: 70px;
    width: calc(100% - 70px);
  }
  .search-container input {
    width: 150px;
  }
}/* End custom CSS */