* {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, serif;
  box-sizing: border-box;
  scroll-behavior: smooth;
  user-select: none;
}

.iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.body {
  background: linear-gradient(0deg, var(--colorSecundario) 20%, var(--colorPrincipal) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .body {
    padding: 0;
  }
}

.login-container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  height: 80vh;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
@media (max-width: 1024px) {
  .login-container {
    flex-direction: column;
    height: auto;
    margin: 20px;
  }
}
@media (max-width: 768px) {
  .login-container {
    margin: 0;
    border-radius: 0;
    height: 100vh;
  }
}

.login-left {
  flex: 1;
  background: linear-gradient(0deg, #e6efff 20%, #c8d5ff 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px) saturate(150%) contrast(120%);
  -webkit-backdrop-filter: blur(30px) saturate(150%) contrast(120%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 0 12px 25px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}
@media (max-width: 1024px) {
  .login-left {
    min-height: 40vh;
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .login-left {
    min-height: 35vh;
    padding: 20px;
  }
}

.login-left::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: conic-gradient(from 0deg at 30% 30%, rgba(255, 255, 255, 0.4) 0deg, transparent 60deg, rgba(255, 255, 255, 0.2) 120deg, transparent 180deg, rgba(255, 255, 255, 0.3) 240deg, transparent 300deg, rgba(255, 255, 255, 0.4) 360deg);
  border-radius: 50%;
  filter: blur(25px);
  animation: liquidRotate 20s linear infinite;
  pointer-events: none;
}

.login-left::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 10%;
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse 60% 40% at 70% 30%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.3) 25%, rgba(255, 255, 255, 0.1) 50%, transparent 75%);
  border-radius: 50%;
  filter: blur(15px);
  animation: liquidFloat 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes liquidRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}
@keyframes liquidFloat {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.05);
  }
}
.brand-logo {
  z-index: 10;
}
.brand-logo h1 {
  font-size: 24px;
  font-weight: 800;
  color: var(--colorTextoContrario);
  letter-spacing: 1px;
}
@media (max-width: 480px) {
  .brand-logo h1 {
    font-size: 20px;
  }
}
.brand-logo span {
  font-size: 14px;
  color: var(--colorTextoContrario);
  font-weight: 500;
  letter-spacing: 2px;
}
@media (max-width: 480px) {
  .brand-logo span {
    font-size: 12px;
  }
}

.hero-content {
  z-index: 10;
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .hero-content {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .hero-content {
    margin-top: 20px;
  }
}
.hero-content h2 {
  font-size: 24px;
  color: var(--colorTextoContrario);
  margin-bottom: 20px;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .hero-content h2 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 18px;
  }
}
.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--colorTextoContrario);
  line-height: 1.1;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 24px;
  }
}

p {
  color: var(--colorTextoContrario);
}

.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@media (max-width: 768px) {
  .floating-icons {
    display: none;
  }
}

.icon-item {
  position: absolute;
  background: var(--colorPrincipal);
  color: var(--colorTextoContrario);
  border-radius: 12px;
  padding: 12px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
  animation: float 6s ease-in-out infinite;
}
.icon-item.css-icon {
  top: 20%;
  right: 20%;
  animation-delay: 0s;
}
.icon-item.html-icon {
  top: 60%;
  right: 15%;
  animation-delay: -2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.icon-item.html-icon small {
  font-size: 10px;
  margin-top: 2px;
}
.icon-item.code-icon {
  top: 40%;
  right: 35%;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
.login-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.login-form-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 50px;
  background: var(--backgroundTema);
}
@media (max-width: 1024px) {
  .login-form-container {
    padding: 40px 30px;
  }
}
@media (max-width: 768px) {
  .login-form-container {
    padding: 30px 20px;
  }
}

.login-header {
  text-align: center;
  margin-bottom: 40px;
}
.login-header h2 {
  font-size: 32px;
  color: var(--colorTexto);
  margin-bottom: 8px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .login-header h2 {
    font-size: 28px;
  }
}
.login-header p {
  color: var(--colorTextoAlternativos);
  font-size: 16px;
}

.login-form {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.login-form .form-group {
  margin-bottom: 20px;
}
.login-form .form-group input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--colorSecundario);
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: var(--backgroundTema);
}
@media (max-width: 480px) {
  .login-form .form-group input {
    padding: 14px 16px;
  }
}
.login-form .form-group input:focus {
  outline: none;
  border-color: var(--colorPrincipal);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}
