@charset "UTF-8";
.navbar-mobile {
  overflow-x: hidden !important;
  width: 100vw !important;
  max-width: 100vw !important;
}

@media (hover: none) and (pointer: coarse), screen and (max-width: 991px) {
  .floating-scrollbar {
    display: none !important;
  }
  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    width: 0 !important;
    display: none !important;
    background: transparent !important;
  }
  html,
  body {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }
}
.index.info-box {
  box-sizing: border-box;
  max-width: 100vw;
  width: 100%;
  overflow-x: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  z-index: 0 !important;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
  overflow-x: hidden;
}

img {
  -webkit-user-drag: none;
  pointer-events: none;
}

img {
  -webkit-touch-callout: none;
}

@media (max-width: 991.98px) {
  #footer {
    margin-bottom: 65px !important;
  }
  .main-content-navbar-padding {
    padding-top: 0 !important;
  }
}
@media (min-width: 992px) {
  .main-content-navbar-padding {
    padding-top: 70px;
  }
}
body {
  font-family: "Montserrat", sans-serif;
  background: #e1dfea;
  color: #222;
  height: auto;
  min-height: 100vh;
  /* Sin overflow forzado, solo en desktop */
}

html {
  min-height: 100vh;
  /* Sin overflow forzado, solo en desktop */
}

main {
  min-height: calc(100vh - 200px);
  padding-bottom: 3rem;
}
@media (max-width: 991.98px) {
  main {
    padding-bottom: 5rem;
  }
}

.navbar-mobile {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 20001;
  background: rgb(20, 50, 63);
  display: none;
  height: auto;
  box-shadow: none;
  border-top-left-radius: 0.8rem;
  border-top-right-radius: 0.8rem;
  transition: height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

body.navbar-visible .navbar-mobile {
  display: block;
}

.navbar-mobile-scroll {
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
  max-height: 100%;
}

.navbar-mobile-panel {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  background: rgb(20, 50, 63);
  border-top-left-radius: 0.8rem;
  border-top-right-radius: 0.8rem;
  box-shadow: none;
  overflow-x: hidden;
}

.navbar-mobile-icons {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  height: 80px;
  background: rgb(20, 50, 63);
  box-shadow: none;
  border-top-left-radius: 0.8rem;
  border-top-right-radius: 0.8rem;
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
  pointer-events: auto;
  width: 100vw;
  gap: 0.8rem;
  position: relative;
  left: 0;
  bottom: 0;
  z-index: 1;
  transition: none;
}

.navbar-mobile-icons .navbar-mobile-link,
.navbar-mobile-icons .navbar-mobile-menu {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 100%;
  background: none;
  border: none;
  color: #e1dfea;
  font-size: 1.7rem;
  cursor: pointer;
  text-align: center;
}

.navbar-mobile-icons .navbar-mobile-icon-text--vertical {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1em;
}

.navbar-mobile-icons .navbar-mobile-text {
  margin: 0.15em 0 0 0;
  font-size: 0.85rem;
  color: #e1dfea;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1.1;
  pointer-events: none;
  white-space: nowrap;
}

.navbar-mobile-accordion {
  width: 100%;
}

.navbar-mobile-accordion-header {
  cursor: pointer;
  user-select: none;
  padding: 0.2em 0.5em;
  transition: background 0.18s;
  border-radius: 8px;
  display: flex;
  align-items: center;
}

.navbar-mobile-accordion-header:hover,
.navbar-mobile-accordion.active > .navbar-mobile-accordion-header {
  background: rgba(255, 255, 255, 0.08);
}

.navbar-mobile-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 1.8em;
  background: none;
  margin: 0;
  list-style: none;
  overflow-x: hidden;
}

.navbar-mobile-accordion.active > .navbar-mobile-accordion-panel {
  max-height: 400px;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-mobile-accordion-panel li {
  margin: 0.18em 0;
}

.navbar-mobile-accordion-panel a {
  color: #e1dfea;
  font-size: 0.97rem;
  text-decoration: none;
  display: block;
  padding: 0.18em 0.2em;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}

.navbar-mobile-accordion-panel a:hover {
  background: rgba(255, 255, 255, 0.13);
  color: rgb(51, 145, 170);
}

.navbar-mobile-icon-text--vertical {
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center;
  gap: 0 !important;
}

.navbar-mobile-icon-text--vertical .navbar-mobile-text {
  margin-left: 0 !important;
  margin-top: 0.05em !important;
  text-align: center !important;
}

.navbar-mobile-icon-text--center {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.38em;
}

.navbar-mobile-icon-text--center .navbar-mobile-text {
  margin-left: 0;
  margin-top: 0;
  text-align: left;
}

.navbar-mobile-icon-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
}

.navbar-mobile-icon-text .bi {
  font-size: 1.45rem;
  margin-bottom: 0;
  vertical-align: middle;
}

.navbar-mobile-text {
  display: block;
  font-size: 0.95rem;
  color: #e1dfea;
  margin-top: 0;
  margin-left: 0.1em;
  line-height: 1.1;
  text-align: left !important;
  font-weight: 500;
  letter-spacing: 0.01em;
  pointer-events: none;
  white-space: nowrap;
  overflow-x: hidden;
}

.navbar-mobile.menu-open {
  bottom: 60vh;
}

.navbar-mobile .navbar-mobile-dropdown-menu {
  position: relative;
  width: 100%;
  background: rgb(20, 50, 63);
  border-top: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  box-shadow: none;
  max-height: 0;
  overflow-x: hidden !important;
  overflow-y: hidden;
  opacity: 0;
  z-index: 1;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s;
  display: block;
  pointer-events: auto;
}

.navbar-mobile .navbar-mobile-dropdown-menu.expanded {
  max-height: 90vh;
  opacity: 1;
  overflow: visible;
  overflow-x: hidden !important;
  overflow-y: hidden;
  pointer-events: auto;
  border-top: none;
  box-shadow: none;
  margin-bottom: 0;
  padding-bottom: 0;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s;
}

.navbar-mobile-dropdown-menu > li {
  overflow-x: hidden !important;
  overflow-y: hidden;
  margin: 0.2rem 0;
  list-style: none;
  margin-left: 5px;
  padding-left: 0;
  color: #e1dfea !important;
  text-align: left;
}

.navbar-mobile-dropdown-menu > li > a,
.navbar-mobile-dropdown-menu > li > span,
.navbar-mobile-dropdown-menu > li > label {
  color: #e1dfea !important;
  text-align: left;
  margin-left: 0;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 0.7em;
  justify-content: flex-start;
}

.dropdown-gsap-inner {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin: 0.2rem 0 0.2rem 0.5rem;
  padding: 0.2rem 0.2rem 0.2rem 0.5rem;
  min-width: 180px;
  width: auto;
  display: block;
}

#google_translate_element {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: rgb(20, 50, 63);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  z-index: 9998;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s;
  display: block;
  pointer-events: none;
  bottom: 0;
  left: 0;
}

.navbar-mobile-list {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 1rem;
  margin: 0;
  list-style: none;
  gap: 0.8rem;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-y: hidden;
}

.navbar-mobile-list::-webkit-scrollbar {
  display: none;
}

.navbar-mobile-link {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  color: #e1dfea;
  font-size: 1.7rem;
  transition: background 0.18s, color 0.18s;
  text-decoration: none;
  margin: 0;
  z-index: 2;
  min-width: 0;
}

.navbar-mobile-link:hover,
.navbar-mobile-link:focus {
  color: rgb(51, 145, 170);
}

.navbar-mobile-logo {
  width: 32px;
  height: 32px;
  padding: 0;
  display: block;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

.navbar-mobile-menu {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  color: #e1dfea;
  font-size: 1.7rem;
  cursor: pointer;
}

@media (min-width: 992px) {
  .navbar-mobile {
    display: none !important;
  }
}
.navbar-nav .nav-item {
  position: relative;
}

.navbar-custom .nav-link:hover {
  color: rgb(51, 145, 170);
  text-decoration: none;
}

.navbar-custom {
  z-index: 5000;
  background: rgb(20, 50, 63);
  width: 100vw;
  left: 0;
  position: fixed;
  top: 0;
  z-index: 1000;
  cursor: default;
}
.navbar-custom .collapse.navbar-collapse {
  display: flex;
  align-items: stretch;
  width: 100%;
  flex-wrap: wrap;
}
.navbar-custom .container-fluid {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0.2rem;
}
.navbar-custom .navbar-nav {
  flex: 1 1 0%;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.3rem;
}
.navbar-custom .navbar-nav > .nav-item {
  display: flex;
  align-items: center;
  margin: 0 0.2rem;
  padding: 0;
  min-width: 0;
  max-width: 100%;
  flex: 1 1 0;
  justify-content: center;
}
.navbar-custom .navbar-nav > .navbar-actions {
  flex: 0 0 auto;
  gap: 0.3rem;
  background: transparent;
  padding: 0 0.1rem;
  border-radius: 8px;
  box-shadow: none;
  display: flex;
  align-items: center;
  margin: 0 0 0 0.5rem;
}
.navbar-custom .navbar-nav > .nav-item.dev-panel-link {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  min-width: 0;
  max-width: 100%;
}
.navbar-custom .navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
  position: relative;
  z-index: 1100;
  background: transparent;
  padding: 0 0.2rem;
  border-radius: 8px;
  box-shadow: none;
}
.navbar-custom .navbar-actions .btn-lang-switcher,
.navbar-custom .navbar-actions .btn-outline-light {
  margin: 0 0.1rem;
  padding: 0.35rem 0.8rem;
  font-size: 0.98rem;
  border-radius: 6px;
  height: 2.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.navbar-custom .navbar-actions .btn-lang-switcher {
  background: transparent;
  border: none;
}
.navbar-custom .navbar-brand img {
  border-radius: 8px;
  filter: brightness(0) invert(1);
  width: calc(10rem + 40px);
  margin: 5px;
}
.navbar-custom .navbar-nav {
  padding-left: 0;
  list-style: none;
}
.navbar-custom .nav-item {
  display: flex;
  align-items: center;
  margin: 0;
  min-width: 0;
  flex: 0 1 auto;
  max-width: 100%;
}
.navbar-custom .nav-link {
  color: #e1dfea;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  min-width: 0;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.navbar-custom .nav-link:hover {
  color: rgb(51, 145, 170);
  text-decoration: none;
}
@media (max-width: 1200px) {
  .navbar-custom .navbar-custom .navbar-nav {
    gap: 0.3rem 0.4rem;
  }
  .navbar-custom .navbar-custom .nav-link {
    font-size: 0.97rem;
    padding: 0.18rem 0.4rem;
  }
  .navbar-custom .navbar-custom .navbar-actions .btn-lang-switcher,
  .navbar-custom .navbar-custom .navbar-actions .btn-outline-light {
    font-size: 0.93rem;
    padding: 0.28rem 0.6rem;
    height: 2rem;
  }
}
@media (max-width: 900px) {
  .navbar-custom .navbar-custom .navbar-nav {
    gap: 0.18rem 0.2rem;
  }
  .navbar-custom .navbar-custom .nav-link {
    font-size: 0.91rem;
    padding: 0.08rem 0.2rem;
  }
  .navbar-custom .navbar-custom .navbar-actions .btn-lang-switcher,
  .navbar-custom .navbar-custom .navbar-actions .btn-outline-light {
    font-size: 0.89rem;
    padding: 0.18rem 0.3rem;
    height: 1.7rem;
  }
}
.navbar-custom .btn-outline-light {
  border-color: rgb(20, 50, 63);
  color: #e1dfea;
  text-decoration: none;
  margin: 0 0.5rem;
  padding: 0.45rem 1.1rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar-custom .btn-outline-light:hover {
  color: rgb(51, 145, 170);
  border-color: rgb(51, 145, 170);
  text-decoration: none;
}
.navbar-custom .btn-lang-switcher {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: #e1dfea;
  border-radius: 6px;
  padding: 0.45rem 1.1rem;
  margin: 0 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  z-index: 1200;
}
.navbar-custom .btn-lang-switcher:hover {
  color: rgb(51, 145, 170);
}

.preload {
  opacity: 0;
  pointer-events: none !important;
  display: block !important;
  visibility: hidden !important;
}

.hidden {
  opacity: 0;
  pointer-events: none !important;
  display: block !important;
  visibility: hidden !important;
  transition: opacity 0.5s;
}

.visible {
  opacity: 1;
  pointer-events: auto !important;
  display: block !important;
  visibility: visible !important;
  transition: opacity 0.5s;
}

.modal#modal-forgot-password {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal#modal-forgot-password[style*="display: block"] {
  display: flex !important;
}

.forgot-modal-content {
  max-width: 350px;
  width: 90vw;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.13);
  padding: 2rem 1.5rem;
  position: relative;
  margin: auto;
}

.close-modal#close-forgot-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.forgot-modal-title {
  margin-bottom: 1.2rem;
}

