.theme-pbi .logo-icon {
  background: conic-gradient(from 0deg, #f3d913, #f1a104, transparent);
}
.theme-pbi .btn-primary {
  background: #f3d913;
  color: #000;
}
.theme-pbi .btn-primary:hover {
  background: rgb(200.7903225806, 178.6693548387, 10.2096774194);
}
.theme-pbi .tag {
  background: rgba(243, 217, 19, 0.1);
  color: #f3d913;
}
.theme-pbi .nav-item.active {
  background: rgba(243, 217, 19, 0.1);
  color: #f3d913;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #020617;
  color: #f8fafc;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

.content-header h2, p {
  margin-left: 25px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #10b981, #3b82f6, transparent);
  display: inline-block;
  position: relative;
  vertical-align: middle;
  margin-right: 10px;
}
.logo-icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: #020617;
  border-radius: 50%;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}
@media (max-width: 768px) {
  .dashboard-layout {
    grid-template-columns: 1fr;
  }
}

.sidebar {
  background: rgb(21.404494382, 29.2528089888, 42.095505618);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.sidebar .brand {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}
.sidebar .brand .brand-name {
  font-weight: bold;
  font-size: 1.2rem;
}
.sidebar .nav-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.sidebar .nav-item {
  background: transparent;
  border: none;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.8rem;
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 0.5rem;
}
.sidebar .nav-item:hover, .sidebar .nav-item.active {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.project-card {
  background: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.project-card:hover {
  transform: translateY(-5px);
}
.project-card .project-info {
  padding: 1.5rem;
}
.project-card .project-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.project-card .project-info p {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 1rem;
  font-family: "Roboto", sans-serif;
}

.mockup-window {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgb(38.595505618, 52.7471910112, 75.904494382);
}
.mockup-window .window-header {
  padding: 10px;
  display: flex;
  gap: 5px;
}
.mockup-window .window-header .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #94a3b8;
  opacity: 0.3;
}
.mockup-window .placeholder-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(45deg, #1e293b, rgb(43.7528089888, 59.795505618, 86.0471910112));
  display: flex;
  justify-content: center;
  align-items: center;
  color: #94a3b8;
  font-size: 0.7rem;
  letter-spacing: 1px;
}

.tag {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  margin-right: 5px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.btn-primary {
  background: #10b981;
  color: #020617;
  border: none;
  padding: 0.8rem;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  transition: 0.3s;
}
.btn-primary:hover {
  background: rgb(11.9402985075, 138.0597014925, 96.2686567164);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 1.5rem;
}
.modal-overlay.active {
  display: flex;
}
.modal-overlay .modal-content {
  background: #1e293b;
  width: 100%;
  max-width: 1100px;
  height: 80vh;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modal-overlay .modal-header {
  padding: 1rem;
  background: rgb(35.1573033708, 48.0483146067, 69.1426966292);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-overlay .modal-header h2 {
  font-size: 1rem;
}
.modal-overlay .modal-header .close-modal {
  cursor: pointer;
}
.modal-overlay .modal-header .close-modal:hover {
  color: #10b981;
}
.modal-overlay .modal-body {
  flex: 1;
}
.modal-overlay .modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.home-layout {
  background-color: #020617;
  color: #f8fafc;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 90%;
  max-width: 1100px;
  text-align: center;
}

.grid-portafolio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .grid-portafolio {
    grid-template-columns: 1fr;
  }
}

.info-card {
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.info-card:hover {
  transform: translateY(-8px);
  border-color: #10b981;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.info-card .material-symbols-outlined {
  font-size: 40px;
  color: #10b981;
  margin-bottom: 1rem;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  width: 100%;
}
@media (max-width: 768px) {
  .dashboard-layout {
    grid-template-columns: 1fr;
  }
}

.project-card {
  background: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.project-card:hover {
  transform: translateY(-5px);
}
.project-card .project-info {
  padding: 1.5rem;
}/*# sourceMappingURL=theme.css.map */