.login-form .form-group input::placeholder {
  color: var(--colorTexto);
}
.login-form .form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .login-form .form-options {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
.login-form .checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.login-form .checkbox-group input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: var(--colorPrincipal);
}
.login-form .checkbox-group label {
  color: var(--colorTextoAlternativos);
  font-size: 14px;
  cursor: pointer;
}
.login-form .forgot-password {
  color: var(--colorPrincipal);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.login-form .forgot-password:hover {
  text-decoration: underline;
}
.login-form .login-button {
  width: 100%;
  padding: 16px;
  background: var(--colorPrincipal);
  color: var(--colorTextoContrario);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .login-form .login-button {
    padding: 14px;
  }
}
.login-form .login-button:hover {
  background: var(--hover);
}
.login-form .login-button:hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}
.login-form .signup-link {
  text-align: center;
  color: var(--colorTextoAlternativos);
  font-size: 14px;
}
.login-form .signup-link a {
  color: var(--colorPrincipal);
  text-decoration: none;
  font-weight: 500;
  margin-left: 5px;
}
.login-form .signup-link a:hover {
  text-decoration: underline;
}

.bodyAdm {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background: #000000;
  background: linear-gradient(0deg, rgb(0, 0, 0) 20%, rgb(12, 78, 166) 100%);
}

.wrapper {
  width: 420px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(9px);
  color: #fff;
  border-radius: 12px;
  padding: 30px 40px;
}

.wrapper h1 {
  font-size: 36px;
  text-align: center;
}

.wrapper .input-box {
  position: relative;
  width: 100%;
  height: 50px;
  margin: 30px 0;
}

.input-box input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  font-size: 16px;
  color: #fff;
  padding: 20px 45px 20px 20px;
}

.input-box input::placeholder {
  color: #fff;
}

.input-box i {
  position: absolute;
  right: 20px;
  top: 30%;
  transform: translate(-50%);
  font-size: 20px;
}

.wrapper .remember-forgot {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  margin: -15px 0 15px;
}

.remember-forgot label input {
  accent-color: #fff;
  margin-right: 3px;
}

.remember-forgot a {
  color: #fff;
  text-decoration: none;
}

.remember-forgot a:hover {
  text-decoration: underline;
}

.wrapper .btn {
  width: 100%;
  height: 45px;
  background: #fff;
  border: none;
  outline: none;
  border-radius: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 16px;
  color: #333;
  font-weight: 600;
}

.wrapper .register-link {
  font-size: 14.5px;
  text-align: center;
  margin: 20px 0 15px;
}

.register-link p a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.register-link p a:hover {
  text-decoration: underline;
}

.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: white;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  max-width: 400px;
  position: relative;
  transform: translateX(0%);
  transition: transform 0.3s ease;
  animation: login 1s ease;
}
.toast.show {
  transform: translateX(0%);
}
.toast.info .toast-icon {
  background: #2196f3;
}
.toast.info .toast-progress {
  background: #2196f3;
}
.toast.error .toast-icon {
  background: #f44336;
}
.toast.error .toast-progress {
  background: #f44336;
}
.toast.success .toast-icon {
  background: #4caf50;
}
.toast.success .toast-progress {
  background: #4caf50;
}

.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  color: white;
  flex-shrink: 0;
}

.toast-content {
  flex: 1;
}

.toast-title {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.toast-message {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

.toast-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  font-size: 16px;
  color: #999;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
}
.toast-close:hover {
  background: rgba(0, 0, 0, 0.05);
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 0 0 12px 12px;
  transition: width 0.1s ease;
}

.demo-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.btn.btn-info {
  background: #2196f3;
  color: white;
}
.btn.btn-info:hover {
  background: #1976d2;
}
.btn.btn-error {
  background: #f44336;
  color: white;
}
.btn.btn-error:hover {
  background: #d32f2f;
}
.btn.btn-success {
  background: #4caf50;
  color: white;
}
.btn.btn-success:hover {
  background: #388e3c;
}

@keyframes login {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}
.app-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100vh;
}
@media (max-width: 768px) {
  .app-container {
    flex-direction: column;
  }
}