.forgot-modal-input {
  width: 100%;
  margin-bottom: 1.2rem;
  padding: 0.6rem;
  border-radius: 0.7rem;
  border: 1px solid #ccc;
}

.forgot-modal-btn {
  width: 100%;
}

.forgot-modal-message {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.98rem;
}

.forgot-modal-content {
  max-width: 350px;
  width: 90vw;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.13);
  padding: 2rem 1.5rem;
  position: relative;
  margin: auto;
}

.forgot-modal-btn {
  width: 100%;
}

.forgot-modal-message {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.98rem;
}

.login-bg-label {
  width: 100%;
  display: block;
}

.login-bg {
  min-height: 100vh;
  background: linear-gradient(120deg, rgb(51, 145, 170) 0%, rgb(16, 79, 94) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/img/img1.png");
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
  z-index: 0;
}
.login-bg > * {
  position: relative;
  z-index: 1;
}

.login-card {
  background: #e1dfea;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  width: 960px;
  height: 560px;
  display: flex;
}
.login-card h2 {
  width: 100%;
  text-align: center;
  margin-top: 32px;
  margin-left: calc(50% - 32px);
  color: #222;
}
.login-card .login-welcome {
  width: 100%;
  text-align: center;
  margin-top: calc(50% - 128px);
  margin-left: calc(50% - 32px);
  font-size: 1.2rem;
  color: #222;
}
.login-card p {
  width: 100%;
  text-align: center;
  margin-top: calc(50% - 112px);
  margin-left: calc(50% - 32px);
  font-size: 1rem;
  color: #222;
}
.login-card a {
  color: rgb(51, 145, 170);
  text-decoration: none;
  font-weight: bold;
  font-size: 0.92rem;
  width: 192px;
  margin-top: 16px;
  display: block;
  text-align: center;
  margin-left: 64px;
}
.login-card a:hover {
  text-decoration: underline;
}

.login-img {
  height: 64px;
  width: 64px;
  margin-top: 16px;
  margin-left: 200px;
  border-radius: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.16), 0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.08), 0 16px 24px rgba(0, 0, 0, 0.1), 0 24px 32px rgba(0, 0, 0, 0.08), 0 32px 40px rgba(0, 0, 0, 0.06), 0 40px 48px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  background: transparent;
}

.login-signup-cover {
  background: rgb(51, 145, 170);
  background-image: url("../assets/img/texture.jpg");
  background-size: cover;
  background-blend-mode: multiply;
  border-radius: 16px;
  box-shadow: -4px 0 8px rgba(0, 0, 0, 0.12), -4px 0 6px rgba(0, 0, 0, 0.16), -4px 0 12px rgba(0, 0, 0, 0.1), -4px 0 16px rgba(0, 0, 0, 0.08);
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.login-signup-cover h2 {
  color: #e1dfea;
  font-size: 2rem;
  margin-top: 224px;
  margin-left: 0;
  text-align: center;
}
.login-signup-cover p {
  color: #e1dfea;
  font-size: 1.5rem;
  margin-top: 16px;
  margin-left: 64px;
  max-width: 75%;
  text-align: center;
}
.login-signup-cover.cover-move-left {
  transform: translateX(-100%);
}
.login-signup-cover.cover-move-right {
  transform: translateX(0);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.login-signup-cover.hide-signin {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.login-signup-btn {
  background: #e1dfea;
  border: none;
  border-radius: 32px;
  color: rgb(51, 145, 170);
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0.6rem 1.2rem;
  width: 240px !important;
  margin-top: 64px;
  margin-left: calc(50% - 120px);
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.16), 0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease;
}
.login-signup-btn:hover {
  background: rgb(196.1320754717, 192.2075471698, 213.7924528302);
  color: rgb(51, 145, 170);
}

.login-input-group {
  background: #e5e6e7;
  border: 2px solid #1976d2;
  border-radius: 32px;
  padding: 0.5rem 1rem;
  margin-bottom: 8px;
  height: 24px !important;
  width: 240px !important;
  margin-top: calc(50% - 112px);
  margin-left: calc(50% - 40px);
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.social-login {
  display: flex;
  gap: 4px;
  justify-content: flex-start;
  margin-top: 8px;
  width: 84px;
  margin-left: 188px;
}

.social-btn {
  background: #fff;
  border: 2px solid #e5e6e7;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  padding: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.16), 0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.08);
}

.social-btn:hover {
  border-color: #1976d2;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.16), 0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.08), 0 16px 24px rgba(0, 0, 0, 0.1), 0 24px 32px rgba(0, 0, 0, 0.08), 0 32px 40px rgba(0, 0, 0, 0.06), 0 40px 48px rgba(0, 0, 0, 0.04);
  transform: scale(1.1);
}

.social-btn img,
.social-btn svg {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

.login-input-group label {
  color: #888;
  font-size: 1.1rem;
  padding-left: 0.2rem;
  position: absolute;
  left: 1.2rem;
  top: 0.5rem;
  pointer-events: none;
  background: transparent;
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.login-input-group input {
  background: transparent;
  border: none;
  outline: none;
  color: #555;
  font-size: 0.88rem;
  padding: 0.6rem 0.8rem;
  border-radius: 32px;
  width: 100%;
}

.login-input-group input:focus ~ label,
.login-input-group input:not(:placeholder-shown) ~ label {
  top: 0rem;
  left: 1.2rem;
  font-size: 0.72rem;
  color: #1976d2;
}

.login-input-group input::placeholder {
  color: #888;
  opacity: 1;
}

.login-btn {
  background: rgb(51, 145, 170);
  border: none;
  border-radius: 32px;
  color: #e1dfea;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0.6rem 1.2rem;
  width: 240px !important;
  margin-top: 16px;
  margin-left: calc(50% - 24px);
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.16), 0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease;
}
.login-btn:hover {
  background: rgb(39.2307692308, 111.5384615385, 130.7692307692);
}

.login-btn:disabled {
  background: #b0b0b0;
  cursor: not-allowed;
}

.login-btn:disabled:hover {
  background: #b0b0b0;
}

.register-form h2 {
  width: 100%;
  text-align: center;
  margin-top: 24px;
  margin-left: calc(50% - 48px);
  color: #222;
}
.register-form .register-welcome {
  width: 100%;
  text-align: center;
  margin-top: calc(50% - 240px);
  margin-left: calc(50% - 48px);
  font-size: 1.2rem;
  color: #222;
}
.register-form p {
  width: 100%;
  text-align: center;
  margin-top: calc(50% - 240px);
  margin-left: calc(50% - 40px);
  font-size: 1rem;
  color: #222;
}

.register-img {
  height: 64px;
  width: 64px;
  margin-top: 16px;
  margin-left: 416px;
  border-radius: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.16), 0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.08), 0 16px 24px rgba(0, 0, 0, 0.1), 0 24px 32px rgba(0, 0, 0, 0.08), 0 32px 40px rgba(0, 0, 0, 0.06), 0 40px 48px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  background: transparent;
}

.register-social-login {
  display: flex;
  gap: 4px;
  justify-content: flex-start;
  margin-top: 8px;
  width: 84px;
  margin-left: 408px;
}

.register-social-btn {
  background: #fff;
  border: 2px solid #e5e6e7;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  padding: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.16), 0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.08);
}

.register-social-btn:hover {
  border-color: #1976d2;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.16), 0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.08), 0 16px 24px rgba(0, 0, 0, 0.1), 0 24px 32px rgba(0, 0, 0, 0.08), 0 32px 40px rgba(0, 0, 0, 0.06), 0 40px 48px rgba(0, 0, 0, 0.04);
  transform: scale(1.1);
}

.register-social-btn img,
.register-social-btn svg {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

.register-or {
  width: 100%;
  text-align: center;
  margin-top: 24px;
  color: #b0b0b0;
  font-size: 0.9rem;
}

.register-input-group {
  background: #e5e6e7;
  border: 2px solid #1976d2;
  border-radius: 32px;
  padding: 0.5rem 1rem;
  margin-bottom: 8px;
  height: 16px !important;
  width: 240px !important;
  margin-top: 8px;
  margin-left: calc(100% - 176px);
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.register-input-group label {
  color: #888;
  font-size: 1rem;
  padding-left: 0.1rem;
  position: absolute;
  left: 1.2rem;
  top: 0.5rem;
  pointer-events: none;
  background: transparent;
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.register-input-group input {
  background: transparent;
  border: none;
  outline: none;
  color: #555;
  font-size: 0.88rem;
  padding: 0.2rem 0.6rem;
  border-radius: 32px;
  width: 100%;
}

.register-input-group input:focus ~ label,
.register-input-group input:not(:placeholder-shown) ~ label {
  top: -0.02rem;
  left: 1.2rem;
  font-size: 0.72rem;
  color: #1976d2;
}

.register-input-group input::placeholder {
  color: #888;
  opacity: 1;
}

.register-btn {
  background: rgb(51, 145, 170);
  border: none;
  border-radius: 32px;
  color: #e1dfea;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0.6rem 1.2rem;
  width: 240px !important;
  margin-top: 16px;
  margin-left: calc(100% - 160px);
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.16), 0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease;
}
.register-btn:hover {
  background: rgb(39.2307692308, 111.5384615385, 130.7692307692);
}

.register-terms {
  width: 50%;
  text-align: center;
  margin-top: 0;
  color: #b0b0b0;
  font-size: 0.72rem !important;
}

.floating-scrollbar {
  position: fixed;
  right: 0;
  top: 0;
  width: 8px;
  height: 100vh;
  background: rgba(24, 119, 243, 0.08);
  z-index: 9999;
}

.floating-scrollbar-thumb {
  position: absolute;
  left: 0;
  width: 8px;
  background: rgb(51, 145, 170);
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 991.98px) {
  #footer {
    margin-bottom: 65px !important;
  }
  .main-content-navbar-padding {
    padding-top: 0 !important;
  }
  .login-card {
    flex-direction: column !important;
    width: 100vw !important;
    height: auto !important;
    min-height: 100vh;
    position: relative;
  }
  .login-signup-cover {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 0 0 16px 16px !important;
    box-shadow: none !important;
    margin-bottom: 16px;
    z-index: 2;
    display: block !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transition: none !important;
  }
  .register-form {
    display: none !important;
  }
  .login-form {
    display: block !important;
  }
}
@media (min-width: 992px) {
  .main-content-navbar-padding {
    padding-top: 70px;
  }
}
.head-img-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: #000;
  max-width: 100vw;
  z-index: 1;
}

.main-head-img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 20px;
  margin-right: 20px;
  padding: 0;
  width: calc(100vw - 40px);
  height: 75vh;
  max-width: calc(100vw - 40px);
  max-height: 75vh;
  border-radius: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  z-index: 2;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.35);
}

.lacs-comp-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.lacs-logo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 71vw;
  height: auto;
  object-fit: contain;
  background: transparent;
  max-width: 95vw;
  max-height: 95vh;
  z-index: 2;
  filter: brightness(0) invert(1) invert(0);
}

.footer-options {
  color: #e1dfea;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2.5rem;
  margin-right: 3rem;
  margin-top: 5rem;
}

.footer-options h3 {
  color: #e1dfea;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

.footer-options-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 180px;
  text-align: left;
}

.footer-options-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.footer-options-list li {
  color: #e1dfea;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-options-list a {
  color: #e1dfea;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-options-list a:hover {
  color: rgb(51, 145, 170);
}

.footer-section {
  position: relative;
  background: #181a1b;
  color: #e1dfea;
  padding-top: 0;
  padding-bottom: 32px;
  overflow: hidden;
}

.footer-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  margin-left: 0 !important;
  padding-left: 0 !important;
  width: 100%;
  gap: 2.5rem;
}

.footer-logo-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  margin-left: 3rem;
  min-width: 220px;
}

.footer-logo {
  max-width: 25rem;
  height: auto;
  margin-left: -2rem;
  margin-top: 6rem;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: -0.5rem;
  justify-content: flex-start;
  width: 100%;
  max-width: 25rem;
  margin-left: -3.5rem;
}

.footer-social .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 1.5rem;
  position: relative;
  cursor: pointer;
}

.footer-social .icon[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: 110%;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  padding: 0.25rem 0.7rem;
  border-radius: 6px;
  font-size: 0.95rem;
  white-space: nowrap;
  opacity: 1;
  pointer-events: none;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  transition: opacity 0.18s, background 0.18s;
}

.footer-social .icon.facebook:hover::after {
  background: #1877f3;
}

.footer-social .icon.instagram:hover::after {
  background: #c13584;
}

.footer-social .icon.linkedin:hover::after {
  background: #0077b5;
}

.footer-social .icon.tiktok:hover::after {
  background: #000;
}

.footer-social .icon.whatsapp:hover::after {
  background: #25d366;
}

.footer-social .icon.google-maps:hover::after {
  background: #ea4335;
}

.footer-social .icon[data-tooltip]::after {
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}

