:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-8ad5fa8 */.dpto-hero {
  max-width: 1180px;
  margin: 70px auto;
  padding: 0 24px;
}
.dpto-hero-tab {
  display: inline-block;
  background: #b00000;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 12px 26px;
  border-radius: 14px 14px 0 0;
  margin-left: 36px;
}
.dpto-hero-body {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 4px 24px 24px 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.06);
  padding: 50px 46px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
}
.dpto-hero-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: #111;
  line-height: 1.25;
  margin-bottom: 18px;
}
.dpto-hero-text p {
  color: #555;
  font-size: 16px;
  line-height: 1.85;
}
.dpto-hero-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dpto-stack-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px dashed #e5d5d5;
}
.dpto-stack-item:last-child {
  border-bottom: none;
}
.dpto-stack-item i {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 12px;
  background: #fff3f3;
  color: #b00000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.dpto-stack-item h4 {
  font-size: 15.5px;
  color: #111;
  margin-bottom: 4px;
}
.dpto-stack-item p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.6;
}
@media(max-width: 900px) {
  .dpto-hero-body {
    grid-template-columns: 1fr;
  }
  .dpto-hero-tab {
    margin-left: 20px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6674d77 */.dpto-access {
  max-width: 1180px;
  margin: 70px auto;
  padding: 0 24px;
}
.dpto-access-header {
  text-align: center;
  margin-bottom: 40px;
}
.dpto-access-header span {
  display: inline-block;
  background: #fff3f3;
  color: #b00000;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}
.dpto-access-header h2 {
  font-size: 30px;
  font-weight: 800;
  color: #111;
}
.dpto-access-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.dpto-card {
  position: relative;
  background: #fff !important;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 28px 24px;
  text-decoration: none;
  color: inherit !important;
  transition: .3s ease;
  overflow: hidden;
  width: 100%;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  display: block;
}
.dpto-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #b00000;
  transform: scaleX(0);
  transform-origin: left;
  transition: .3s ease;
}
.dpto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0,0,0,.07);
}
.dpto-card:hover::before {
  transform: scaleX(1);
}
.dpto-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #fff3f3;
  color: #b00000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}
.dpto-card h3 {
  font-size: 16.5px;
  color: #111 !important;
  margin-bottom: 8px;
}
.dpto-card p {
  font-size: 13px;
  color: #666 !important;
  line-height: 1.65;
  margin-bottom: 14px;
}
.dpto-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b00000 !important;
  font-size: 13px;
  font-weight: 700;
}
.dpto-card-link i {
  font-size: 11px;
}

/* MODAL BASE */
.dpto-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.dpto-modal-overlay.activo {
  display: flex;
}
.dpto-modal-box {
  position: relative;
  background: #fff;
  border-radius: 24px;
  max-width: 440px;
  width: 100%;
  padding: 44px 36px;
  text-align: center;
  animation: dptoModalIn .3s ease;
}
@keyframes dptoModalIn {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.dpto-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f4f4f4 !important;
  border: none !important;
  width: 34px !important;
  height: 34px !important;
  min-width: 34px;
  padding: 0 !important;
  margin: 0;
  border-radius: 50% !important;
  font-size: 18px;
  color: #555 !important;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.dpto-modal-close:hover {
  background: #b00000 !important;
  color: #fff !important;
}
.dpto-modal-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #fff3f3;
  color: #b00000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.dpto-modal-tag {
  display: inline-block;
  background: #fff3f3;
  color: #b00000;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.dpto-modal-box h3 {
  font-size: 19px;
  color: #111;
  margin-bottom: 18px;
}
.dpto-modal-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dpto-modal-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #faf8f8;
  border: 1px solid #f0e4e4;
  border-radius: 12px;
  padding: 14px 16px;
  text-decoration: none !important;
  color: #333 !important;
  font-size: 13.5px;
  font-weight: 600;
  text-align: left;
  transition: .2s ease;
}
.dpto-modal-links a:hover {
  background: #fff3f3;
  border-color: #b00000;
}
.dpto-modal-links a i {
  color: #b00000 !important;
  font-size: 15px;
  flex: none;
}