.activeicon {
  color: var(--colorPrincipal);
}

.sidebar {
  width: 60px;
  background-color: var(--backgroundTema);
  border-right: 1.5px solid var(--backgroundTemaAlternativo);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  position: sticky;
  top: 0;
  height: 100vh;
}
@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    height: auto;
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 20px;
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
  }
}

.sidebar-header {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .sidebar-header {
    margin-bottom: 0;
  }
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--colorPrincipal), var(--colorSecundario));
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-symbol {
  width: 20px;
  height: 20px;
  background-color: var(--colorTextoSecundario);
  border-radius: 4px;
  position: relative;
}
.logo-symbol::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 6px;
  height: 6px;
  background-color: var(--colorPrincipal);
  border-radius: 2px;
}
.logo-symbol::after {
  content: "";
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 6px;
  height: 6px;
  background-color: var(--colorSecundario);
  border-radius: 2px;
}

.sidebar-nav {
  flex: 1;
}
@media (max-width: 768px) {
  .sidebar-nav {
    flex: none;
    margin: 0 20px;
  }
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  .nav-list {
    flex-direction: row;
    gap: 15px;
  }
}

.nav-item {
  width: 40px;
  height: 40px;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  color: var(--colorTextoAlternativos);
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav-link:hover {
  background-color: #f1f5f9;
  color: var(--colorPrincipal);
}

.nav-icon {
  width: 20px;
  height: 20px;
  background-color: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.home-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 01-2 2H5a2 2 0 01-2-2z'/%3E%3C/svg%3E");
}

.layers-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5z'/%3E%3Cpath d='M2 17l10 5 10-5'/%3E%3C/svg%3E");
}

.chart-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M18 20V10'/%3E%3Cpath d='M12 20V4'/%3E%3Cpath d='M6 20v-6'/%3E%3C/svg%3E");
}

.tool-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M14.7 6.3a1 1 0 000 1.4l1.6 1.6a1 1 0 001.4 0l3.77-3.77a6 6 0 01-7.94 7.94l-6.91 6.91a2.12 2.12 0 01-3-3l6.91-6.91a6 6 0 017.94-7.94l-3.76 3.76z'/%3E%3C/svg%3E");
}

.folder-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M22 19a2 2 0 01-2 2H4a2 2 0 01-2-2V5a2 2 0 012-2h5l2 3h9a2 2 0 012 2z'/%3E%3C/svg%3E");
}

.upload-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4'/%3E%3Cpolyline points='17,8 12,3 7,8'/%3E%3Cline x1='12' y1='3' x2='12' y2='15'/%3E%3C/svg%3E");
}

.sidebar-footer {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
@media (max-width: 768px) {
  .sidebar-footer {
    flex-direction: row;
    gap: 10px;
  }
}

.theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  color: var(--colorTextoAlternativos);
  transition: all 0.3s ease;
}
.theme-toggle:hover {
  background-color: #f1f5f9;
  color: var(--colorPrincipal);
}

.theme-icon {
  width: 20px;
  height: 20px;
  background-color: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.sun-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='5'/%3E%3Cline x1='12' y1='1' x2='12' y2='3'/%3E%3Cline x1='12' y1='21' x2='12' y2='23'/%3E%3C/svg%3E");
}

.moon-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z'/%3E%3C/svg%3E");
}

.user-profile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e2e8f0;
}

.user-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-content {
  width: 20vw;
  background-color: var(--backgroundTema);
  padding: 20px;
  overflow-y: hidden;
  height: 100vh;
}
@media (max-width: 1024px) {
  .main-content {
    width: 250px;
  }
}
@media (max-width: 768px) {
  .main-content {
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding: 15px;
  }
}

.content-panel {
  margin-bottom: 30px;
  height: 89%;
}
.content-panel:last-child {
  margin-bottom: 0;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
}

.panel-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--colorTexto);
  margin: 0;
}