.footer-social-link i {
  color: #181a1b !important;
  transition: color 0.2s;
  font-weight: 900;
  border: none;
  box-shadow: none;
  background: none;
  font-size: 1.5rem;
}

.footer-social .icon.facebook:hover {
  background: #1877f3;
}

.footer-social .icon.facebook:hover .footer-social-link i {
  color: #fff !important;
}

.footer-social .icon.instagram:hover {
  background: #c13584;
}

.footer-social .icon.instagram:hover .footer-social-link i {
  color: #fff !important;
}

.footer-social .icon.linkedin:hover {
  background: #0077b5;
}

.footer-social .icon.linkedin:hover .footer-social-link i {
  color: #fff !important;
}

.footer-social .icon.tiktok:hover {
  background: #000;
}

.footer-social .icon.tiktok:hover .footer-social-link i {
  color: #fff !important;
}

.footer-social .icon.whatsapp:hover {
  background: #25d366;
}

.footer-social .icon.whatsapp:hover .footer-social-link i {
  color: #fff !important;
}

.footer-social .icon.google-maps:hover {
  background: #ea4335;
}

.footer-social .icon.google-maps:hover .footer-social-link i {
  color: #fff !important;
}

.footer-copy {
  font-size: 1rem;
  color: #bdbdbd;
  text-align: center;
  width: 100vw;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
  z-index: 0;
  background: transparent;
  pointer-events: none;
}

@media (max-width: 575px) {
  .footer-section {
    padding-bottom: 90px;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0 0.5rem;
  }
  .footer-options {
    order: 1;
    flex-direction: column;
    align-items: center;
    margin: 0 0 0.2rem 0;
    gap: 0;
    width: 100%;
  }
  .footer-logo-social {
    order: 2;
    flex-direction: column;
    align-items: center;
    margin: 0;
    min-width: unset;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .footer-logo {
    height: 5rem;
    margin: 0 auto 1rem auto;
    display: block;
  }
  .footer-social {
    justify-content: center;
    margin: 0 auto 1rem auto;
    max-width: 100vw;
    gap: 1rem;
    margin-left: -2.5rem;
  }
  .footer-options-col {
    margin-bottom: 0.2rem;
    min-width: unset;
    width: 100%;
    border-bottom: 1px solid #333;
    border-left: none;
    border-right: none;
    padding-bottom: 0.4rem;
    padding-top: 0.4rem;
    text-align: center;
  }
  .footer-options-list {
    text-align: center;
  }
  .footer-options-col:last-child {
    border-bottom: none;
  }
  .footer-options-list {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .footer-options-col.active .footer-options-list {
    display: flex;
  }
  .footer-options-col h3 {
    cursor: pointer;
    position: relative;
    padding-right: 1.5rem;
  }
  .footer-options-col h3::after {
    content: "▼";
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 1rem;
    transition: transform 0.2s;
  }
  .footer-options-col.active h3::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .footer-copy {
    font-size: 0.9rem;
    margin-bottom: -2rem;
    position: bottom;
    background: transparent;
  }
}
.hero-reveal-arrow,
.hero-reveal-arrow:focus,
.hero-reveal-arrow:active,
.hero-reveal-arrow:hover,
.hero-reveal-arrow:visited,
.hero-reveal-arrow svg,
.hero-reveal-arrow svg:focus,
.hero-reveal-arrow svg:active,
.hero-reveal-arrow svg:hover,
.hero-reveal-arrow svg:visited,
.hero-reveal-arrow svg path,
.hero-reveal-arrow svg path:focus,
.hero-reveal-arrow svg path:active,
.hero-reveal-arrow svg path:hover,
.hero-reveal-arrow svg path:visited {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: none !important;
}

.hero-reveal-arrow svg, .hero-reveal-arrow svg path {
  background: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  fill: #111 !important;
}

.hero-reveal-arrow, .hero-reveal-arrow:focus, .hero-reveal-arrow:active, .hero-reveal-arrow svg {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: none !important;
}

body, main, .hero-reveal, .hero-reveal-rects, .hero-rect, .head-img-container, .main-head-img {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background-clip: padding-box;
}

.hero-reveal-logo-fixed {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95vw;
  height: 95vh;
  max-width: 95vw;
  max-height: 95vh;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-reveal-logo {
  display: none;
}

.hero-reveal-rects {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100vw - 10px);
  height: 100vh;
  pointer-events: none;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.hero-rect {
  position: absolute;
  top: 0;
  height: 100%;
  background: rgb(51, 145, 170);
  will-change: transform, opacity;
  pointer-events: none;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  box-sizing: border-box !important;
  overflow: hidden;
  background-clip: padding-box;
  outline: none !important;
}

.hero-logo-slice {
  display: none;
}

.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1) grayscale(1) contrast(1000%);
}

.hero-reveal-arrow {
  position: absolute;
  left: 50%;
  bottom: 5vh;
  transform: translateX(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.2s;
  animation: arrow-bounce 1.2s infinite;
  border: none;
}

.hero-reveal-arrow svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: #111;
}

.new-cards {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 32px 0 0 0;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-card {
  display: flex;
  align-items: stretch;
  width: 85%;
  max-width: 1100px;
  min-width: 320px;
  min-height: 120px;
  margin: 0 auto 32px auto;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.16), 0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.08);
  border-radius: 0.8rem;
  overflow: hidden;
  position: relative;
  justify-content: center;
  background: none;
  gap: 0;
}

.info-card:last-child {
  margin-bottom: 0;
}

.sector-list-columns {
  display: flex;
  gap: 2.5rem;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 0.2em;
}

.sector-list-columns .sector-list {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  padding: 0 0 0 1.2em;
  list-style: disc inside;
}

@media (max-width: 700px) {
  .sector-list-columns {
    flex-direction: row;
    gap: 0.7rem;
  }
  .sector-list-columns .sector-list {
    font-size: 0.85rem;
    padding-left: 0.7em;
    line-height: 1.15;
  }
}
.info-card-bar {
  width: 84px;
  min-width: 0;
  max-width: 84px;
  height: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box;
  overflow: hidden;
  padding: 0;
}

.info-card-bar-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 2.1rem;
  font-weight: 700;
  color: #e1dfea;
  letter-spacing: 0.08em;
  text-align: center;
  height: auto;
  width: auto;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
}

.right-bar {
  border-top-right-radius: 0.8rem;
  border-bottom-right-radius: 0.8rem;
}

.left-bar {
  border-top-left-radius: 0.8rem;
  border-bottom-left-radius: 0.8rem;
}

.info-card:nth-child(1) .info-card-content {
  background: rgb(51, 145, 170);
}

.info-card:nth-child(2) .info-card-content {
  background: rgb(25, 114, 133);
}

.info-card:nth-child(3) .info-card-content {
  background: rgb(0, 84, 97);
}

.info-card:nth-child(4) .info-card-content {
  background: rgb(35, 67, 80);
}

.info-card:nth-child(5) .info-card-content {
  background: rgb(20, 50, 63);
}

.info-card:nth-child(1) .info-card-bar {
  background: rgb(40, 118, 139);
}

.info-card:nth-child(2) .info-card-bar {
  background: rgb(16, 79, 94);
}

.info-card:nth-child(3) .info-card-bar {
  background: rgb(0, 76, 88);
}

.info-card:nth-child(4) .info-card-bar {
  background: rgb(29, 57, 68);
}

.info-card:nth-child(5) .info-card-bar {
  background: rgb(15, 38, 48);
}

.info-card-content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 1rem 1.5rem;
  color: #e1dfea;
  box-sizing: border-box;
  overflow-wrap: break-word;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:nth-child(4) .info-card-content {
  padding: 0.5rem 0.7rem;
  justify-content: flex-start;
}

.info-card:nth-child(1),
.info-card:nth-child(2),
.info-card:nth-child(3),
.info-card:nth-child(5) {
  align-items: stretch;
}

.info-card:nth-child(1) {
  max-height: 280px;
  height: 70%;
}

.info-card:nth-child(2) {
  max-height: 180px;
  height: 70%;
}

.info-card:nth-child(3) {
  max-height: 180px;
  height: 70%;
}

.info-card:nth-child(5) {
  height: auto !important;
  max-height: none !important;
  overflow-y: visible !important;
}

.info-card:nth-child(4) {
  height: auto !important;
  max-height: none !important;
  align-items: stretch;
  margin-bottom: 32px;
}

.info-card:nth-child(5) .info-card-content {
  height: auto !important;
  max-height: none !important;
  overflow-y: visible !important;
}

.valores-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 0.5rem 0 0 0;
  padding: 0;
}

.valor-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0.2rem;
}

.valor-label {
  font-weight: 700;
  color: #e1dfea;
  font-size: 1.13rem;
  letter-spacing: 0.01em;
  line-height: 1.4;
  margin-bottom: 0.1rem;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0.15em 0.7em 0.15em 2em;
  border-radius: 0.4em;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  display: inline-flex;
  align-items: center;
  position: relative;
  box-shadow: none;
}

.valor-label:hover,
.valor-label:focus {
  background: rgba(255, 255, 255, 0.1);
  color: rgb(51, 145, 170);
  box-shadow: 0 2px 8px -2px rgba(20, 30, 60, 0.1);
}

.valor-icon {
  position: absolute;
  left: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1em;
  color: #e1dfea;
  pointer-events: none;
  transition: color 0.18s;
}

.valor-label[aria-expanded=true] {
  background: rgba(255, 255, 255, 0.18);
  color: rgb(51, 145, 170);
}

.valor-desc {
  color: #e1dfea;
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
  word-break: break-word;
  white-space: normal;
  overflow: hidden;
}

/* SplitText: los spans deben ser inline-block y sin saltos artificiales */
.valor-desc span {
  display: inline-block;
  word-break: break-word;
  white-space: normal;
}

.info-card-list {
  font-size: 1.1rem;
  margin-left: 0.7rem;
  padding-left: 0.7rem;
}

.info-card-text {
  font-size: 1.2rem;
  line-height: 1.7;
}

.sector-list {
  list-style: disc;
  font-size: 1.1rem;
  line-height: 1.3;
  padding-left: 2em;
  margin: 1px 0;
  text-indent: -1.2em;
}
.sector-list li {
  margin-bottom: 0.4em;
  padding-left: 0;
  text-indent: -1.2em;
  display: list-item;
  /* hanging indent for multiline */
  white-space: pre-line;
}

.info-card.from-left {
  opacity: 0;
  transform: translateX(-100vw);
}

.info-card.from-right {
  opacity: 0;
  transform: translateX(100vw);
}

