@charset "UTF-8";
@import url("../styles.css");
#dashboard .nav-toggle {
  display: none;
}
#dashboard header {
  background-color: white;
  border-bottom: 1px solid #e5e7eb;
  height: 150px;
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
#dashboard header .top {
  background: royalblue;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
}
#dashboard header .top .contact {
  display: flex;
  gap: 20px;
}
#dashboard header .top .contact a {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: center;
  opacity: 0.9;
  transition: opacity 0.2s;
}
#dashboard header .top .contact a:hover {
  opacity: 1;
}
#dashboard header .top .contact a i {
  filter: invert(1);
}
#dashboard header .top .contact a span {
  color: white;
  font-size: 13px;
}
#dashboard header .top .social {
  display: flex;
  gap: 20px;
  align-items: center;
}
#dashboard header .top .social span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}
#dashboard header .top .social a {
  opacity: 0.8;
  transition: opacity 0.2s;
}
#dashboard header .top .social a:hover {
  opacity: 1;
}
#dashboard header .top .social i {
  filter: invert(1);
}
#dashboard header .content {
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  gap: 20px;
  align-items: center;
}
#dashboard header .content .logo img {
  width: 100%;
}
#dashboard header .content nav {
  display: flex;
  gap: 20px;
  justify-content: center;
}
#dashboard header .content nav li a {
  padding: 14px 0;
  display: block;
}
#dashboard header .content nav li a h4 {
  margin: 0;
  font-weight: 600;
  color: black;
  transition: 0.3s;
}
#dashboard header .content nav li .cnt {
  display: none;
}
#dashboard header .content nav li:hover a h4 {
  color: royalblue;
}
#dashboard header .content nav li:hover a .arrow span::before,
#dashboard header .content nav li:hover a .arrow span::after {
  background-color: royalblue !important;
}
#dashboard header .content nav li:hover .cnt {
  display: block;
  position: absolute;
  background: white;
  box-shadow: 2px 3px 10px 2px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  min-width: 250px;
}
#dashboard header .content nav li:hover .cnt a {
  padding: 12px 20px;
  color: black;
  transition: 0.3s;
  font-weight: 500;
  border-bottom: 1px solid #eee;
}
#dashboard header .content nav li:hover .cnt a:hover {
  background: #eee;
}
#dashboard header .content nav li:hover .cnt a:first-child {
  border-radius: 10px 10px 0 0;
}
#dashboard header .content nav li:hover .cnt a:last-child {
  border-radius: 0 0 10px 10px;
  border: none;
}
#dashboard header .content li.smnu a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}
#dashboard header .content li.smnu a .arrow {
  text-align: center;
}
#dashboard header .content li.smnu a .arrow span {
  display: inline-block;
  margin-right: 8px;
  width: 10px;
  height: 10px;
  position: relative;
  cursor: pointer;
}
#dashboard header .content li.smnu a .arrow span::before,
#dashboard header .content li.smnu a .arrow span::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 6px;
  background-color: black;
  top: 0;
  transition: 0.3s;
}
#dashboard header .content li.smnu a .arrow span::before {
  transform: rotate(-45deg);
  top: 0px;
  left: 1px;
}
#dashboard header .content li.smnu a .arrow span::after {
  transform: rotate(45deg);
  top: 0px;
}
#dashboard header .content button {
  width: max-content;
  justify-self: flex-end;
}
#dashboard main {
  margin: 150px 0 0 0;
}
#dashboard main section.more {
  background: #f3f4f6;
  margin: 40px 0 0 0;
  padding: 48px 80px 64px;
}
#dashboard main section.more .more-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 36px;
}
#dashboard main section.more .more-title::after {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  background: royalblue;
  border-radius: 2px;
  margin: 12px auto 0;
}
#dashboard main section.more .more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
#dashboard main section.more .more-grid a:nth-child(1) {
  background: #2563eb;
}
#dashboard main section.more .more-grid a:nth-child(2) {
  background: #7c3aed;
}
#dashboard main section.more .more-grid a:nth-child(3) {
  background: #0891b2;
}
#dashboard main section.more .more-grid a:nth-child(4) {
  background: #059669;
}
#dashboard main section.more .more-grid a:nth-child(5) {
  background: #d97706;
}
#dashboard main section.more .more-grid a:nth-child(6) {
  background: #dc2626;
}
#dashboard main section.more a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  padding: 36px 24px;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}
#dashboard main section.more a svg {
  width: 40px;
  height: 40px;
  stroke: white;
  margin-bottom: 14px;
  flex-shrink: 0;
  opacity: 0.9;
}
#dashboard main section.more a h3 {
  margin: 0;
  color: white;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