.collapse-btn {
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  font-size: 18px;
  color: var(--colorTextoAlternativos);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.collapse-btn:hover {
  background-color: #f1f5f9;
  color: var(--colorPrincipal);
}

.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.menu-item {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.menu-item.active {
  background: linear-gradient(135deg, var(--colorPrincipal), var(--colorSecundario));
}
.menu-item.active .menu-link {
  color: var(--colorTextoSecundario);
}
.menu-item.active .menu-icon {
  background-color: var(--colorTextoSecundario);
}
.menu-item.active .menu-badge {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--colorTextoSecundario);
}
.menu-item:hover:not(.active) {
  background-color: #f1f5f9;
}
.menu-item:hover:not(.active) .menu-link {
  color: var(--colorPrincipal);
}
.menu-item:hover:not(.active) .menu-icon {
  background-color: var(--colorPrincipal);
}

.menu-link {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--colorTexto);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  gap: 12px;
}

.menu-icon {
  width: 16px;
  height: 16px;
  background-color: var(--colorTextoAlternativos);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: all 0.3s ease;
}

.overview-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 01-2 2H5a2 2 0 01-2-2z'/%3E%3C/svg%3E");
}

.recommendations-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
}

.insights-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M9 11H5a2 2 0 00-2 2v7a2 2 0 002 2h4a2 2 0 002-2v-7a2 2 0 00-2-2z'/%3E%3Cpath d='M19 4H15a2 2 0 00-2 2v14a2 2 0 002 2h4a2 2 0 002-2V6a2 2 0 00-2-2z'/%3E%3C/svg%3E");
}

.campaigns-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5z'/%3E%3Cpath d='M2 17l10 5 10-5'/%3E%3C/svg%3E");
}

.keywords-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='M21 21l-4.35-4.35'/%3E%3C/svg%3E");
}

.reporting-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M18 20V10'/%3E%3Cpath d='M12 20V4'/%3E%3Cpath d='M6 20v-6'/%3E%3C/svg%3E");
}

.ad-groups-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M3 3h18v18H3zM9 9h6v6H9z'/%3E%3C/svg%3E");
}

.extensions-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M20.24 12.24a6 6 0 0 0-8.49-8.49L5 10.5V19h8.5z'/%3E%3Cline x1='16' y1='8' x2='2' y2='22'/%3E%3C/svg%3E");
}

.landing-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14,2 14,8 20,8'/%3E%3C/svg%3E");
}

.settings-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 1v6m0 10v6m11-7h-6m-10 0H1m15.5-6.5l-4.24 4.24m-8.49 0L7.5 6.5'/%3E%3C/svg%3E");
}

.menu-text {
  flex: 1;
}

.menu-badge {
  background-color: #e2e8f0;
  color: var(--colorTextoAlternativos);
  font-size: 12px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 12px;
  min-width: 20px;
  text-align: center;
}

.team-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background-color: var(--backgroundTemaAlternativo);
  border-radius: 12px;
  margin-top: 20px;
  border: 1px solid #e2e8f0;
}

.team-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e2e8f0;
}

.team-details {
  flex: 1;
}

.team-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--colorTexto);
  margin: 0 0 4px 0;
}

.team-id {
  font-size: 12px;
  color: var(--colorTextoAlternativos);
  margin: 0;
}

.team-settings {
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  color: var(--colorTextoAlternativos);
  cursor: pointer;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.team-settings:hover {
  background-color: #e2e8f0;
  color: var(--colorPrincipal);
}

.content-area {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: var(--backgroundTemaAlternativo);
}
@media (max-width: 768px) {
  .content-area {
    padding: 15px;
  }
}

.content-container {
  flex: 1;
  overflow-y: auto;
  background-color: var(--backgroundTema);
  border-radius: 12px;
  padding: 10px 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  min-height: 0;
  overflow: hidden;
  overflow-y: hidden;
}
@media (max-width: 768px) {
  .content-container {
    padding: 15px;
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .main-content {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--backgroundTema);
    z-index: 1000;
  }
  .main-content.active {
    display: block;
  }
  .sidebar {
    position: relative;
    z-index: 1001;
  }
  .app-container {
    position: relative;
  }
  .content-panel {
    height: auto;
  }
  .content-area {
    width: 100%;
  }
}
.containerbody {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
}
.containerbody .rowone {
  width: 100%;
  height: 10vh;
  border-radius: 10px;
  background-color: var(--backgroundTema);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  box-sizing: border-box;
}
.containerbody .rowone .boxTitle {
  width: 50%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.containerbody .rowone .boxTitle h2 {
  color: var(--colorTexto);
  text-transform: uppercase;
}
.containerbody .rowone .filters-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}
.containerbody .rowone .filters-container .search-wrapper {
  width: 50vh;
}
.containerbody .rowone .filters-container .search-wrapper .search-input-container {
  position: relative;
  width: 100%;
}
.containerbody .rowone .filters-container .search-wrapper .search-input-container .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #666;
  pointer-events: none;
  z-index: 1;
}
.containerbody .rowone .filters-container .search-wrapper .search-input-container .search-input {
  width: 100%;
  height: 40px;
  padding: 0 15px 0 40px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  background: white;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.containerbody .rowone .filters-container .search-wrapper .search-input-container .search-input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}