@media (max-width: 991px) {
  .info-card {
    width: 88vw;
    min-width: 0;
    max-width: 90vw;
    flex-direction: row;
    align-items: stretch;
    height: auto;
    gap: 0;
  }
  .info-card-content {
    padding: 0.7rem 0.5rem;
    font-size: 0.98rem;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .info-card-bar {
    width: 48px;
    min-width: 0;
    max-width: 48px;
    height: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 10;
    position: relative;
  }
  .info-card-bar-text {
    font-size: 1rem;
    width: 100%;
    display: flex;
    align-items: center !important;
    justify-content: center;
  }
  .valor-label {
    font-size: 1rem;
  }
  .valor-desc {
    font-size: 0.98rem;
  }
  .info-card:nth-child(1),
  .info-card:nth-child(2),
  .info-card:nth-child(3),
  .info-card:nth-child(4),
  .info-card:nth-child(5) {
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    align-items: stretch;
  }
}
@media (max-width: 575px) {
  .info-card {
    min-width: 0;
    width: 90vw;
    max-width: 90vw;
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    align-items: flex-start;
    display: flex;
    flex-direction: row;
    gap: 0;
  }
  .info-card-content {
    padding: 0.8rem 0.3rem;
    font-size: 0.95rem;
    min-width: 0;
    min-height: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .info-card-bar {
    width: 32px;
    min-width: 0;
    max-width: 32px;
    height: auto !important;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 10;
    position: relative;
  }
  .info-card-bar-text {
    font-size: 1rem;
    height: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }
  .info-card:nth-child(4) .info-card-content {
    align-items: flex-start;
  }
  .info-card-title {
    font-size: 1.05rem;
  }
  .info-card-text {
    font-size: 0.93rem;
  }
  .valores-list {
    gap: 0.6rem;
  }
  .valor-label {
    font-size: 0.88rem;
  }
  .valor-desc {
    font-size: 0.85rem;
  }
  .info-card-list {
    font-size: 0.9rem;
    margin-left: 0.2rem;
    padding-left: 0.2rem;
  }
}
.dropdown-gsap-container {
  z-index: 9999;
  position: fixed;
  /* El display lo controla el JS */
  /* Más separación desde la navbar */
}
.dropdown-gsap-container.dropdown-gsap-container {
  margin-top: 18px;
}

.dropdown-gsap-container {
  pointer-events: auto;
}

.dropdown-gsap-container[style*="display: none"] {
  pointer-events: none !important;
}

.dropdown-gsap-container {
  pointer-events: auto;
}

.dropdown-gsap {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  background: #e1dfea;
  border-radius: 1.2rem !important;
  box-shadow: 0 8px 32px -8px rgba(20, 30, 60, 0.18);
  min-width: 180px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  visibility: visible !important;
  opacity: 1 !important;
  cursor: default;
}

.dropdown-gsap li {
  width: 100%;
}

.dropdown-gsap a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.7rem 1.2rem;
  color: #222;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
.dropdown-gsap a:hover {
  background: rgb(51, 145, 170) !important;
  color: #e1dfea !important;
}

.dropdown-gsap-mobile {
  z-index: 9999;
  position: fixed;
  box-shadow: 0 8px 32px -8px rgba(20, 30, 60, 0.18);
  border-radius: 1.2rem !important;
  background: #e1dfea;
  min-width: 180px;
  max-width: 260px;
  /* El display lo controla el JS */
  flex-direction: column;
  gap: 0.2rem;
  will-change: opacity, transform, height;
  transition: opacity 0.32s, transform 0.32s;
  pointer-events: auto;
}

.carousel-certificacion {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  margin: 2rem 0;
  padding: 0 0.2rem 0 0.2rem;
  /* Menos espacio para los botones */
}

.carousel-arrow {
  background: #1976a5;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2.8rem;
  height: 2.8rem;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(51, 145, 170, 0.12);
  transition: background 0.2s, box-shadow 0.2s;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid #1976a5;
}

.carousel-arrow.prev {
  left: 0.5rem;
}

.carousel-arrow.next {
  right: 0.5rem;
}

.carousel-arrow:hover {
  background: #145a8a;
  color: #fff;
  box-shadow: 0 4px 16px rgba(25, 118, 165, 0.18);
  border-color: #145a8a;
  /* No scale ni cambio de posición */
}

.info-box {
  max-width: 1200px !important;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(51, 145, 170, 0.08);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.carousel-track {
  width: 100%;
  max-width: 1050px;
  overflow: hidden;
  position: relative;
  min-height: 450px;
  height: 450px;
}

.carousel-track .card-certificacion {
  min-width: 100%;
  transition: opacity 0.3s, visibility 0.3s, transform 0.4s cubic-bezier(0.77, 0.2, 0.32, 1);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 1;
  height: 450px;
  min-height: 450px;
  max-height: none;
  overflow-y: visible;
  padding-bottom: 2rem;
  visibility: hidden;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.carousel-track .card-certificacion.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  position: relative;
  z-index: 3;
  transform: none;
  height: 450px;
  min-height: 450px;
  max-height: none;
  overflow-y: visible;
  overflow-x: auto;
  white-space: normal;
  box-sizing: border-box;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.card-certificacion-body {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0.4rem;
  width: 100%;
}

.card-certificacion-img {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: #f8fafc;
  height: 100%;
  width: 350px;
  min-width: 350px;
  max-width: 400px;
  max-height: 100%;
}

.iso-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.1rem 0 0 1.1rem;
  margin-bottom: 0;
  box-shadow: 0 2px 12px rgba(25, 118, 165, 0.08);
  display: block;
  background: transparent;
}

.card-certificacion-content {
  flex: 1 1 0%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  word-break: normal;
  overflow-wrap: break-word;
}

.card-certificacion-content p {
  margin: 0;
  text-align: left;
  word-break: normal;
  overflow-wrap: break-word;
}

.card-certificacion-content ul {
  margin: 0.5rem 0 0 1.2rem;
  padding: 0;
}

@media (max-width: 900px) {
  .card-certificacion-img {
    width: 180px;
    min-width: 100px;
    max-width: 180px;
    height: 160px;
    margin-left: 0;
  }
}
@media (max-width: 700px) {
  .card-certificacion-body {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
  }
  .card-certificacion-img {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: 140px;
    border-radius: 0.7rem 0.7rem 0 0;
    background: #f8fafc;
  }
  .iso-logo {
    width: 100%;
    height: 100%;
    border-radius: 0.7rem 0.7rem 0 0;
    object-fit: contain;
    margin-bottom: 0;
  }
  .card-certificacion-content {
    height: auto;
  }
}
.ema-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #e1dfea;
}

.ema-section {
  width: 100%;
  max-width: 100%;
  background: #fff;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a4c5a;
  text-align: center;
  margin-bottom: 0;
  cursor: default;
}

.section-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  max-width: 100%;
  margin: 0 auto;
  flex-wrap: nowrap;
  overflow-x: hidden;
  min-width: 0;
  box-sizing: border-box;
  padding-top: 2rem;
  overflow: hidden;
}

.ema-96-13,
.ema-96-20,
.ema-96-2IAF {
  background: #fff;
  padding: 0.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 340px;
  height: 250px;
  box-sizing: border-box;
  border-radius: 0.8rem;
}
.ema-96-13 .ema-logo,
.ema-96-20 .ema-logo,
.ema-96-2IAF .ema-logo {
  width: 250px;
  height: 100px;
  max-width: 250px;
  max-height: 100px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}
.ema-96-13 .ema-text,
.ema-96-20 .ema-text,
.ema-96-2IAF .ema-text {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  font-size: 0.95rem;
  color: rgb(51, 145, 170);
  width: 100%;
  cursor: default;
}

.ema-96-13 button,
.ema-96-20 button,
.ema-96-2IAF button {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s;
}

.ema-logo,
.ema-text {
  filter: none;
  transition: filter 0.25s;
}

.section-content:hover .ema-logo {
  filter: blur(3px);
}

.ema-96-13 button:hover .ema-logo,
.ema-96-20 button:hover .ema-logo,
.ema-96-2IAF button:hover .ema-logo {
  filter: none;
}

@media (max-width: 767.98px) {
  .section-content {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .ema-96-13,
  .ema-96-20,
  .ema-96-2IAF {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  .ema-logo {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 90px;
  }
}
.info-box {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  margin: 0 auto;
  max-width: 980px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2.5rem;
  border: none;
  position: relative;
  z-index: 2;
}

.info-box h1 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #1976a5;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: 0.02em;
  position: relative;
}

.faq-content {
  margin-bottom: 2.2rem;
}

@media (max-width: 700px) {
  .info-box {
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    margin: 0 auto;
  }
  .acreditaciones-content {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    max-width: 100vw;
    gap: 1.2rem;
    border-radius: 1.1rem;
  }
  .acreditaciones-content h2 {
    font-size: 1.35rem;
  }
  .acreditaciones-content h3 {
    font-size: 1.05rem;
  }
  .acreditaciones-content p {
    font-size: 1rem;
  }
  .acreditaciones-content iframe {
    height: 260px !important;
    border-radius: 0.6rem;
  }
  .acreditaciones-content .consulta {
    border-radius: 0.7rem;
    padding: 1rem 0.5rem;
  }
}
.acreditaciones-content {
  border-radius: 1.6rem;
  box-shadow: 0 8px 32px -8px rgba(20, 30, 60, 0.13);
  padding: 3rem 2.2rem 2.2rem 2.2rem;
  margin: 2.5rem auto 0 auto;
  max-width: 980px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2.5rem;
  border: 1.5px solid #e0e7ef;
  position: relative;
  z-index: 2;
}

.acreditaciones-content h2 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #1976a5;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: 0.02em;
  position: relative;
}

.acreditaciones-content h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #1976a5 0%, #5ec6e7 100%);
  border-radius: 2px;
  margin: 0.7rem auto 0 auto;
  opacity: 0.7;
  transition: width 0.3s;
}

.acreditaciones-content p {
  font-size: 1.18rem;
  color: #234;
  margin-bottom: 1.7rem;
  text-align: center;
  line-height: 1.7;
}

.acreditaciones-content h3 {
  font-size: 1.22rem;
  font-weight: 700;
  color: #1976a5;
  margin-bottom: 0.7rem;
  text-align: left;
  letter-spacing: 0.01em;
  position: relative;
}

.acreditaciones-content h3::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #5ec6e7;
  border-radius: 50%;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.acreditaciones-content img.acreditacion-img:hover {
  box-shadow: 0 10px 32px -8px rgba(20, 30, 60, 0.18);
  border-color: #5ec6e7;
}

@media (max-width: 700px) {
  .acreditaciones-content img.acreditacion-img {
    max-width: 100vw;
    width: 100vw;
    border-radius: 0.7rem;
  }
}
.acreditaciones-content .consulta {
  background: linear-gradient(90deg, #eaf6fb 0%, #f7fafd 100%);
  border-radius: 1rem;
  padding: 1.5rem 1.2rem;
  box-shadow: 0 4px 16px -4px rgba(20, 30, 60, 0.1);
  text-align: center;
  margin-top: 2rem;
  border: 1px solid #cbe7f6;
}

.acreditaciones-content .consulta h3 {
  color: #1976a5;
  font-size: 1.13rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}

.acreditaciones-content .consulta a {
  color: #1976a5;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s;
}

.acreditaciones-content .consulta a:hover {
  color: #0d2c36;
  text-decoration: underline wavy #5ec6e7;
}

.acreditaciones-content img.acreditacion-img,
.acreditaciones-content .consulta img {
  display: block;
  margin: 1.2rem auto 0 auto;
  max-width: 50%;
  width: 50%;
  border-radius: 1rem;
  box-shadow: 0 4px 24px -8px rgba(20, 30, 60, 0.13);
  border: 1.5px solid #cbe7f6;
  background: #fff;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.acreditaciones-content img.acreditacion-img:hover,
.acreditaciones-content .consulta img:hover {
  box-shadow: 0 10px 32px -8px rgba(20, 30, 60, 0.18);
  border-color: #5ec6e7;
}

@media (max-width: 700px) {
  .acreditaciones-content img.acreditacion-img,
  .acreditaciones-content .consulta img {
    max-width: 100vw;
    width: 100vw;
    border-radius: 0.7rem;
  }
}
@media (max-width: 700px) {
  .acreditaciones-content {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    max-width: 100vw;
    gap: 1.2rem;
    border-radius: 1.1rem;
  }
  .acreditaciones-content h2 {
    font-size: 1.35rem;
  }
  .acreditaciones-content h3 {
    font-size: 1.05rem;
  }
  .acreditaciones-content p {
    font-size: 1rem;
  }
  .acreditaciones-content iframe {
    height: 260px !important;
    border-radius: 0.6rem;
  }
  .acreditaciones-content .consulta {
    border-radius: 0.7rem;
    padding: 1rem 0.5rem;
  }
}
.certificados-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 40, 60, 0.18);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  padding-top: 80px;
  box-sizing: border-box;
}

.certificados-modal-content {
  background: linear-gradient(120deg, #eaf6fb 0%, #dbeaf6 100%);
  border-radius: 1.6rem;
  box-shadow: 0 8px 32px -8px rgba(20, 30, 60, 0.13);
  padding: 2.5rem 2.2rem 2.2rem 2.2rem;
  min-width: 340px;
  max-width: 95vw;
  width: 420px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  border: 1.5px solid #e0e7ef;
  max-height: calc(100vh - 160px);
  overflow-y: auto;
  margin: auto;
}

.certificados-modal-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1976a5;
  margin-bottom: 0.7rem;
}

.certificados-modal-content .close-modal {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #1976a5;
  cursor: pointer;
}

.certificados-modal-content form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.certificados-modal-content label {
  font-weight: 700;
  color: #1976a5;
  margin-bottom: 0.2rem;
}

.certificados-modal-content input,
.certificados-modal-content select {
  padding: 0.7rem 1rem;
  border-radius: 0.7rem;
  border: 1px solid #cbe7f6;
  font-size: 1.08rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(20, 30, 60, 0.07);
}

.certificados-modal-content input:focus,
.certificados-modal-content select:focus {
  border-color: #5ec6e7;
  outline: none;
}