/* Tamaños de modal */
.dpto-modal-box-md {
  max-width: 520px;
  text-align: left;
}
.dpto-modal-box-md .dpto-modal-icon,
.dpto-modal-box-md .dpto-modal-tag,
.dpto-modal-box-md h3 {
  text-align: center;
}
.dpto-modal-box-lg {
  max-width: 640px;
  text-align: left;
  max-height: 85vh;
  overflow-y: auto;
}
.dpto-modal-box-lg .dpto-modal-icon,
.dpto-modal-box-lg .dpto-modal-tag,
.dpto-modal-box-lg h3 {
  text-align: center;
}

/* Lista de Funciones */
.dpto-modal-list {
  margin: 18px 0 0;
  padding-left: 20px;
}
.dpto-modal-list li {
  color: #444;
  font-size: 14.5px;
  line-height: 1.85;
  margin-bottom: 10px;
}

/* Preguntas Frecuentes */
.dpto-faq-item {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #f0f0f0;
}
.dpto-faq-item:first-of-type {
  margin-top: 20px;
  padding-top: 0;
  border-top: none;
}
.dpto-faq-item h5 {
  color: #b00000;
  font-size: 15px;
  margin-bottom: 8px;
}
.dpto-faq-item p {
  color: #555;
  font-size: 13.5px;
  line-height: 1.75;
  margin: 0;
}
.dpto-faq-item a {
  color: #b00000;
  font-weight: 700;
}

@media(max-width: 900px) {
  .dpto-access-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 550px) {
  .dpto-access-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-49a91a8 */.dpto-id-card {
  position: relative;
  max-width: 760px;
  margin: 70px auto;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 20px;
  padding: 40px 44px 40px 34px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 16px 40px rgba(0,0,0,.07);
  overflow: hidden;
}
.dpto-id-ribbon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  background: repeating-linear-gradient(
    45deg,
    #b00000,
    #b00000 8px,
    #8a0000 8px,
    #8a0000 16px
  );
}
.dpto-id-photo {
  width: 140px;
  height: 140px;
  flex: none;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #b00000;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dpto-id-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block;
}
.dpto-id-info {
  flex: 1;
}
.dpto-id-label {
  display: inline-block;
  background: #fff3f3;
  color: #b00000;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.dpto-id-info h2 {
  font-size: 24px;
  color: #111;
  font-weight: 800;
  margin-bottom: 12px;
}
.dpto-id-info p {
  color: #555;
  font-size: 14.5px;
  line-height: 1.75;
  max-width: 500px;
}
@media(max-width: 700px) {
  .dpto-id-card {
    flex-direction: column;
    text-align: center;
    padding: 34px 24px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b47971f */.dpto-canal {
  max-width: 980px;
  margin: 70px auto;
  padding: 0 24px;
}
.dpto-canal-header-top span {
  display: block;
  color: #b00000;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.dpto-canal-header-top h2 {
  font-size: 30px;
  font-weight: 800;
  color: #111;
}
.dpto-canal-intro {
  color: #666;
  font-size: 15px;
  margin: 12px 0 30px;
}
.dpto-canal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,.05);
}
.dpto-canal-item {
  background: #b00000;
  padding: 26px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-right: 1px solid rgba(255,255,255,.15);
}
.dpto-canal-item:last-child {
  border-right: none;
}
.dpto-canal-icon {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 12px;
  background: rgba(255,255,255,.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.dpto-canal-item h4 {
  color: #fff;
  font-size: 14.5px;
  margin-bottom: 4px;
}
.dpto-canal-item p {
  color: rgba(255,255,255,.85);
  font-size: 13px;
  margin: 0;
}
@media(max-width: 800px) {
  .dpto-canal-grid {
    grid-template-columns: 1fr;
  }
  .dpto-canal-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }
}/* End custom CSS */