#dashboard main section.more a:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
#dashboard main section.more a:hover svg {
  opacity: 1;
}
#dashboard {
  /* ── Responsive ────────────────────────────────────── */
}
@media (max-width: 768px) {
  #dashboard {
    /* Ocultar barra top en mobile */
  }
  #dashboard header .top {
    display: none;
  }
  #dashboard {
    /* Header más compacto */
  }
  #dashboard header {
    height: 70px;
  }
  #dashboard header .content {
    height: 70px;
    padding: 0 20px;
    grid-template-columns: 1fr auto;
  }
  #dashboard header .content .logo img {
    width: 120px;
  }
  #dashboard header .content nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
    overflow-y: auto;
    padding: 12px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 100;
  }
  #dashboard header .content nav.open {
    display: flex;
  }
  #dashboard header .content nav li {
    border-bottom: 1px solid #f3f4f6;
  }
  #dashboard header .content nav li a {
    padding: 16px 24px;
  }
  #dashboard header .content nav li a h4 {
    font-size: 16px;
  }
  #dashboard header .content nav li .cnt {
    display: none;
    position: static;
    box-shadow: none;
    border-radius: 0;
    background: #f9fafb;
  }
  #dashboard header .content nav li .cnt a {
    padding: 12px 36px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
  }
  #dashboard header .content nav li.touch-open .cnt {
    display: block;
  }
  #dashboard header .content .desktop-only {
    display: none;
  }
  #dashboard {
    /* Hamburguesa */
  }
  #dashboard .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
  }
  #dashboard .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #111827;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  #dashboard .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  #dashboard .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  #dashboard .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  #dashboard main {
    margin-top: 70px;
  }
  #dashboard main section.more {
    padding: 32px 20px 48px;
    margin: 24px 0 0;
  }
  #dashboard main section.more .more-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  #dashboard main section.more .more-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  #dashboard main section.more {
    padding: 24px 12px 36px;
  }
}
#dashboard footer {
  background: #0d1117;
  padding: 60px 80px 0;
}
#dashboard footer .top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-content: start;
  background: transparent;
  padding-bottom: 40px;
  border-bottom: none;
}
#dashboard footer .top img {
  width: 210px;
}
#dashboard footer .top li h2 {
  margin: 0 0 16px 0;
  color: white;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
#dashboard footer .top li a {
  display: block;
  width: 100%;
  color: #6b7280;
  padding: 7px 0;
  font-size: 14px;
  transition: color 0.25s, padding-left 0.25s;
}
#dashboard footer .top li a:hover {
  color: white;
  padding-left: 6px;
}
#dashboard footer .bottom {
  border-top: 1px solid #1f2937;
  padding: 18px 0;
  text-align: center;
}
#dashboard footer .bottom p {
  color: #4b5563;
  font-size: 13px;
  margin: 0;
}
@media (max-width: 768px) {
  #dashboard footer {
    padding: 40px 24px 0;
  }
  #dashboard footer .top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  #dashboard footer .top img {
    width: 160px;
  }
}
@media (max-width: 480px) {
  #dashboard footer {
    padding: 32px 16px 0;
  }
}

/*# sourceMappingURL=DashboardComponent.css.map */