.certificados-modal-content .btn {
  margin-top: 1.1rem;
  align-self: flex-end;
  background: linear-gradient(90deg, #1976a5 0%, #5ec6e7 100%);
  border: none;
  border-radius: 0.7rem;
  font-weight: 700;
  color: #fff;
  padding: 0.7rem 2.2rem;
  box-shadow: 0 2px 8px rgba(20, 30, 60, 0.1);
  transition: background 0.2s, box-shadow 0.2s;
}

.certificados-modal-content .btn:hover {
  background: linear-gradient(90deg, #5ec6e7 0%, #1976a5 100%);
  box-shadow: 0 4px 16px rgba(20, 30, 60, 0.13);
}

.instalacion-input-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}
.instalacion-input-group input[type=text] {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: 0.7rem;
  border: 1px solid #cbe7f6;
  font-size: 1.08rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(20, 30, 60, 0.07);
}
.instalacion-input-group input[type=text]:focus {
  border-color: #5ec6e7;
  outline: none;
}
.instalacion-input-group .btn-remove-instalacion {
  background: linear-gradient(90deg, #dc3545 0%, #e74c3c 100%);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.instalacion-input-group .btn-remove-instalacion:hover {
  background: linear-gradient(90deg, #e74c3c 0%, #dc3545 100%);
  transform: scale(1.05);
}
.instalacion-input-group .btn-remove-instalacion:active {
  transform: scale(0.95);
}

.btn-add-instalacion {
  background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
  border: none;
  border-radius: 0.7rem;
  color: #fff;
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(20, 30, 60, 0.1);
}
.btn-add-instalacion:hover {
  background: linear-gradient(90deg, #20c997 0%, #28a745 100%);
  box-shadow: 0 4px 16px rgba(20, 30, 60, 0.13);
}

.certificados-modal-content textarea {
  padding: 0.7rem 1rem;
  border-radius: 0.7rem;
  border: 1px solid #cbe7f6;
  font-size: 1.08rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(20, 30, 60, 0.07);
  resize: vertical;
  min-height: 4rem;
  font-family: inherit;
}
.certificados-modal-content textarea:focus {
  border-color: #5ec6e7;
  outline: none;
}

.certificado-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.certificado-titulo {
  color: #1976a5;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.certificado-resumen {
  background: linear-gradient(120deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 8px;
  padding: 1.5rem;
  border-left: 4px solid #1976a5;
  margin-bottom: 1rem;
}
.certificado-resumen .resumen-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #dee2e6;
}
.certificado-resumen .resumen-item:last-child {
  border-bottom: none;
}
.certificado-resumen .resumen-label {
  font-weight: 600;
  color: #1976a5;
}
.certificado-resumen .resumen-valor {
  color: #495057;
  text-align: right;
}

.certificado-admin-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  z-index: 10;
}
.certificado-admin-actions[style*="display: flex"] {
  display: flex !important;
  visibility: visible !important;
}

.certificado-expandir {
  border-top: 1px solid #e9ecef;
  padding-top: 1rem;
  text-align: center;
  margin: 1rem 0;
}

.certificado-datos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.certificado-datos > div {
  padding: 1rem;
  background: linear-gradient(120deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 0.7rem;
  border-left: 4px solid #1976a5;
}
.certificado-datos > div strong {
  color: #1976a5;
  font-weight: 700;
}
.certificado-datos ul {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}
.certificado-datos ul li {
  margin-bottom: 0.3rem;
  color: #495057;
  padding: 0.2rem 0;
}

.certificado-qr {
  margin-top: 2rem;
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(120deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 0.7rem;
}
.certificado-qr h4 {
  color: #1976a5;
  margin-bottom: 1rem;
  font-weight: 700;
}
.certificado-qr img {
  max-width: 200px;
  border-radius: 0.5rem;
  box-shadow: 0 4px 16px rgba(20, 30, 60, 0.15);
}

.certificado-archivo {
  margin-top: 1rem;
  text-align: center;
}

.alert {
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: 0.7rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
}
.alert.alert-success {
  background: linear-gradient(120deg, #d1edff 0%, #c8e6c9 100%);
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
.alert.alert-danger {
  background: linear-gradient(120deg, #ffebee 0%, #ffcdd2 100%);
  color: #c62828;
  border: 1px solid #ef9a9a;
}
.alert.alert-warning {
  background: linear-gradient(120deg, #fff8e1 0%, #ffecb3 100%);
  color: #ef6c00;
  border: 1px solid #ffcc02;
}
.alert.alert-info {
  background: linear-gradient(120deg, #e3f2fd 0%, #bbdefb 100%);
  color: #1565c0;
  border: 1px solid #90caf9;
}
.alert .btn-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: inherit;
  opacity: 0.7;
}
.alert .btn-close:hover {
  opacity: 1;
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.5rem;
  color: #fff;
}
.badge.badge-success {
  background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
}
.badge.badge-warning {
  background: linear-gradient(90deg, #ffc107 0%, #ff8f00 100%);
  color: #000;
}
.badge.badge-danger {
  background: linear-gradient(90deg, #dc3545 0%, #e74c3c 100%);
}
.badge.badge-secondary {
  background: linear-gradient(90deg, #6c757d 0%, #5a6268 100%);
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background: #fff;
  border-radius: 0.7rem;
  overflow: hidden;
  box-shadow: 0 4px 16px -4px rgba(20, 30, 60, 0.1);
}
.table th,
.table td {
  padding: 1rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}
.table th {
  background: linear-gradient(120deg, #f8f9fa 0%, #e9ecef 100%);
  font-weight: 700;
  color: #1976a5;
}
.table tbody tr:hover {
  background-color: #f8f9fa;
}
.table .btn-sm {
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
  border-radius: 0.4rem;
  margin-right: 0.3rem;
}

@media (max-width: 700px) {
  .certificados-modal-content {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    max-width: 100vw;
    gap: 1.2rem;
    border-radius: 1.1rem;
  }
  .instalacion-input-group {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .instalacion-input-group .btn-remove-instalacion {
    align-self: flex-end;
  }
  .table {
    font-size: 0.85rem;
  }
  .table th,
  .table td {
    padding: 0.5rem 0.4rem;
  }
  .table .btn-sm {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }
}
.certificados-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 2rem;
  box-shadow: 0 20px 40px -12px rgba(25, 118, 165, 0.08), 0 8px 16px -4px rgba(0, 0, 0, 0.04);
  padding: 3rem 2.5rem;
  margin: 2rem auto 4rem auto;
  max-width: 1100px;
  width: calc(100% - 2rem);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2.5rem;
  border: 1px solid rgba(25, 118, 165, 0.08);
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 300px);
}
.certificados-section::before {
  display: none;
}

.certificados-search-form {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1.5rem;
  box-shadow: 0 8px 24px -8px rgba(25, 118, 165, 0.06);
  padding: 2rem 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: 1px solid rgba(203, 231, 246, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.certificados-search-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(25, 118, 165, 0.12);
}

.certificados-search-form label {
  color: #1976a5;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.certificados-search-form .form-control {
  border-radius: 0.7rem;
  border: 1px solid #cbe7f6;
  box-shadow: 0 2px 8px rgba(20, 30, 60, 0.07);
  font-size: 1.08rem;
  padding: 0.7rem 1rem;
  transition: border-color 0.2s;
}

.certificados-search-form .form-control:focus {
  border-color: #5ec6e7;
  outline: none;
}

.certificados-search-form .btn-primary {
  background: linear-gradient(90deg, #1976a5 0%, #5ec6e7 100%);
  border: none;
  border-radius: 0.7rem;
  font-weight: 700;
  color: #fff;
  padding: 0.7rem 2.2rem;
  box-shadow: 0 2px 8px rgba(20, 30, 60, 0.1);
  transition: background 0.2s, box-shadow 0.2s;
}

.certificados-search-form .btn-primary:hover {
  background: linear-gradient(90deg, #5ec6e7 0%, #1976a5 100%);
  box-shadow: 0 4px 16px rgba(20, 30, 60, 0.13);
}

.info-box {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1.5rem;
  box-shadow: 0 12px 28px -8px rgba(25, 118, 165, 0.08), 0 4px 12px -4px rgba(0, 0, 0, 0.04);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(203, 231, 246, 0.4);
  min-height: 200px;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.info-box:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px -8px rgba(25, 118, 165, 0.12);
}

@media (max-width: 1024px) {
  .certificados-section {
    margin: 1.5rem auto 3rem auto;
    padding: 2.5rem 2rem;
    max-width: calc(100% - 2rem);
    gap: 2rem;
  }
  .certificados-search-form {
    padding: 1.5rem 1.5rem;
  }
}
@media (max-width: 768px) {
  .certificados-section {
    padding: 2rem 1.5rem;
    margin: 1rem auto 2.5rem auto;
    width: calc(100% - 1rem);
    gap: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 12px 24px -8px rgba(25, 118, 165, 0.1);
  }
  .certificados-search-form {
    padding: 1.5rem 1rem;
    border-radius: 1.2rem;
    gap: 1.2rem;
  }
  .info-box {
    padding: 1.5rem 1rem;
    border-radius: 1.2rem;
    min-height: 150px;
  }
}
@media (max-width: 480px) {
  .certificados-section {
    padding: 1.5rem 1rem;
    margin: 0.5rem auto 2rem auto;
    width: calc(100% - 0.5rem);
    gap: 1.2rem;
  }
  .certificados-search-form {
    padding: 1.2rem 1rem;
    gap: 1rem;
  }
  .info-box {
    padding: 1.2rem 1rem;
  }
}
.admin-certificados-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 40, 60, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  animation: modalFadeIn 0.4s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(8px);
  }
}
.admin-certificados-modal-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 1.8rem;
  box-shadow: 0 16px 48px rgba(20, 30, 60, 0.2), 0 8px 24px rgba(25, 118, 165, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 2.5rem 2.2rem 2rem 2.2rem;
  min-width: 360px;
  max-width: 95vw;
  max-height: 85vh;
  width: 450px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  transform: scale(0.9);
  animation: modalSlideIn 0.4s ease-out forwards;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #1976a5 rgba(240, 248, 255, 0.3);
}
.admin-certificados-modal-content::-webkit-scrollbar {
  width: 8px;
}
.admin-certificados-modal-content::-webkit-scrollbar-track {
  background: rgba(240, 248, 255, 0.3);
  border-radius: 4px;
}
.admin-certificados-modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #1976a5, #45b7d1);
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(25, 118, 165, 0.2);
  transition: all 0.3s ease;
}
.admin-certificados-modal-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #45b7d1, #5ec6e7);
  box-shadow: 0 4px 8px rgba(25, 118, 165, 0.3);
}
.admin-certificados-modal-content::-webkit-scrollbar-thumb:active {
  background: linear-gradient(135deg, #1565c0, #1976a5);
}

@keyframes modalSlideIn {
  from {
    transform: scale(0.9) translateY(20px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}
.admin-certificados-modal-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1976a5;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(25, 118, 165, 0.1);
  background: linear-gradient(135deg, #1976a5, #45b7d1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.admin-certificados-modal-content .close-modal {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(25, 118, 165, 0.1);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #1976a5;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.admin-certificados-modal-content .close-modal:hover {
  background: rgba(25, 118, 165, 0.2);
  transform: scale(1.1) rotate(90deg);
}

.admin-certificados-modal-content form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.admin-certificados-modal-content label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-certificados-modal-content input,
.admin-certificados-modal-content select {
  padding: 0.8rem 1rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(203, 231, 246, 0.5);
  font-size: 1rem;
  background: rgba(247, 251, 253, 0.8);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}
.admin-certificados-modal-content input:focus,
.admin-certificados-modal-content select:focus {
  outline: none;
  border-color: #1976a5;
  box-shadow: 0 0 0 3px rgba(25, 118, 165, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

.admin-certificados-modal-content .btn {
  margin-top: 1.5rem;
  align-self: flex-end;
  padding: 0.8rem 2rem;
  border-radius: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.certificados-modal .certificados-modal-content {
  max-height: 85vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #1976a5 rgba(240, 248, 255, 0.3);
}
.certificados-modal .certificados-modal-content::-webkit-scrollbar {
  width: 8px;
}
.certificados-modal .certificados-modal-content::-webkit-scrollbar-track {
  background: rgba(240, 248, 255, 0.3);
  border-radius: 4px;
}
.certificados-modal .certificados-modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #1976a5, #45b7d1);
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(25, 118, 165, 0.2);
  transition: all 0.3s ease;
}
.certificados-modal .certificados-modal-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #45b7d1, #5ec6e7);
  box-shadow: 0 4px 8px rgba(25, 118, 165, 0.3);
}
.certificados-modal .certificados-modal-content::-webkit-scrollbar-thumb:active {
  background: linear-gradient(135deg, #1565c0, #1976a5);
}

.admin-certificados-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  position: relative;
}
.admin-certificados-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(25, 118, 165, 0.3), transparent);
}
.admin-certificados-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1976a5;
  margin: 0;
  text-align: left;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 4px rgba(25, 118, 165, 0.1);
  background: linear-gradient(135deg, #1976a5, #45b7d1, #5ec6e7);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 3s ease-in-out infinite;
}
.admin-certificados-header h2 i {
  margin-right: 0.8rem;
  color: #1976a5;
  filter: drop-shadow(0 2px 4px rgba(25, 118, 165, 0.2));
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.admin-certificados-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: 3rem;
  padding: 1.5rem 0;
}

.admin-certificados-actions .btn {
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 1rem;
  padding: 1rem 2rem;
  box-shadow: 0 8px 20px rgba(25, 118, 165, 0.15), 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.admin-certificados-actions .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}
.admin-certificados-actions .btn:hover::before {
  left: 100%;
}

.admin-certificados-actions .btn-success {
  background: linear-gradient(135deg, #1976a5 0%, #45b7d1 50%, #5ec6e7 100%);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.admin-certificados-actions .btn-success:hover {
  background: linear-gradient(135deg, #5ec6e7 0%, #45b7d1 50%, #1976a5 100%);
  box-shadow: 0 12px 28px rgba(25, 118, 165, 0.25), 0 6px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px) scale(1.05);
}

.admin-certificados-actions .btn-warning {
  background: linear-gradient(135deg, #f39c12 0%, #f7b731 50%, #f5e6a2 100%);
  color: #2c3e50;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.admin-certificados-actions .btn-warning:hover {
  background: linear-gradient(135deg, #f5e6a2 0%, #f7b731 50%, #f39c12 100%);
  box-shadow: 0 12px 28px rgba(243, 156, 18, 0.25), 0 6px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px) scale(1.05);
}

.admin-certificados-actions .btn-danger {
  background: linear-gradient(135deg, #e74c3c 0%, #ec7063 50%, #f7b7a3 100%);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.admin-certificados-actions .btn-danger:hover {
  background: linear-gradient(135deg, #f7b7a3 0%, #ec7063 50%, #e74c3c 100%);
  box-shadow: 0 12px 28px rgba(231, 76, 60, 0.25), 0 6px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px) scale(1.05);
}

.admin-certificados-actions i {
  font-size: 1.3em;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.admin-certificados-actions .btn:hover i {
  transform: scale(1.1) rotate(5deg);
}

.admin-certificados-list {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(20, 30, 60, 0.12), 0 4px 16px rgba(25, 118, 165, 0.08);
  padding: 2rem 1.8rem;
  border: 1px solid rgba(203, 231, 246, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.admin-certificados-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #1976a5, #5ec6e7, #45b7d1);
  opacity: 0.8;
}
.admin-certificados-list:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(20, 30, 60, 0.15), 0 6px 20px rgba(25, 118, 165, 0.12);
  background: rgba(255, 255, 255, 0.9);
}
.admin-certificados-list table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.admin-certificados-list table th {
  background: linear-gradient(135deg, rgba(234, 246, 251, 0.95), rgba(203, 231, 246, 0.95));
  color: #1976a5;
  font-weight: 700;
  padding: 1.2rem 0.8rem;
  text-align: left;
  font-size: 0.95rem;
  border-bottom: 2px solid rgba(25, 118, 165, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(25, 118, 165, 0.1);
}
.admin-certificados-list table td {
  padding: 1.2rem 0.8rem;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid rgba(224, 231, 239, 0.5);
  transition: all 0.3s ease;
}
.admin-certificados-list table tbody tr {
  transition: all 0.3s ease;
}
.admin-certificados-list table tbody tr:hover {
  background: rgba(25, 118, 165, 0.05);
  transform: scale(1.01);
}
.admin-certificados-list table tr:last-child td {
  border-bottom: none;
}
.admin-certificados-list table input[type=radio] {
  accent-color: #1976a5;
  transform: scale(1.3);
  transition: transform 0.2s ease;
}
.admin-certificados-list table input[type=radio]:hover {
  transform: scale(1.4);
}

.admin-certificados-lista {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(25, 118, 165, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.admin-certificados-lista::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #1976a5, #5ec6e7, #45b7d1);
  opacity: 0.8;
}
.admin-certificados-lista:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(25, 118, 165, 0.12);
  background: rgba(255, 255, 255, 0.9);
}
.admin-certificados-lista h3 {
  color: #1976a5;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(25, 118, 165, 0.1);
  background: linear-gradient(135deg, #1976a5, #45b7d1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.admin-cert-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: flex-end;
  align-items: center;
}

.certificado-admin-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: flex-end;
  align-items: center;
}

.certificado-admin-actions .btn {
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  border-radius: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.certificado-admin-actions .btn-sm {
  background: linear-gradient(135deg, #6c757d, #8a939b);
  color: white;
  border: none;
}

.certificado-admin-actions .btn-sm:hover {
  background: linear-gradient(135deg, #8a939b, #6c757d);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(108, 117, 125, 0.2);
}

.certificado-admin-actions .btn-danger {
  background: linear-gradient(135deg, #dc3545, #e86370);
  border: none;
}

.certificado-admin-actions .btn-danger:hover {
  background: linear-gradient(135deg, #e86370, #dc3545);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(220, 53, 69, 0.25);
}

.certificado-admin-actions i {
  font-size: 1rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.certificado-admin-actions .btn:hover i {
  transform: scale(1.15);
}

.certificado-admin-actions .btn:active {
  transform: translateY(-1px) scale(1.02);
}

@media (max-width: 1024px) {
  .admin-certificados-actions {
    gap: 1.2rem;
    margin-bottom: 2.5rem;
  }
  .admin-certificados-actions .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .admin-certificados-header h2 {
    font-size: 1.5rem;
    text-align: center;
  }
  .admin-certificados-actions {
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
  }
  .admin-certificados-actions .btn {
    font-size: 0.95rem;
    padding: 0.8rem 1.2rem;
    flex: 1;
    min-width: 140px;
    max-width: 180px;
  }
  .admin-certificados-list {
    padding: 1.5rem 1rem;
    border-radius: 1.2rem;
  }
  .admin-certificados-list table th,
  .admin-certificados-list table td {
    font-size: 0.9rem;
    padding: 0.8rem 0.4rem;
  }
  .admin-certificados-lista {
    padding: 1.5rem 1rem;
    border-radius: 1.2rem;
  }
  .certificado-header {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .certificado-admin-actions {
    width: 100%;
    justify-content: center;
    gap: 0.8rem;
  }
}
@media (max-width: 480px) {
  .admin-certificados-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .admin-certificados-actions .btn {
    width: 100%;
    max-width: none;
    justify-content: center;
  }
}
.politicas-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem 1.5rem;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px rgba(51, 145, 170, 0.08);
}
.politicas-main h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1976a5;
  margin-bottom: 2.2rem;
  margin-top: 2.2rem;
  text-align: center;
  letter-spacing: -1px;
}
.politicas-main section {
  margin-bottom: 2.5rem;
  background: #f7fafc;
  border-radius: 1rem;
  padding: 1.5rem 1rem 2rem 1rem;
  box-shadow: 0 2px 12px rgba(51, 145, 170, 0.04);
  border: 1px solid #e3e9ef;
}
.politicas-main section iframe {
  margin-top: 1.2rem;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(51, 145, 170, 0.06);
  border: 1px solid #e3e9ef;
}
@media (max-width: 600px) {
  .politicas-main {
    padding: 1.2rem 0.2rem 2rem 0.2rem;
  }
  .politicas-main h1 {
    font-size: 1.3rem;
  }
  .politicas-main section {
    padding: 1rem 0.2rem 1.2rem 0.2rem;
  }
}

.info-box.cards-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr 1fr;
  gap: 2.5rem;
  justify-items: center;
  align-items: stretch;
  padding: 2.5rem 0;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.info-box.cards-section .section-title {
  grid-column: 1/span 2;
  grid-row: 1;
}

.info-box.cards-section .card-servicio:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.info-box.cards-section .card-servicio:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.info-box.cards-section .card-servicio:nth-child(4) {
  grid-column: 1;
  grid-row: 3;
}

.info-box.cards-section .card-servicio:nth-child(5) {
  grid-column: 2;
  grid-row: 3;
}

@media (max-width: 900px) {
  .info-box.cards-section {
    gap: 1.5rem 1.5rem;
    padding: 1.2rem 0 1.2rem 0;
  }
}
@media (max-width: 700px) {
  .info-box.cards-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 0 1.2rem 0;
    width: 100%;
  }
  .info-box.cards-section .section-title {
    width: 100%;
    font-size: 1.35rem !important;
    padding: 0.5rem 0.5rem 0.2rem 0.5rem;
    text-align: center;
    word-break: break-word;
    max-width: 98vw;
    margin: 0 auto 1.2rem auto;
  }
  .info-box.cards-section .card-servicio {
    max-width: 420px;
    width: 100%;
    margin: 0 0 1.2rem 0;
    align-self: center;
  }
  .info-box.cards-section .card-servicio:last-child {
    margin-bottom: 0;
  }
}
.section-title {
  text-align: center;
  margin: 0 0 1.5rem 0;
  color: #1976a5;
  font-size: 2.3rem;
  font-weight: bold;
  width: 100%;
  max-width: 100%;
  top: 30px;
}

.card-servicio {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.16), 0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s, transform 0.18s cubic-bezier(0.4, 0.2, 0.2, 1);
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: box-shadow 0.2s;
  position: relative;
}

.card-servicio:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.16), 0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.08), 0 16px 24px rgba(0, 0, 0, 0.1), 0 24px 32px rgba(0, 0, 0, 0.08), 0 32px 40px rgba(0, 0, 0, 0.06), 0 40px 48px rgba(0, 0, 0, 0.04);
  transform: scale(1.035);
  border: rgb(51, 145, 170) 1px solid;
}

.card-servicio img {
  width: 100%;
  max-width: 420px;
  height: 250px;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
  margin-bottom: 1.2rem;
  display: block;
}

.card-servicio h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1976a5;
  font-weight: bold;
  text-align: left;
  width: 100%;
  padding-left: 0.2rem;
  letter-spacing: 0.2px;
}

.card-servicio p {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  text-align: left;
  color: #3386a9;
}

.card-servicio ul {
  width: 100%;
  margin: 0.5rem 0 0 0;
}

.card-servicio li {
  font-size: 1.05rem;
  color: #222;
  margin-bottom: 0.7em;
  padding-left: 1.8em;
  position: relative;
  line-height: 1.5;
}

.card-servicio li:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0.5em;
  top: 0.45em;
  width: 1em;
  height: 1em;
  background: #1976a5;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(25, 118, 165, 0.1);
  padding-left: 0;
  list-style: none;
}

@media (max-width: 700px) {
  .carousel-controls-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4.5rem;
    width: 100%;
    margin: 1.2rem 0 0 0;
    background: none;
    z-index: 20;
  }
  .carousel-indicators {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin: 0;
    background: none;
    z-index: 20;
    width: auto;
  }
  .carousel-arrow {
    position: static !important;
    transform: none !important;
    margin: 0 0.2rem;
    height: 34px;
    width: 34px;
    min-width: 34px;
    min-height: 34px;
    font-size: 1.3rem;
    z-index: 1;
    border-radius: 50% !important;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(25, 118, 165, 0.08);
    background: #1976a5;
    color: #fff;
    border: none;
    transition: background 0.2s, box-shadow 0.2s;
  }
}
@media (max-width: 700px) {
  .carousel-indicators {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    width: 100%;
    margin: 1.2rem 0 0 0;
    background: none;
    z-index: 20;
  }
  .carousel-indicators-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
  }
  .carousel-arrow {
    position: static !important;
    transform: none !important;
    margin: 0 0.5rem;
    height: 38px;
    width: 38px;
    font-size: 1.5rem;
    z-index: 1;
  }
}
@media (max-width: 700px) {
  .card-certificacion-img {
    display: none !important;
  }
}
@media (max-width: 700px) {
  .info-box {
    padding-bottom: 80px;
    min-width: 0;
    width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .section-title {
    font-size: 1.35rem !important;
    padding: 0.5rem 0.5rem 0.2rem 0.5rem;
    text-align: center;
    word-break: break-word;
    max-width: 98vw;
    margin: 0 auto 1.2rem auto;
  }
  .carousel-track {
    flex-direction: row;
    overflow-x: auto !important;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    min-width: 100vw;
    max-width: 100vw;
    padding: 0;
    background: transparent;
    box-shadow: none;
    align-items: flex-start;
    position: relative;
    height: auto;
  }
  .card-certificacion {
    min-width: 98vw;
    max-width: 98vw;
    margin: 0 1vw;
    scroll-snap-align: center;
    padding: 1.1rem 0.5rem 1.1rem 0.5rem;
    min-height: 420px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: visible !important;
    box-sizing: border-box;
    word-break: break-word;
    z-index: 1;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  }
  .card-certificacion-img {
    order: 1;
    width: 80vw;
    max-width: 220px;
    min-height: 90px;
    margin: 0 auto 0.7rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .card-certificacion-img img {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
    object-fit: contain;
  }
  .card-certificacion-content {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 1.5rem 1.5rem 1.5rem;
    box-sizing: border-box;
  }
  .card-certificacion-content * {
    text-align: center !important;
  }
  .carousel-indicators {
    bottom: 0;
  }
}
.card-certificacion-content {
  position: relative;
  z-index: 2;
}

.card-certificacion-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  box-sizing: border-box;
}

.card-certificacion-content * {
  color: #222 !important;
}

.card-certificacion-img {
  z-index: 1;
}

.card-certificacion-img {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 120px;
  height: 120px;
  margin-bottom: 1.5rem;
}

.card-certificacion-img {
  margin: 0 auto 1.5rem auto;
  width: 100%;
  max-width: 320px;
  height: auto;
  min-height: 140px;
  display: flex;
  justify-content: flex-start;
  flex-shrink: 0;
  align-items: center;
}

.card-certificacion-img img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  object-fit: contain;
}

.card-certificacion {
  min-width: 100%;
  max-width: 100%;
  margin: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 570px !important;
  box-sizing: border-box;
  color: #222;
}

.carousel-track {
  position: relative;
  z-index: 1;
}

.card-certificacion img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0;
}

.card-certificacion h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1976a5;
  font-weight: bold;
  overflow: visible;
  word-break: break-word;
  z-index: 3;
}

.card-certificacion p {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: #333;
}

.card-certificacion ul {
  margin: 0 auto 0.5rem auto;
  padding: 0 0 0 1.2em;
  text-align: left;
  max-width: 420px;
  font-size: 0.95rem;
  color: #1976a5;
}

.card-certificacion li {
  margin-bottom: 0.4em;
  font-size: 1em;
}

@media (max-width: 700px) {
  .card-certificacion {
    max-width: 420px;
    width: 100%;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(51, 134, 169, 0.13);
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    margin: 0;
    display: grid;
    grid-template-rows: auto 1fr;
    align-items: start;
    justify-items: stretch;
    transition: box-shadow 0.2s;
    position: relative;
    font-size: 1rem;
  }
}
.info-box {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 2rem auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 900px;
  padding-bottom: 120px;
}

.carousel-track {
  width: 100%;
  background: transparent;
  box-shadow: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-height: unset;
  box-sizing: border-box;
  color: inherit;
  z-index: 20;
  position: relative;
  overflow: hidden;
}

.card-certificacion:hover {
  box-shadow: 0 4px 16px rgba(25, 118, 165, 0.15);
}

.carousel-arrow {
  background: #1976a5;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 0.5rem;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(25, 118, 165, 0.08);
  z-index: 10;
}

.carousel-arrow:focus {
  outline: 2px solid #1976a5;
  background: #145a86;
}

.carousel-arrow[disabled] {
  opacity: 0.4;
  pointer-events: none;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  z-index: 20;
  pointer-events: auto;
}

.carousel-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #b0b4bb;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(25, 118, 165, 0.08);
  outline: none;
}

.carousel-dot.active,
.carousel-dot:focus {
  background: #1976a5;
  box-shadow: 0 0 0 2px rgba(25, 118, 165, 0.2666666667);
}

@media (max-width: 700px) {
  .card-certificacion {
    min-width: 100%;
    max-width: 100%;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    padding: 3.5rem 3rem 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 520px;
    box-sizing: border-box;
    color: #222;
  }
  .carousel-arrow {
    height: 38px;
    font-size: 1.5rem;
  }
}
.reglamentos-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem 1.5rem;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px rgba(51, 145, 170, 0.08);
}
.reglamentos-container h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1976a5;
  margin-bottom: 2.2rem;
  margin-top: 2.2rem;
  text-align: center;
  letter-spacing: -1px;
}
.reglamentos-container section {
  margin-bottom: 2.5rem;
  background: #f7fafc;
  border-radius: 1rem;
  padding: 1.5rem 1rem 2rem 1rem;
  box-shadow: 0 2px 12px rgba(51, 145, 170, 0.04);
  border: 1px solid #e3e9ef;
}
.reglamentos-container section iframe {
  margin-top: 1.2rem;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(51, 145, 170, 0.06);
  border: 1px solid #e3e9ef;
}
@media (max-width: 600px) {
  .reglamentos-container {
    padding: 1.2rem 0.2rem 2rem 0.2rem;
  }
  .reglamentos-container h1 {
    font-size: 1.3rem;
  }
  .reglamentos-container section {
    padding: 1rem 0.2rem 1.2rem 0.2rem;
  }
}

.dev-certs-count {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1976a5;
  margin-top: 1.1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.dev-logs-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
  font-size: 0.98rem;
  max-height: 260px;
  overflow-y: auto;
}

.dev-logs-list li {
  background: #fafdff;
  border-radius: 0.5rem;
  margin-bottom: 0.4rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid #e0eaf2;
  color: #1976a5;
  font-family: "Fira Mono", "Consolas", monospace;
  font-size: 0.97rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.dev-logs-list .log-action {
  color: #1976a5;
  font-weight: 700;
  margin-right: 0.5rem;
}

.dev-logs-list .log-user {
  color: #388e3c;
  font-weight: 600;
  margin-right: 0.5rem;
}

.dev-logs-list .log-detail {
  color: #555;
  font-weight: 400;
  font-size: 0.95em;
}

.dev-panel-section {
  max-width: 1100px;
  margin: 2.5rem auto 2.5rem auto;
  padding: 0 1.2rem;
}

.dev-panel-section h2 {
  text-align: center;
  color: #1976a5;
  margin-bottom: 2.2rem;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.dev-panel-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
}

.dev-panel-actions .btn-danger {
  background: linear-gradient(90deg, #c62828 60%, #e57373 100%);
  color: #fff;
  border: none;
  border-radius: 0.7rem;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 0.7rem 1.5rem;
  box-shadow: 0 2px 8px rgba(198, 40, 40, 0.08);
  letter-spacing: 0.01em;
  transition: background 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dev-panel-actions .btn-danger:hover {
  background: linear-gradient(90deg, #b71c1c 60%, #c62828 100%);
  box-shadow: 0 4px 16px rgba(198, 40, 40, 0.13);
}

.dev-panel-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  justify-content: center;
}

.dev-panel-card {
  background: linear-gradient(135deg, #e3f0fa 0%, #fafdff 100%);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(25, 118, 165, 0.13), 0 1.5px 8px rgba(25, 118, 165, 0.08);
  border: 1.5px solid #b0c4d6;
  padding: 2.2rem 1.7rem 1.5rem 1.7rem;
  min-width: 320px;
  max-width: 350px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  z-index: 2;
  transition: box-shadow 0.2s;
}

.dev-panel-card:hover {
  box-shadow: 0 12px 40px rgba(25, 118, 165, 0.18), 0 2px 12px rgba(25, 118, 165, 0.1);
}

.dev-panel-card h3 {
  color: #1976a5;
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dev-panel-card form label {
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #1976a5;
  letter-spacing: 0.01em;
}

.dev-panel-card form input {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 0.7rem;
  border: 1.5px solid #b0c4d6;
  margin-bottom: 1.1rem;
  font-size: 1.08rem;
  background: #fafdff;
  transition: border 0.2s, box-shadow 0.2s;
}

.dev-panel-card form input:focus {
  border: 1.5px solid #1976a5;
  outline: none;
  box-shadow: 0 0 0 2px rgba(179, 224, 255, 0.2666666667);
}

.dev-panel-card button {
  width: 100%;
  padding: 0.8rem;
  background: linear-gradient(90deg, #1976a5 60%, #43b0e6 100%);
  color: #fff;
  border: none;
  border-radius: 0.7rem;
  font-size: 1.13rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(25, 118, 165, 0.08);
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}

.dev-panel-card button:hover {
  background: linear-gradient(90deg, #145a8a 60%, #1976a5 100%);
  box-shadow: 0 4px 16px rgba(25, 118, 165, 0.13);
}

.dev-panel-card .msg {
  text-align: center;
  margin-top: 0.7rem;
  font-weight: 600;
  font-size: 1.05rem;
}

.dev-panel-card .msg.success {
  color: #2e7d32;
}

.dev-panel-card .msg.error {
  color: #c62828;
}

.dev-users-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
  font-size: 1rem;
}

.dev-users-list li {
  background: #fafdff;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0.6rem 1rem;
  border: 1px solid #e0eaf2;
  color: #1976a5;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dev-token-info {
  margin-top: 0.7rem;
  font-size: 1.05rem;
  text-align: center;
}

@media (max-width: 900px) {
  .dev-panel-cards {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  .dev-panel-card {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}
.dev-create-admin-container h2 {
  text-align: center;
  color: #1976a5;
  margin-bottom: 1.5rem;
}

.dev-create-admin-container label {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.dev-create-admin-container input {
  width: 100%;
  padding: 0.6rem;
  border-radius: 0.5rem;
  border: 1px solid #b0c4d6;
  margin-bottom: 1rem;
}

.dev-create-admin-container button {
  width: 100%;
  padding: 0.7rem;
  background: #1976a5;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.dev-create-admin-container button:hover {
  background: #145a8a;
}

.dev-create-admin-container .msg {
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
}

.dev-create-admin-container .msg.success {
  color: #2e7d32;
}

.dev-create-admin-container .msg.error {
  color: #c62828;
}

.contacto-desc {
  font-size: 1rem;
  color: #444;
  margin-bottom: 0.5rem;
  line-height: 1.5;
  text-align: center;
}

.contacto-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #1877f3;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
  text-align: left;
  line-height: 1.1;
}

.info-box {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px -8px rgba(20, 30, 60, 0.13);
  padding: 2.2rem 2.2rem 2.2rem 2.2rem;
  max-width: 900px;
  margin: 2.5rem auto;
}

.contacto-flex {
  display: flex;
  flex-direction: row;
  gap: 2.2rem;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
}

.contacto-flex .contact-form {
  flex: 1 1 72%;
  max-width: 100px;
  min-width: 550px;
  margin: 0;
}

.contacto-flex .contacto-mapa {
  flex: 0 1 480px;
  max-width: 480px;
  min-width: 480px;
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.contacto-flex .contacto-mapa iframe {
  width: 100%;
  height: 30rem;
  border: 0;
  border-radius: 1.2rem;
  min-width: 0;
  max-width: 100%;
  display: block;
}

@media (max-width: 800px) {
  .contacto-flex {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .info-box {
    padding: 1.2rem 0.5rem;
  }
  .contacto-flex .contact-form,
  .contacto-flex .contacto-mapa {
    max-width: 100%;
    min-width: 0;
  }
}
.btn-enviar-contacto i {
  margin-right: 0.5em;
}

#contacto-msg {
  margin-top: 1.1rem;
  font-size: 1.04rem;
}

.btn-enviar-contacto {
  margin-top: 0.5rem;
  background: #1877f3;
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  border: none;
  border-radius: 0.7rem;
  padding: 0.72rem 1.5rem;
  cursor: pointer;
  box-shadow: 0 2px 8px -2px rgba(24, 119, 243, 0.08);
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}

.btn-enviar-contacto:hover,
.btn-enviar-contacto:focus {
  background: #145dc2;
  color: #fff;
  box-shadow: 0 4px 16px -4px rgba(24, 119, 243, 0.13);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-form label {
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #222;
  margin-bottom: 0.08rem;
  font-size: 0.97rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.38rem 0.7rem;
  border: 1.5px solid #e0e0e0;
  border-radius: 0.6rem;
  font-size: 0.97rem;
  font-family: inherit;
  background: #fafbfc;
  color: #222;
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
  box-shadow: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1877f3;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(24, 119, 243, 0.08);
}

.contact-form textarea {
  min-height: 60px;
  resize: vertical;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel] {
  height: 2rem;
}

.contact-form input:disabled,
.contact-form textarea:disabled {
  background: #f3f3f3;
  color: #aaa;
}

.directory-title {
  font-size: 2.1rem;
  color: rgb(51, 145, 170);
  margin-bottom: 0.5rem;
  text-align: center;
}

.directory-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.2rem;
}

.directory-search-label {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.directory-search-input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.directory-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 2.5rem;
  margin-top: 2px;
  padding: 0;
  align-items: stretch;
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.directory-item {
  min-width: 0;
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 0.9rem 0.7rem 0.9rem 0.7rem;
  background: #e1dfea;
  border-radius: 0.6rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.16), 0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: background 0.2s, box-shadow 0.2s;
}

.directory-item strong,
.directory-item b {
  font-size: 1.05rem;
  font-weight: 600;
  color: #222;
}

.directory-item i {
  margin-right: 0.35em;
  color: #1877f3;
  font-size: 1.05em;
}

@media (max-width: 800px) {
  .info-box {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    border-radius: 0;
    padding: 1.2rem 0;
    box-sizing: border-box;
  }
  .directory-title {
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
  }
  .directory-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 0;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
  }
  .directory-item {
    max-width: 100vw;
    min-width: 0;
    width: 100vw;
    box-sizing: border-box;
    border-radius: 0;
  }
  .contacto-flex {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .contacto-flex .contact-form,
  .contacto-flex .contacto-mapa {
    max-width: 100vw;
    min-width: 0;
  }
}
@media (max-width: 991.98px) {
  #footer {
    margin-bottom: 65px !important;
  }
  .main-content-navbar-padding {
    padding-top: 0 !important;
  }
}
@media (min-width: 992px) {
  .main-content-navbar-padding {
    padding-top: 70px;
  }
}
.step {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 18px 0 rgba(24, 119, 243, 0.1);
  padding: 2rem 2.5rem;
  margin: 2rem auto;
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  transition: box-shadow 0.2s, transform 0.3s;
  position: relative;
}

.step-image {
  width: 380px;
  height: 250px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px 0 rgba(24, 119, 243, 0.08);
}

.step-image.left {
  order: 0;
}

.step-image.right {
  order: 2;
}

.step h2 {
  color: #15395b;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  text-align: left;
  letter-spacing: -0.5px;
}

.step p {
  font-size: 0.98rem;
  line-height: 1.2;
  color: #222;
  text-align: left;
  margin: 0 0 0.5rem 0;
}

@media (max-width: 900px) {
  .step {
    max-width: 98vw;
    padding: 1.2rem 0.5rem;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  .step-image {
    width: 240px;
    height: 100px;
    order: 0 !important;
    margin-bottom: 1rem;
  }
  .step h2 {
    font-size: 0.92rem;
    text-align: center;
  }
  .step p {
    font-size: 0.88rem;
    text-align: center;
  }
}
.appeal-process-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #15395b;
  margin-bottom: 2.2rem;
  margin-top: 2.2rem;
  text-align: center;
  letter-spacing: -1px;
}

.appeal-process-flow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  margin: 60px auto 40px auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
}

.process-icon {
  background: #1976a5;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 0 0 10px #e9ecef;
  font-size: 2.8rem;
  color: #fff;
}

.process-desc {
  font-size: 1.08rem;
  margin-top: 0.5rem;
  color: #222;
}

@media (min-width: 701px) {
  .appeal-process-flow {
    align-items: flex-start;
  }
  .process-step:nth-child(even) {
    margin-top: 120px;
  }
}
@media (max-width: 1100px) {
  .appeal-process-flow {
    gap: 1.2rem;
    max-width: 98vw;
  }
  .process-step {
    width: 160px;
    min-width: 120px;
    font-size: 0.98rem;
  }
  .process-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
}
@media (max-width: 700px) {
  .appeal-process-flow {
    flex-direction: column;
    align-items: center;
    gap: 2.2rem;
  }
  .process-step {
    width: 98vw;
    max-width: 400px;
  }
}
.notification {
  display: flex;
  align-items: center;
  background: #e1dfea;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  min-width: 320px;
  max-width: 420px;
  font-family: inherit;
  border: none;
}

.notification__body {
  display: flex;
  align-items: center;
}

.notification__icon {
  width: 32px;
  height: 32px;
  margin-right: 1rem;
}

.notification__message {
  font-size: 1rem;
  color: #222;
}

.notification__progress {
  height: 4px;
  width: 100%;
  border-radius: 2px;
  background: #e1dfea;
  margin-top: 0.5rem;
}

.notification--success {
  background: #e1dfea;
  color: #1a7f37;
}

.notification--success .notification__progress {
  background: #1a7f37;
}

.notification--error {
  background: #e1dfea;
  color: #c00;
}

.notification--error .notification__progress {
  background: #c00;
}

.notification--info {
  background: #e1dfea;
  color: #1769aa;
}

.notification--info .notification__progress {
  background: #1769aa;
}

.notification--warning {
  background: #e1dfea;
  color: #b8860b;
}

.notification--warning .notification__progress {
  background: #b8860b;
}

.notification--file {
  background: #e1dfea;
  color: #333;
}

.notification--file .notification__progress {
  background: #333;
}

.notification--file-error {
  background: #e1dfea;
  color: #c00;
}

.notification--file-error .notification__progress {
  background: #c00;
}

.notification--user-created {
  background: #e1dfea;
  color: #1a7f37;
}

.notification--user-created .notification__progress {
  background: #1a7f37;
}

.notification--user-error {
  background: #e1dfea;
  color: #c00;
}

.notification--user-error .notification__progress {
  background: #c00;
}

h1.section-title {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 3rem;
  font-weight: bold;
  color: #1976a5;
  word-break: break-word;
  max-width: 100vw;
  box-sizing: border-box;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.logo-courses {
  width: 35rem;
  height: auto;
  display: block;
  margin: 0 auto 0 18rem;
}

.courses-card-extra {
  margin-top: 1rem;
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
  background: none;
  font-size: 1.1rem;
  color: #1976a5;
  text-align: center;
  box-sizing: border-box;
  will-change: max-height, opacity;
}

.iso-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 2vw, 16px);
}

.iso-list li {
  margin-bottom: 0;
}

.iso-title {
  font-weight: bold;
  color: #1976a5;
  font-size: 1.1em;
}

.iso-duration {
  color: #555;
  font-size: 1em;
}

.courses-card-header.expandable {
  cursor: pointer;
  outline: none;
  user-select: none;
  transition: background 0.2s;
}

.courses-card-header.expandable:focus {
  box-shadow: 0 0 0 2px rgba(25, 118, 165, 0.2666666667);
}

.section-description {
  text-align: center;
  margin: 1.5rem auto;
  margin-top: -2rem;
  max-width: 800px;
  line-height: 1.6;
  padding: 0 1.5rem;
  font-size: 1.6rem;
  color: #555;
}

.courses-cards-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  background: none;
}

.courses-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 2rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  margin-bottom: 2rem;
}

.courses-card {
  background: #fff;
  border-radius: 1.2rem 1.2rem 1.5rem 1.5rem;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 188px;
  min-width: 300px;
  padding: 0 1.5rem 1.5rem 1.5rem;
  position: relative;
  overflow: visible;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.16), 0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.08), 0 16px 24px rgba(0, 0, 0, 0.1), 0 24px 32px rgba(0, 0, 0, 0.08), 0 32px 40px rgba(0, 0, 0, 0.06), 0 40px 48px rgba(0, 0, 0, 0.04);
  align-self: start;
}

.courses-card-header {
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 1.375rem;
  padding: 0.875rem 0 0.625rem 0;
  border-radius: 1.2rem 1.2rem 0 0;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  color: #fff;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.expand-indicator {
  font-size: 0.95rem;
  font-weight: 400;
  color: #fff;
  background: rgba(25, 118, 165, 0.13);
  border-radius: 0.7em;
  padding: 0.1em 0.7em;
  margin-left: 0.5em;
  transition: background 0.2s, color 0.2s;
  user-select: none;
}

.expand-arrow {
  font-size: 1.1em;
  margin-left: 0.2em;
  color: #fff;
  transition: transform 0.2s;
  user-select: none;
}

.courses-card-body {
  text-align: center;
  font-size: 1.25rem;
  color: #222;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.courses-card.blue .courses-card-header {
  background: linear-gradient(90deg, #4fc3f7 60%, #1976a5 100%);
}

.courses-card.beige .courses-card-header {
  background: linear-gradient(90deg, #dbc7b3 60%, #1976a5 100%);
}

.courses-card.orange .courses-card-header {
  background: linear-gradient(90deg, #f7b32b 60%, #1976a5 100%);
}

.courses-card.blue {
  border-bottom: 8px solid #1976a5;
}

.courses-card.beige {
  border-bottom: 8px solid #bfae9c;
}

.courses-card.orange {
  border-bottom: 8px solid #dfa126;
}

@media (max-width: 900px) {
  .courses-cards-grid {
    max-width: 98vw;
    gap: 1.2rem 0.7rem;
  }
}
@media (max-width: 700px) {
  h1.section-title {
    font-size: 2.1rem;
    padding-left: 1vw;
    padding-right: 1vw;
    max-width: 100vw;
    overflow-wrap: break-word;
  }
  .section-description {
    font-size: 1.2rem;
    padding: 0 1vw;
    max-width: 100vw;
    overflow-wrap: break-word;
  }
  .courses-cards-grid {
    max-width: 100vw;
    width: 100vw;
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .courses-card {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 600px) {
  .courses-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 95vw;
  }
  .courses-card {
    min-width: 0;
    width: 100%;
  }
}
.news-container {
  max-width: 100%;
  width: 100vw;
  overflow-x: hidden;
  padding: 0;
  margin: 0 auto;
}

.carousel-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}

.carousel-inner {
  width: 100%;
  max-width: 1200px;
  min-width: 1200px;
  margin: 0 auto;
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 1.2rem;
  background: #fff;
  margin-top: -2rem;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  display: none;
  transition: opacity 0.5s;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  box-sizing: border-box;
}

.carousel-item.active {
  opacity: 1;
  z-index: 2;
  display: block;
}

.social-media {
  width: 100%;
  display: flex;
  gap: 1.2rem;
  margin-top: -2rem;
  margin-bottom: 2.5rem;
  margin-left: 5px;
  padding: 0 1.5rem;
  align-items: flex-start;
}

.social-icon {
  text-decoration: none;
  font-size: 2.1rem;
  color: #3386a9;
  background: #f5fafd;
  border-radius: 50px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: background 0.2s, color 0.2s, width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  padding-left: 0.7rem;
  padding-right: 0.7rem;
  cursor: pointer;
}

.social-icon-label {
  opacity: 0;
  max-width: 0;
  margin-left: 0.7rem;
  white-space: nowrap;
  font-size: 1rem;
  color: #3386a9;
  font-weight: 500;
  transition: opacity 0.18s, max-width 0.28s cubic-bezier(0.4, 0, 0.2, 1), margin-left 0.18s;
  pointer-events: none;
}

.social-icon:hover,
.social-icon:focus {
  background: #3386a9;
  color: #fff;
  width: 300px;
  justify-content: flex-start;
}

.social-icon:hover .social-icon-label,
.social-icon:focus .social-icon-label {
  opacity: 1;
  max-width: 200px;
  margin-left: 1.1rem;
  color: #fff;
}

.social-icon:hover {
  background: #3386a9;
  color: #fff;
}

.news-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 0.8rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(51, 145, 170, 0.08);
}

.news-caption {
  text-align: left;
  margin-top: 0.5rem;
}

.news-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #3386a9;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #3386a9;
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .carousel-container {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  .carousel-inner {
    width: 100% !important;
    max-width: 300px !important;
    min-width: 300px;
    margin-right: 0 !important;
    height: 460px !important;
    max-height: 460px !important;
    min-height: 120px !important;
  }
  .news-image {
    height: 300px;
  }
}
@media (hover: hover) and (pointer: fine) {
  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    width: 0 !important;
    background: transparent !important;
    display: none !important;
  }
  /* Scrollbar flotante personalizada */
  .floating-scrollbar {
    position: fixed;
    top: 0;
    right: 0.2rem;
    width: 10px;
    height: 100vh;
    z-index: 100;
    pointer-events: auto;
    background: none;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    backdrop-filter: blur(6px) brightness(1.1);
    -webkit-backdrop-filter: blur(6px) brightness(1.1);
  }
  .floating-scrollbar-thumb {
    width: 100%;
    min-height: 40px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 24px rgba(51, 134, 169, 0.18), 0 1px 8px rgba(0, 0, 0, 0.08);
    border: 1.5px solid rgba(51, 134, 169, 0.25);
    cursor: pointer;
    transition: background 0.25s, box-shadow 0.25s, transform 0.18s;
    position: absolute;
    left: 0;
    backdrop-filter: blur(2px) brightness(1.2);
    -webkit-backdrop-filter: blur(2px) brightness(1.2);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .floating-scrollbar-thumb::after {
    content: "";
    display: block;
    width: 60%;
    height: 60%;
    border-radius: 8px;
    background: linear-gradient(135deg, #3386a9 60%, #45aaf2 100%);
    opacity: 0.7;
    box-shadow: 0 2px 8px rgba(51, 134, 169, 0.18);
  }
  .floating-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.32);
    box-shadow: 0 8px 32px rgba(51, 134, 169, 0.28), 0 2px 16px rgba(0, 0, 0, 0.12);
    transform: scale(1.05);
  }
}
.head-img-container {
  position: relative;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  background: #000;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: #000;
  max-width: 100vw;
  overflow-x: hidden;
  z-index: 0;
}

.main-head-img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  border-radius: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  z-index: 1;
  object-fit: cover;
  object-position: center center;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  border-radius: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  z-index: 1;
  object-fit: cover;
  object-position: center center;
  overflow-x: hidden;
}

.lacs-comp-overlay {
  max-width: 100%;
  width: 100vw;
  overflow-x: hidden;
}

.maintenance-image {
  width: 15rem;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 0.5rem;
}

.maintenance-text {
  font-size: 1.2rem;
  color: #333;
  text-align: center;
  margin-top: 1rem;
}

.cards-section .cards-header {
  text-align: center;
  margin-bottom: 24px;
}

.cards-section .cards-header > .title {
  font-size: 2.2rem !important;
  font-weight: 600 !important;
  color: #3386a9;
  margin-bottom: 1rem;
}

.cards-section .cards-header > .subtitle {
  font-size: 1.2rem !important;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.section-clients .title {
  font-size: 2.2rem !important;
  font-weight: 700 !important;
  color: #3386a9;
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .error-container {
    padding: 1rem;
    margin-right: 20%;
  }
  .maintenance-image {
    width: 8rem;
  }
  .maintenance-text {
    font-size: 1rem;
  }
}

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