.containerbody .rowone .filters-container .search-wrapper .search-input-container .search-input::placeholder {
  color: #999;
}
.containerbody .rowone .filters-container .date-filter {
  position: relative;
  min-width: 140px;
}
.containerbody .rowone .filters-container .date-filter .date-input {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  background: white;
  cursor: pointer;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.containerbody .rowone .filters-container .date-filter .date-input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}
.containerbody .rowone .filters-container .date-filter .date-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
}
.containerbody .rowone .filters-container .date-filter .date-label {
  position: absolute;
  top: -8px;
  left: 12px;
  background: var(--backgroundTema);
  padding: 0 4px;
  font-size: 12px;
  color: #666;
  pointer-events: none;
}
.containerbody .rowone .filters-container .status-filter {
  min-width: 160px;
}
.containerbody .rowone .filters-container .status-filter .status-select {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  background: white;
  cursor: pointer;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.containerbody .rowone .filters-container .status-filter .status-select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}
.containerbody .rowone .filters-container .status-filter .status-select option {
  padding: 8px;
}
@media (max-width: 768px) {
  .containerbody .rowone {
    height: auto;
    min-height: 10vh;
    padding: 1rem;
  }
  .containerbody .rowone .filters-container {
    flex-direction: column;
    gap: 0.75rem;
  }
  .containerbody .rowone .filters-container .search-wrapper,
  .containerbody .rowone .filters-container .date-filter,
  .containerbody .rowone .filters-container .status-filter {
    width: 100%;
    min-width: unset;
  }
}
@media (max-width: 480px) {
  .containerbody .rowone {
    padding: 0.75rem;
  }
  .containerbody .rowone .filters-container {
    gap: 0.5rem;
  }
  .containerbody .rowone .filters-container .search-wrapper .search-input-container .search-input {
    height: 36px;
    font-size: 13px;
  }
  .containerbody .rowone .filters-container .search-wrapper .search-input-container .search-icon {
    width: 16px;
    height: 16px;
  }
  .containerbody .rowone .filters-container .date-filter .date-input,
  .containerbody .rowone .filters-container .status-filter .status-select {
    height: 36px;
    font-size: 13px;
  }
}
@media (prefers-color-scheme: dark) {
  .containerbody .rowone .filters-container .search-wrapper .search-input-container .search-icon {
    color: #ccc;
  }
  .containerbody .rowone .filters-container .search-wrapper .search-input-container .search-input {
    border-color: var(--colorPrincipal);
    color: white;
  }
  .containerbody .rowone .filters-container .search-wrapper .search-input-container .search-input::placeholder {
    color: #aaa;
  }
  .containerbody .rowone .filters-container .search-wrapper .search-input-container .search-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
  }
  .containerbody .rowone .filters-container .date-filter .date-input {
    border-color: var(--colorPrincipal);
    color: var(--colorTexto);
  }
  .containerbody .rowone .filters-container .date-filter .date-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
  }
  .containerbody .rowone .filters-container .date-filter .date-label {
    color: var(--colorPrincipal);
  }
  .containerbody .rowone .filters-container .status-filter .status-select {
    border-color: var(--colorPrincipal);
    color: var(--colorTexto);
  }
  .containerbody .rowone .filters-container .status-filter .status-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
  }
  .containerbody .rowone .filters-container .status-filter .status-select option {
    background: #333;
    color: white;
  }
}
.containerbody .rowtow {
  width: 100%;
  height: 5vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  gap: 10px;
}
.containerbody .rowtow .cardsnav {
  width: 2.5%;
  height: 100%;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.containerbody .rowtow .cardsnav i {
  font-size: 1.4rem;
  color: var(--colorPrincipal);
}
.containerbody .rowtow .cardsnav h2 {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--colorPrincipal);
}
.containerbody .rowtow .cardsnav:hover {
  background-color: var(--hover);
}
.containerbody .rowtow .activecards {
  background-color: color-mix(in srgb, var(--colorPrincipal), transparent 85%);
}

.container {
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

.minimal-table {
  width: 100%;
  background: var(--backgroundTema);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), -3px -3px 25px rgba(0, 0, 0, 0.08), -1px -20px 40px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
}
.minimal-table thead {
  background: linear-gradient(135deg, var(--colorPrincipal) 0%, var(--colorSecundario) 100%);
  position: relative;
}
.minimal-table thead::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}
.minimal-table thead th {
  padding: 24px 32px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  color: var(--backgroundTema);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}
.minimal-table thead th::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}
.minimal-table thead th:last-child::after {
  display: none;
}
.minimal-table thead th:first-child {
  padding-left: 40px;
}
.minimal-table thead th:last-child {
  padding-right: 40px;
}
.minimal-table tbody tr {
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--backgroundTema);
}
.minimal-table tbody tr:nth-child(even) {
  background: var(--backgroundTabla);
}
.minimal-table tbody tr:hover {
  background: rgba(37, 99, 235, 0.02);
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
}
.minimal-table tbody tr:last-child td {
  border-bottom: none;
}
.minimal-table tbody td {
  padding: 20px 15px;
  font-size: 15px;
  color: #334155;
  border-bottom: 1px solid #e2e8f0;
  font-weight: 400;
  vertical-align: middle;
}
.minimal-table tbody td:first-child {
  padding-left: 40px;
  font-weight: 500;
  color: #1e293b;
}
.minimal-table tbody td:last-child {
  padding-right: 40px;
}

.status {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  align-items: center;
  position: relative;
}
.status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 8px;
}
.status.available {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.2);
}
.status.available::before {
  background: #059669;
}
.status.limited {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
  color: #d97706;
  border: 1px solid rgba(217, 119, 6, 0.2);
}
.status.limited::before {
  background: #d97706;
}
.status.unavailable {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.2);
}
.status.unavailable::before {
  background: #dc2626;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
    margin: 40px auto;
  }
  .minimal-table th,
  .minimal-table td {
    padding: 16px 24px;
  }
  .minimal-table th:first-child,
  .minimal-table td:first-child {
    padding-left: 32px;
  }
  .minimal-table th:last-child,
  .minimal-table td:last-child {
    padding-right: 32px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
    margin: 24px auto;
  }
  .minimal-table {
    border-radius: 8px;
  }
  .minimal-table th,
  .minimal-table td {
    padding: 12px 16px;
    font-size: 14px;
  }
  .minimal-table th:first-child,
  .minimal-table td:first-child {
    padding-left: 20px;
  }
  .minimal-table th:last-child,
  .minimal-table td:last-child {
    padding-right: 20px;
  }
  .minimal-table th {
    font-size: 11px;
  }
}
.containerLoader {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 255, 255, 0.15) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(0, 255, 255, 0.15) 75%, rgba(0, 123, 255, 0.1) 100%), linear-gradient(45deg, rgba(255, 255, 255, 0.4) 0%, transparent 30%, transparent 70%, rgba(255, 255, 255, 0.4) 100%);
  backdrop-filter: blur(10px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
}

.loader {
  width: 84px;
  height: 84px;
  position: relative;
  overflow: hidden;
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--colorPrincipal) 0%, var(--colorSecundario) 100%);
  transform: translate(-50%, 100%) scale(0);
  animation: push 1.5s infinite ease-in;
}

.loader:after {
  animation-delay: 0.75s;
}

@keyframes push {
  0% {
    transform: translate(-50%, 100%) scale(1);
  }
  15%, 25% {
    transform: translate(-50%, 50%) scale(1);
  }
  50%, 75% {
    transform: translate(-50%, -30%) scale(0.5);
  }
  80%, 100% {
    transform: translate(-50%, -50%) scale(0);
  }
}
