/********** Normalize ***********/
@import url('https://necolas.github.io/normalize.css/8.0.1/normalize.css');

/********** Font Style ***********/
@import "var/font/fontStyle.css";

/********** Colors ***********/
@import "var/colors/colors.css";

/*********  Body Style **********/
@import "var/body.css";

html {
  scroll-behavior: smooth;
}

:root {
  --dt-page-bg: #f0effe;
  --dt-page-bg-strong: #ffffff;
  --dt-surface: rgba(255, 255, 255, 0.9);
  --dt-surface-soft: rgba(255, 255, 255, 0.72);
  --dt-surface-strong: rgba(255, 255, 255, 0.96);
  --dt-text: #050420;
  --dt-text-muted: rgba(5, 4, 32, 0.72);
  --dt-text-soft: rgba(5, 4, 32, 0.56);
  --dt-border: rgba(5, 4, 32, 0.08);
  --dt-border-strong: rgba(5, 4, 32, 0.12);
  --dt-shadow-soft: 0 24px 48px rgba(5, 4, 32, 0.08);
  --dt-shadow-strong: 0 34px 90px rgba(5, 4, 32, 0.13);
}

[data-theme="dark"] {
  --dt-page-bg: #050420;
  --dt-page-bg-strong: #080823;
  --dt-surface: rgba(14, 16, 45, 0.9);
  --dt-surface-soft: rgba(14, 16, 45, 0.68);
  --dt-surface-strong: rgba(10, 11, 38, 0.96);
  --dt-text: #f8fafc;
  --dt-text-muted: rgba(226, 232, 240, 0.78);
  --dt-text-soft: rgba(226, 232, 240, 0.64);
  --dt-border: rgba(255, 255, 255, 0.1);
  --dt-border-strong: rgba(255, 255, 255, 0.16);
  --dt-shadow-soft: 0 24px 48px rgba(0, 0, 0, 0.3);
  --dt-shadow-strong: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.bg-mesh-gradient {
  height: 100%;
  background: radial-gradient(at 18% 99%,
      rgb(236, 242, 245) 0px,
      transparent 50%) repeat scroll 0% 0%,
    radial-gradient(at 97% 8%, rgb(249, 253, 255) 0px, transparent 90%) repeat scroll 0% 0%,
    radial-gradient(at 97% 8%, rgb(209, 230, 243) 0px, transparent 90%) repeat scroll 0% 0%,
    radial-gradient(at 79% 82%, rgb(255, 255, 255) 0px, transparent 90%) repeat scroll 0% 0%,
    radial-gradient(at 96% 10%, rgb(221, 242, 255) 0px, transparent 90%) repeat scroll 0% 0%,
    radial-gradient(at 42% 20%, rgb(226, 240, 249) 0px, transparent 90%) repeat scroll 0% 0%,
    radial-gradient(at 4% 49%, rgb(255, 255, 255) 0px, transparent 90%) repeat scroll 0% 0%,
    rgba(222, 219, 219, 0) radial-gradient(at 57% 33%, rgb(232, 246, 255) 0px, #f0effe 90%) repeat scroll 0% 0%;
}

/* ==========================================================================
   DT Foundations
   ========================================================================== */

.dt-page {
  color: var(--dark);
}

.dt-page main,
.dt-page section {
  position: relative;
}

.dt-page-hero {
  padding: 4.5rem 0 3rem;
  background:
    radial-gradient(circle at top left, rgba(69, 164, 194, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 249, 252, 0.98) 100%);
}

.dt-page-shell {
  padding: 4.5rem 0;
}

.dt-page-shell--tight {
  padding-top: 2.5rem;
}

.dt-section {
  padding: 4.5rem 0;
}

.dt-section--tight {
  padding: 3rem 0;
}

.dt-section-header {
  max-width: 52rem;
  margin-bottom: 2rem;
}

.dt-section-header--center {
  text-align: center;
}

.dt-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.45rem 0.85rem;
  margin-bottom: 1rem;
  color: var(--primario);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(7, 134, 173, 0.08);
  border: 1px solid rgba(7, 134, 173, 0.12);
  border-radius: 999px;
}

.dt-title {
  margin: 0 0 1rem;
  color: var(--dark);
  font-family: var(--fonth1_lg);
  font-size: 3.4rem;
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.dt-title--md {
  font-size: 2.35rem;
}

.dt-title--sm {
  font-size: 1.65rem;
}

.dt-gradient-text {
  color: var(--primario);
  background: linear-gradient(135deg, var(--primario) 0%, var(--terciario) 50%, var(--cuarto) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dt-text {
  max-width: 48rem;
  margin: 0;
  color: rgba(5, 4, 32, 0.72);
  font-size: 1.05rem;
  line-height: 1.72;
}

.dt-text--wide {
  max-width: 100%;
}

.dt-text+.dt-text {
  margin-top: 1rem;
}

.dt-stack {
  display: grid;
  gap: 1rem;
}

.dt-stack--sm {
  gap: 0.75rem;
}

.dt-stack--lg {
  gap: 1.5rem;
}

.dt-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.dt-surface,
.dt-card {
  position: relative;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(5, 4, 32, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 22px 50px rgba(5, 4, 32, 0.08);
  overflow: clip;
}

.dt-surface--soft,
.dt-card--soft {
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.dt-card {
  display: grid;
  gap: 0.85rem;
  height: 100%;
}

.dt-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  color: var(--dark);
  font-size: 1.25rem;
  background: linear-gradient(120deg, var(--cuarto), #d6fff3);
  border-radius: 1rem;
  box-shadow: 0 14px 28px rgba(116, 255, 191, 0.22);
}

.dt-card__eyebrow {
  color: var(--secundario);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dt-card__title {
  margin: 0;
  color: var(--dark);
  font-family: var(--fonth3_lg);
  font-size: 1.3rem;
  line-height: 1.15;
}

.dt-card__text {
  margin: 0;
  color: rgba(5, 4, 32, 0.72);
  line-height: 1.65;
}

.dt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.4rem;
  padding: 0.8rem 1.45rem;
  color: var(--dark);
  font-family: var(--fontcta_lg);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.dt-button:hover,
.dt-button:focus-visible {
  transform: translateY(-1px);
}

.dt-button:focus-visible,
.dt-social-link:focus-visible,
.dt-prose a:focus-visible,
.dt-card a:focus-visible,
.dt-post-card__title a:focus-visible,
.dt-sidebar-link:focus-visible,
.dt-tag-link:focus-visible,
.dt-input:focus-visible,
.dt-textarea:focus-visible,
.dt-select:focus-visible {
  outline: 2px solid rgba(7, 134, 173, 0.35);
  outline-offset: 4px;
}

.dt-button--primary {
  color: var(--dark);
  background: linear-gradient(135deg, var(--cuarto), var(--sexto));
  box-shadow: 0 18px 30px rgba(255, 223, 73, 0.24);
}

.dt-button--ghost {
  color: var(--dark);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(5, 4, 32, 0.08);
}

.dt-button.dt-button--whatsapp {
  color: var(--white);
  background: linear-gradient(135deg, #25d366 0%, #178c42 100%);
  box-shadow: 0 18px 32px rgba(37, 211, 102, 0.22);
}

.dt-button.dt-button--whatsapp:hover,
.dt-button.dt-button--whatsapp:focus-visible {
  color: var(--white);
  box-shadow: 0 22px 36px rgba(37, 211, 102, 0.3);
}

@media (max-width: 991.98px) {

  .dt-page-hero,
  .dt-page-shell,
  .dt-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .dt-title {
    font-size: 2.6rem;
  }

  .dt-title--md {
    font-size: 2.1rem;
  }

  .dt-title--sm {
    font-size: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .dt-title {
    max-width: 100%;
    font-size: 2rem;
    line-height: 1.12;
  }

  .dt-title--md {
    font-size: 1.75rem;
  }

  .dt-title--sm {
    font-size: 1.35rem;
  }

  .dt-surface,
  .dt-card {
    padding: 1.15rem;
    border-radius: 1.2rem;
  }

  .dt-button {
    width: 100%;
  }
}

/* Topbar */
#topbar {
  padding-block: 0.55rem;
  background:
    linear-gradient(90deg, rgba(5, 4, 32, 0.98), rgba(7, 134, 173, 0.82)),
    var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.topbar-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.topbar-info-item--flags img {
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(5, 4, 32, 0.24);
}

.topbar-info-item a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.topbar-info-item a:hover,
.topbar-info-item a:focus-visible {
  color: var(--white);
}

.topbar-info-item a i {
  color: var(--cuarto);
}

.topbar-settings {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.topbar-settings a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.5rem;
  padding-inline: 1rem;
  color: var(--white);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.topbar-settings a:hover,
.topbar-settings a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

/* ==========================================================================
   TOPBAR BUTTONS (DARK MODE & LANGUAGE SELECTOR)
   ========================================================================== */

.topbar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.5rem;
  height: 2.5rem;
  padding-inline: 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--fontFamilyBody);
  font-size: 0.875rem;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

#theme-toggle.topbar-btn {
  padding-inline: 0;
  width: 2.5rem;
}

.topbar-btn:hover,
.topbar-btn:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
  outline: none;
}

.topbar-btn:focus-visible {
  outline: 2px solid rgba(7, 134, 173, 0.6);
  outline-offset: 3px;
}

/* Language Selector Dropdown */
.language-selector {
  position: relative;
  display: inline-block;
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 150px;
  background: rgba(8, 8, 34, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(5, 4, 32, 0.3);
  padding: 0.5rem 0;
  display: none;
  flex-direction: column;
  z-index: 1050;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.language-selector.is-open .language-dropdown {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.lang-option {
  display: block;
  width: 100%;
  padding: 0.5rem 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--fontFamilyBody);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-option:hover,
.lang-option:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.lang-option.active {
  color: var(--cuarto);
  background: rgba(255, 255, 255, 0.04);
}

/*** Navbar ***/
#navbar {
  padding-block: 0.8rem;
  background: rgba(5, 4, 32, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

#navbar.bg-blurry {
  background: rgba(5, 4, 32, 0.92);
  box-shadow: 0 16px 40px rgba(5, 4, 32, 0.18);
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
  transition: top 0.2s ease-in, background-color 0.25s ease-in, box-shadow 0.25s ease-in;
}

.sticky-top.is-header-hidden {
  top: -100px;
}

.dt-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.navbar-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 32px rgba(5, 4, 32, 0.22);
}

.navbar-logo img {
  width: 2.05rem;
}

.dt-navbar__desktop {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.dt-nav-link,
.dt-nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.55rem 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  border: 0;
  border-radius: 0.95rem;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.dt-nav-link:hover,
.dt-nav-link:focus-visible,
.dt-nav-toggle:hover,
.dt-nav-toggle:focus-visible,
.dt-nav-link.is-active,
.dt-nav-group.is-open .dt-nav-toggle,
.dt-nav-group.is-active .dt-nav-toggle {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.dt-nav-link:focus-visible,
.dt-nav-toggle:focus-visible,
.dt-nav-card:focus-visible,
.dt-nav-feature__cta:focus-visible,
.dt-header-cta:focus-visible,
.offcanvas-button:focus-visible,
.topbar-info-item a:focus-visible,
.topbar-settings a:focus-visible,
.topbar-btn:focus-visible,
.lang-option:focus-visible,
.dt-mobile-link:focus-visible,
.dt-mobile-accordion__toggle:focus-visible,
.dt-mobile-subcard:focus-visible,
.dt-mobile-panel-cta:focus-visible,
.dt-home-mobile-link:focus-visible,
.dt-home-mobile-accordion__toggle:focus-visible,
.dt-home-mobile-subcard:focus-visible,
.dt-home-mobile-panel-cta:focus-visible,
.dt-home-mobile-tool:focus-visible {
  outline: 2px solid rgba(7, 134, 173, 0.6);
  outline-offset: 3px;
}

.dt-nav-group {
  position: relative;
}

.dt-nav-group::after {
  position: absolute;
  top: 100%;
  right: -0.75rem;
  left: -0.75rem;
  height: 1rem;
  content: "";
}

.dt-nav-group .bi-chevron-down {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.dt-nav-group.is-open .bi-chevron-down,
.dt-nav-group:hover .bi-chevron-down,
.dt-nav-group:focus-within .bi-chevron-down {
  transform: rotate(180deg);
}

.dt-nav-panel {
  --dt-nav-panel-x: -50%;
  --dt-nav-panel-nudge: 0px;
  display: none;
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  width: min(44rem, 76vw);
  max-width: calc(100vw - 2rem);
  padding: 1rem;
  background: rgba(8, 8, 34, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 24px 60px rgba(5, 4, 32, 0.28);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  transform: translate(calc(var(--dt-nav-panel-x) + var(--dt-nav-panel-nudge)), 14px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  contain: paint;
}

.dt-nav-group[data-menu-group="webdev"] .dt-nav-panel {
  --dt-nav-panel-x: 0px;
  right: auto;
  left: 0;
}

.dt-nav-group[data-menu-group="marketing"] .dt-nav-panel {
  --dt-nav-panel-x: 0px;
  right: auto;
  left: 0;
}

.dt-nav-group[data-menu-group="hosting"] .dt-nav-panel {
  --dt-nav-panel-x: 0px;
  right: 0;
  left: auto;
}

.dt-nav-group.is-open .dt-nav-panel,
.dt-nav-group:hover .dt-nav-panel,
.dt-nav-group:focus-within .dt-nav-panel {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(calc(var(--dt-nav-panel-x) + var(--dt-nav-panel-nudge)), 0);
}

.dt-nav-group[data-menu-group="webdev"].is-open .dt-nav-panel,
.dt-nav-group[data-menu-group="webdev"]:hover .dt-nav-panel,
.dt-nav-group[data-menu-group="webdev"]:focus-within .dt-nav-panel,
.dt-nav-group[data-menu-group="marketing"].is-open .dt-nav-panel,
.dt-nav-group[data-menu-group="marketing"]:hover .dt-nav-panel,
.dt-nav-group[data-menu-group="marketing"]:focus-within .dt-nav-panel,
.dt-nav-group[data-menu-group="hosting"].is-open .dt-nav-panel,
.dt-nav-group[data-menu-group="hosting"]:hover .dt-nav-panel,
.dt-nav-group[data-menu-group="hosting"]:focus-within .dt-nav-panel {
  transform: translate(calc(var(--dt-nav-panel-x) + var(--dt-nav-panel-nudge)), 0);
}

.dt-nav-panel__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.9fr);
  gap: 1rem;
}

.dt-nav-panel__links {
  display: grid;
  gap: 0.75rem;
}

.dt-nav-card {
  position: relative;
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1rem 1rem 4rem;
  color: var(--white);
  text-decoration: none;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.dt-nav-card:hover,
.dt-nav-card:focus-visible,
.dt-nav-card.is-active {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(7, 134, 173, 0.35);
}

.dt-nav-card__icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  color: var(--dark);
  background: linear-gradient(135deg, var(--cuarto), var(--sexto));
  border-radius: 0.85rem;
  box-shadow: 0 10px 24px rgba(255, 223, 73, 0.25);
}

.dt-nav-card strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.dt-nav-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.45;
}

.dt-nav-feature {
  position: relative;
  display: grid;
  gap: 0.75rem;
  padding: 1.1rem;
  color: var(--white);
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at top right, rgba(7, 134, 173, 0.38), transparent 55%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.dt-nav-feature__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.4rem 0.75rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dt-nav-feature h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1.1;
}

.dt-nav-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  line-height: 1.55;
}

.dt-nav-feature__cta,
.dt-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.2s ease, filter 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.dt-nav-feature__cta:hover,
.dt-nav-feature__cta:focus-visible,
.dt-header-cta:hover,
.dt-header-cta:focus-visible {
  transform: translateY(-1px);
}

.dt-nav-feature__cta {
  width: fit-content;
  color: var(--dark);
  background: linear-gradient(135deg, var(--cuarto), var(--sexto));
}

.dt-navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dt-header-cta--primary {
  color: var(--dark);
  background: linear-gradient(135deg, var(--cuarto), var(--sexto));
  box-shadow: 0 16px 30px rgba(255, 223, 73, 0.22);
}

.dt-header-cta--whatsapp {
  color: var(--white);
  background: linear-gradient(120deg, #25d366, #128c42);
  box-shadow: 0 16px 30px rgba(17, 136, 63, 0.2);
}

.dt-header-cta.is-active {
  outline: 2px solid rgba(7, 134, 173, 0.5);
  outline-offset: 2px;
}

.offcanvas-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
}

.dt-mobile-menu {
  --bs-offcanvas-width: min(100vw, 24rem);
  right: 0;
  left: auto;
  max-width: 100vw;
  background:
    radial-gradient(circle at top right, rgba(7, 134, 173, 0.28), transparent 42%),
    rgba(5, 4, 32, 0.98);
  color: var(--white);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -20px 0 60px rgba(5, 4, 32, 0.24);
  will-change: transform;
}

.dt-mobile-menu .offcanvas-header {
  position: relative;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 1rem;
}

.dt-mobile-menu .offcanvas-header img {
  width: 2.25rem !important;
  margin: 0;
}

.dt-mobile-menu .offcanvas-header button {
  position: static;
  color: var(--white);
  transform: none;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
}

.dt-mobile-menu .offcanvas-body {
  display: grid;
  gap: 1.25rem;
  padding: 0 1.5rem 1.5rem;
  text-align: left;
}

.dt-mobile-nav {
  display: grid;
  gap: 0.85rem;
}

.dt-mobile-link,
.dt-mobile-accordion__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.05rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.15rem;
}

.dt-mobile-link.is-active,
.dt-mobile-accordion.is-open .dt-mobile-accordion__toggle {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(7, 134, 173, 0.3);
}

.dt-mobile-accordion__toggle i:last-child {
  transition: transform 0.2s ease;
}

.dt-mobile-accordion.is-open .dt-mobile-accordion__toggle i:last-child {
  transform: rotate(180deg);
}

.dt-mobile-accordion__panel {
  display: grid;
  gap: 0.75rem;
  padding-top: 0.75rem;
}

.dt-mobile-subcard {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
}

.dt-mobile-subcard strong {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.98rem;
}

.dt-mobile-subcard p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  line-height: 1.45;
}

.dt-mobile-panel-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  color: var(--dark);
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(120deg, var(--cuarto), #d0fff2);
  border-radius: 999px;
}

.dt-mobile-actions {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 992.02px) {
  .dt-mobile-menu {
    display: none;
  }
}

@media (max-width: 1200px) {
  .dt-header-cta--whatsapp {
    display: none;
  }

  .dt-navbar {
    gap: 1rem;
  }

  .dt-navbar__actions {
    gap: 0;
  }

  .dt-header-cta--primary {
    padding-inline: 1rem;
  }

  .dt-nav-panel {
    width: min(38rem, 80vw);
  }
}

@media (max-width: 992px) {
  #navbar {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .topbar-container,
  .topbar-info {
    gap: 0.75rem;
  }

  .dt-navbar__desktop {
    display: none;
  }

  .dt-navbar__actions {
    display: none;
  }

  .offcanvas-button {
    display: inline-flex;
  }

  .dt-nav-panel {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  .sticky-top,
  .dt-nav-link,
  .dt-nav-toggle,
  .dt-nav-panel,
  .dt-nav-card,
  .dt-nav-group .bi-chevron-down {
    animation: none;
    transition: none;
  }
}

/* Mobile offcanvas redesign */
.offcanvas.dt-home-mobile-menu {
  --bs-offcanvas-width: min(92vw, 390px);
  top: 0.5rem;
  right: 0.5rem;
  bottom: 0.5rem;
  height: auto;
  max-height: calc(100dvh - 1rem);
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 223, 73, 0.18), transparent 26%),
    radial-gradient(circle at 0% 18%, rgba(7, 134, 173, 0.24), transparent 34%),
    linear-gradient(160deg, rgb(10, 11, 38), rgb(5, 4, 32) 62%, rgb(7, 30, 48));
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1.65rem;
  box-shadow: -22px 22px 70px rgba(5, 4, 32, 0.28);
  overflow: hidden;
}

.offcanvas.dt-home-mobile-menu:not(.show):not(.showing):not(.hiding) {
  right: 0;
  width: 0;
  min-width: 0;
  border-width: 0;
  box-shadow: none;
  transform: none;
}

.offcanvas.dt-home-mobile-menu:not(.show):not(.showing):not(.hiding)>* {
  display: none;
}

.dt-home-mobile-menu::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 28%),
    repeating-linear-gradient(90deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 44px);
  content: "";
  pointer-events: none;
}

.dt-home-mobile-menu__header,
.dt-home-mobile-menu__body {
  position: relative;
  z-index: 1;
}

.dt-home-mobile-menu .dt-home-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem 0.75rem;
}

.dt-home-mobile-menu__brand {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.5rem 0.75rem;
}

.dt-home-mobile-menu .dt-home-mobile-menu__brand img {
  display: block;
  width: clamp(7.5rem, 34vw, 9.6rem) !important;
  height: auto;
}

.dt-home-mobile-menu .offcanvas-header .dt-home-mobile-menu__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.dt-home-mobile-menu .dt-home-mobile-menu__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.25rem 1rem 1rem;
  min-height: 0;
  overflow: hidden;
}

.dt-home-mobile-nav {
  display: grid;
  gap: 0.6rem;
  min-height: 0;
  padding-right: 0.1rem;
  overflow-y: auto;
}

.dt-home-mobile-menu .dt-home-mobile-link,
.dt-home-mobile-menu .dt-home-mobile-accordion__toggle {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  min-height: 4.65rem;
  height: 4.65rem;
  padding: 0.78rem 0.85rem;
  color: rgba(255, 255, 255, 0.92);
  text-align: left;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 1.15rem;
}

.dt-home-mobile-menu .dt-home-mobile-link {
  justify-content: flex-start;
  font-weight: 750;
}

.dt-home-mobile-link i,
.dt-home-mobile-accordion__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  color: var(--cuarto);
  background: rgba(7, 134, 173, 0.08);
  border: 1px solid rgba(7, 134, 173, 0.18);
  border-radius: 0.85rem;
  flex: 0 0 auto;
}

.dt-home-mobile-link.is-active,
.dt-home-mobile-accordion.is-active .dt-home-mobile-accordion__toggle,
.dt-home-mobile-accordion.is-open .dt-home-mobile-accordion__toggle {
  background: rgba(7, 134, 173, 0.08);
  border-color: rgba(7, 134, 173, 0.24);
}

.dt-home-mobile-accordion__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.14rem;
  min-width: 0;
  min-height: 2.6rem;
}

.dt-home-mobile-accordion__copy strong {
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0;
}

.dt-home-mobile-accordion__copy small {
  display: -webkit-box;
  max-width: 13.75rem;
  min-height: 2.16em;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.dt-home-mobile-accordion__chevron {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  transition: transform 160ms ease;
}

.dt-home-mobile-accordion.is-open .dt-home-mobile-accordion__chevron {
  transform: rotate(180deg);
}

.dt-home-mobile-accordion__panel {
  display: grid;
  gap: 0.55rem;
  padding: 0.65rem 0 0.2rem 0.65rem;
}

.dt-home-mobile-menu .dt-home-mobile-subcard {
  position: relative;
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  align-items: center;
  gap: 0.1rem 0.65rem;
  min-height: 4.75rem;
  height: 4.75rem;
  padding: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 1rem;
}

.dt-home-mobile-subcard span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: var(--cuarto);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0.75rem;
  grid-row: span 2;
}

.dt-home-mobile-subcard strong {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
}

.dt-home-mobile-subcard p {
  display: -webkit-box;
  margin: 0;
  min-height: 2.1em;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.dt-home-mobile-panel-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.8rem;
  padding: 0.75rem 1rem;
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(120deg, var(--cuarto), #d2fff1);
  border-radius: 999px;
}

.dt-home-mobile-menu__footer {
  display: grid;
  gap: 0.9rem;
  margin-top: auto;
  padding-top: 0.25rem;
  flex: 0 0 auto;
}

.dt-home-mobile-tools {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.dt-home-mobile-tool {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 2.85rem;
  height: 2.85rem;
  padding: 0 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
}

.dt-home-mobile-language .language-dropdown {
  right: 50%;
  transform: translate(50%, 10px);
}

.dt-home-mobile-language.is-open .language-dropdown {
  transform: translate(50%, 0);
}

.dt-home-mobile-actions {
  display: grid;
  gap: 0.62rem;
}

.dt-home-mobile-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.15rem;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
}

.dt-home-mobile-action--primary {
  color: var(--dark);
  background: linear-gradient(135deg, var(--cuarto), var(--sexto));
  box-shadow: 0 18px 32px rgba(255, 223, 73, 0.22);
}

.dt-home-mobile-action--whatsapp {
  color: var(--white);
  background: linear-gradient(120deg, #22c767, #128c42);
  box-shadow: 0 18px 32px rgba(18, 140, 66, 0.2);
}

.dt-home-mobile-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-top: 0.1rem;
}

.dt-home-mobile-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.dt-home-mobile-menu a:focus-visible,
.dt-home-mobile-menu button:focus-visible {
  outline: 2px solid rgba(7, 134, 173, 0.6);
  outline-offset: 3px;
}

@media (max-width: 420px) {
  .offcanvas.dt-home-mobile-menu {
    --bs-offcanvas-width: min(96vw, 390px);
    top: 0.35rem;
    right: 0.35rem;
    bottom: 0.35rem;
    max-height: calc(100dvh - 0.7rem);
    border-radius: 1.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dt-home-mobile-accordion__chevron {
    transition: none;
  }
}


/* BOTONES FLOTANTES  */
.float-container {
  position: fixed;
  right: 15px;
  bottom: 5px;
  z-index: 200;
  display: flex;
  flex-direction: column-reverse;
  gap: 15px;
  transition: margin 0.5s ease-in-out;
}

.float-wsp,
.float-phone {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  transition: 0.2s;
}

.float-phone {
  background-color: var(--primario);
  font-size: 27px;
}

.my-float-wsp,
.my-float-phone {
  margin-top: 16px;
}

.float-wsp:hover,
.float-phone:hover {
  color: #fff;
  -webkit-animation: headShake 1s;
  animation: headShake 1s;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 20px;
  bottom: 35px;
  margin-bottom: -20px;
  width: 60px;
  height: 60px;
  background-color: var(--secundario);
  color: var(--white);
  border-radius: 50px;
  text-align: center;
  font-size: medium;
  box-shadow: 2px 2px 3px #999;
  transition: 0.2s;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

@media (max-width: 991.98px) {

  .float-wsp,
  .float-phone {
    width: 2.5em;
    height: 2.5em;
    font-size: 15px;
  }

  .back-to-top {
    right: 18px !important;
    width: 2.5em !important;
    height: 2.5em !important;
    font-size: small;
  }

  .my-float-wsp,
  .my-float-phone {
    margin-top: 12px;
  }
}

.deco-0 {
  text-decoration: none !important;
}

/* ======================================================= */
/* ========== PAGINAS DE ERRORES Y DESARROLLO ============ */

/* ERROR 404 Y 500 */
.error-404 {
  min-height: 100vh;
}

.a-error {
  color: #0786AD;
}

.icon-404 {
  width: 22px;
  height: 22px;
  margin-left: 2px;
  margin-bottom: 4px;
}

.img-error {
  width: 100%;
}

/* LANDING PAGE */
.cardlanding {
  background: rgba(255, 255, 255, 0.47);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.4px);
  -webkit-backdrop-filter: blur(7.4px);
}

.landing {
  height: 100vh;
}

.landing-text {
  color: rgb(21, 21, 21);
}

.landing img {
  width: 50%;
}

/* ======== FIN PAGINAS DE ERRORES Y DESARROLLO =========== */
/* ======================================================== */

/* Miscelanea */
.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

section {
  padding-block: 87px;
}

/* CSS Divider */

.editorial {
  display: block;
  width: 100%;
  height: 60px;
  max-height: 60px;
  margin: 0;
  z-index: 5;
  bottom: 0;
  position: absolute;
  left: 0;
}

.footer {
  position: relative;
  margin: 0;
  padding: 0;
  background-color: var(--primario);
}

.editorial_footer {
  display: block;
  width: 100% !important;
  height: 50px;
  max-height: 50px;
  margin-top: -50px;
  z-index: 5;
  top: 0;
  position: absolute;
  left: 0;
}

.parallax1>use {
  animation: move-forever1 10s linear infinite;

  &:nth-child(1) {
    animation-delay: -2s;
  }
}

.parallax2>use {
  animation: move-forever2 8s linear infinite;

  &:nth-child(1) {
    animation-delay: -2s;
  }
}

.parallax3>use {
  animation: move-forever3 6s linear infinite;

  &:nth-child(1) {
    animation-delay: -2s;
  }
}

.parallax4>use {
  animation: move-forever4 4s linear infinite;

  &:nth-child(1) {
    animation-delay: -2s;
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever4 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/* Pilares */
#pilares .card {
  box-shadow: 0 30px 40px 0 rgba(0, 0, 0, .2);
  transition: all .2s;
}

#pilares .card:hover {
  transform: translateY(5px);
  box-shadow: none;
}

.padding-video {
  padding-inline: 3rem;
}

.cert_search {
  width: 150px;
}

.analisis_stats {
  width: 70%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6.3px);
  -webkit-backdrop-filter: blur(6.3px);
}

/*** Herramientas ***/
#herramientas .card {
  width: 100px !important;
  height: 130px;
}

.herramientas-icono {
  width: 75px;
  height: auto;
  filter: grayscale(87%);
  transition: 0.2s;
}

.herramientas-icono:hover {
  filter: none;
  transform: translateY(-5px);
}

/*** Banner CTA ***/
.bannercta {
  background:
    url(../img/index/bg-top.png),
    url(../img/index/bg-bottom.png);
  background-position:
    left top,
    right bottom;
  background-repeat: no-repeat;
}

.footer-politicas {
  text-align: center;
}

@media (max-width: 768px) {
  .footer-politicas a {
    margin-right: 10px;
    margin-bottom: 5px;
  }
}

/*** Portafolio ***/
#portafolio .card {
  width: 300px !important;
  padding: 20px;
}

.clientes-icono {
  width: 130px;
  height: auto;
  filter: grayscale(87%);
  transition: 0.2s;
}

.clientes-icono:hover {
  filter: none;
  transform: translateY(-5px);
}

/* Footer */
.footer-logo {
  width: 100%;
  height: auto;
  text-align: center;
}


.search-container {
  position: relative;
  width: 100%;
  border-radius: 50px;
  background: linear-gradient(135deg, rgb(218, 232, 247) 0%, rgb(214, 229, 247) 100%);
  display: flex;
  align-items: center;
}

.search-container::after,
.search-container::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
}

.search-container::before {
  top: -1px;
  left: -1px;
  background: linear-gradient(0deg, rgb(218, 232, 247) 0%, rgb(255, 255, 255) 100%);
  z-index: -1;
}

.search-container::after {
  bottom: -1px;
  right: -1px;
  background: linear-gradient(0deg, rgb(163, 206, 255) 0%, rgb(211, 232, 255) 100%);
  box-shadow: rgba(0, 159, 227, 0.7019607843) 3px 3px 5px 0px, rgba(0, 159, 227, 0.7019607843) 5px 5px 20px 0px;
  z-index: -2;
}

.input {
  padding: 10px;
  width: 100%;
  background: linear-gradient(135deg, rgb(218, 232, 247) 0%, rgb(214, 229, 247) 100%);
  border: none;
  color: #9EBCD9;
  font-size: 20px;
  border-radius: 50px;
}

.input:focus {
  outline: none;
  background: linear-gradient(135deg, rgb(239, 247, 255) 0%, rgb(214, 229, 247) 100%);
}

.search__icon {
  width: 50px;
  aspect-ratio: 1;
  border-left: 2px solid var(--fondo);
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-radius: 50%;
  padding-left: 12px;
  margin-right: 10px;
}

.search__icon:hover {
  border-left: 3px solid var(--fondo);
}

.search__icon path {
  fill: var(--fondo);
}

/* Detalle Blog */
.post-img {
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}

.text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  color: var(--white);
}

#blog-content p,
a {
  color: var(--dark);
}

/* ==========================================================================
   DT Footer
   ========================================================================== */

.dt-site-footer {
  position: relative;
  display: block;
  margin: clamp(4rem, 8vw, 7rem) 0 0;
  padding: clamp(1.5rem, 3vw, 2.25rem) 0 2rem;
  background:
    radial-gradient(circle at top right, rgba(7, 134, 173, 0.28), transparent 38%),
    linear-gradient(160deg, rgba(5, 4, 32, 0.98), rgba(15, 16, 52, 0.94));
  overflow: hidden;
}

.dt-site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 223, 73, 0.14), transparent 18%),
    radial-gradient(circle at 82% 10%, rgba(69, 164, 194, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 223, 73, 0.05), transparent 22%),
    repeating-linear-gradient(90deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 72px),
    repeating-linear-gradient(180deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 72px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 90%);
  z-index: 0;
}

.dt-site-footer__orb {
  position: absolute;
  display: block;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.32;
  pointer-events: none;
  z-index: 0;
  animation: dt-footer-float 14s ease-in-out infinite;
}

.dt-site-footer__orb--one {
  top: -8rem;
  right: -8rem;
  background: radial-gradient(circle, rgba(255, 223, 73, 0.4) 0%, rgba(255, 223, 73, 0) 70%);
}

.dt-site-footer__orb--two {
  bottom: -12rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(69, 164, 194, 0.34) 0%, rgba(69, 164, 194, 0) 72%);
  animation-delay: -6s;
}

.dt-site-footer .container {
  position: relative;
  z-index: 1;
}

.dt-footer-shell {
  position: relative;
  display: grid;
  gap: 2rem;
  padding: clamp(1.3rem, 2vw, 1.75rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    linear-gradient(145deg, rgba(7, 134, 173, 0.18), rgba(5, 4, 32, 0.74) 62%, rgba(255, 223, 73, 0.08));
  border: 1px solid rgba(255, 223, 73, 0.12);
  border-radius: 2rem;
  box-shadow: 0 30px 90px rgba(5, 4, 32, 0.34);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: clip;
}

.dt-footer-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 22%),
    radial-gradient(circle at top left, rgba(69, 164, 194, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 223, 73, 0.08), transparent 22%);
  pointer-events: none;
}

.dt-footer-shell__top,
.dt-footer-grid,
.dt-footer-bottom {
  position: relative;
  z-index: 1;
}

.dt-footer-shell__top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 1.2rem;
}

.dt-footer-brand,
.dt-footer-cta,
.dt-footer-column {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    rgba(5, 4, 32, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.6rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 0 0 1px rgba(255, 223, 73, 0.04);
}

.dt-footer-brand {
  gap: 1rem;
}

.dt-footer-brand__logo {
  width: clamp(10rem, 18vw, 12.5rem);
  height: auto;
}

.dt-footer-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin: 0;
  padding: 0.45rem 0.75rem;
  background: rgba(255, 223, 73, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 223, 73, 0.14);
  border-radius: 999px;
}

.dt-footer-brand__copy,
.dt-footer-cta p,
.dt-footer-contact__body span,
.dt-footer-support__links a,
.dt-footer-copy,
.dt-footer-policies a {
  color: rgba(255, 255, 255, 0.78);
}

.dt-footer-brand__copy {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  max-width: 40rem;
}

.dt-footer-brand__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.dt-footer-brand__signals span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 0.9rem;
  background: rgba(255, 223, 73, 0.06);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid rgba(255, 223, 73, 0.12);
  border-radius: 999px;
}

.dt-footer-brand__signals i {
  color: var(--sales);
  font-size: 1rem;
}

.dt-footer-cta {
  gap: 1rem;
  background:
    linear-gradient(155deg, rgba(7, 134, 173, 0.18), rgba(5, 4, 32, 0.3) 54%, rgba(255, 223, 73, 0.08)),
    rgba(5, 4, 32, 0.8);
}

.dt-footer-cta::before {
  content: "";
  position: absolute;
  inset: auto -20% -32% auto;
  width: 13rem;
  height: 13rem;
  background: radial-gradient(circle, rgba(255, 223, 73, 0.3) 0%, rgba(255, 223, 73, 0) 72%);
  pointer-events: none;
}

.dt-footer-cta h2,
.dt-footer-column h3 {
  margin: 0;
  color: #fff;
  font-family: var(--fonth2_lg);
  line-height: 1.2;
}

.dt-footer-cta h2 {
  max-width: 24rem;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.dt-footer-cta p {
  margin: 0;
  max-width: 28rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}

.dt-footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.dt-footer-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.95rem 1.15rem;
  min-height: 3.35rem;
  color: #fff;
  font-family: var(--fontcta_lg);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.dt-footer-button i {
  font-size: 1rem;
}

.dt-footer-button--primary {
  color: var(--dark);
  background: linear-gradient(120deg, var(--cuarto), #d0fff2);
  border: 1px solid rgba(255, 223, 73, 0.28);
  box-shadow: 0 18px 32px rgba(116, 255, 191, 0.16);
}

.dt-footer-button--secondary {
  background: rgba(255, 223, 73, 0.06);
  border: 1px solid rgba(255, 223, 73, 0.14);
}

.dt-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.dt-footer-column {
  gap: 1rem;
}

.dt-footer-column h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

.dt-footer-linklist {
  display: grid;
  gap: 0.7rem;
}

.dt-footer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.78rem 0.92rem;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.dt-footer-link__label {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
}

.dt-footer-link__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 223, 73, 0.84);
  flex-shrink: 0;
}

.dt-footer-link__meta i {
  font-size: 0.92rem;
}

.dt-footer-link__badge {
  padding: 0.25rem 0.5rem;
  background: rgba(255, 223, 73, 0.2);
  color: var(--cuarto);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 223, 73, 0.2);
  border-radius: 999px;
}

.dt-footer-contact-list {
  display: grid;
  gap: 0.7rem;
}

.dt-footer-contact {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 0.95rem;
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.dt-footer-contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: linear-gradient(135deg, rgba(255, 223, 73, 0.18), rgba(69, 164, 194, 0.12));
  color: #fff;
  border: 1px solid rgba(255, 223, 73, 0.16);
  border-radius: 50%;
  flex-shrink: 0;
}

.dt-footer-contact__icon i {
  font-size: 1.05rem;
}

.dt-footer-contact__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.dt-footer-contact__body strong {
  color: #fff;
  font-size: 0.94rem;
  font-weight: 700;
}

.dt-footer-contact__body span {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
}

.dt-footer-support {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.2rem;
  padding-top: 0.15rem;
}

.dt-footer-support__title {
  color: rgba(255, 223, 73, 0.92);
  font-family: var(--fonth6_lg);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dt-footer-support__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.dt-footer-support__links a {
  display: inline-flex;
  align-items: center;
  padding: 0.68rem 0.8rem;
  background: rgba(255, 223, 73, 0.05);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 223, 73, 0.12);
  border-radius: 999px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.dt-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0.2rem 0;
  border-top: 1px solid rgba(255, 223, 73, 0.12);
}

.dt-footer-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.dt-footer-policies a {
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.dt-footer-copy {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: right;
}

.dt-footer-button:hover,
.dt-footer-button:focus-visible,
.dt-footer-link:hover,
.dt-footer-link:focus-visible,
.dt-footer-contact:hover,
.dt-footer-contact:focus-visible,
.dt-footer-support__links a:hover,
.dt-footer-support__links a:focus-visible {
  transform: translateY(-3px);
}

.dt-footer-button:hover,
.dt-footer-button:focus-visible {
  color: #fff;
}

.dt-footer-button--primary:hover,
.dt-footer-button--primary:focus-visible {
  box-shadow: 0 20px 34px rgba(255, 223, 73, 0.22);
}

.dt-footer-button--secondary:hover,
.dt-footer-button--secondary:focus-visible {
  background: rgba(255, 223, 73, 0.1);
  border-color: rgba(255, 223, 73, 0.2);
}

.dt-footer-link:hover,
.dt-footer-link:focus-visible,
.dt-footer-contact:hover,
.dt-footer-contact:focus-visible,
.dt-footer-support__links a:hover,
.dt-footer-support__links a:focus-visible {
  background: rgba(255, 223, 73, 0.08);
  border-color: rgba(255, 223, 73, 0.24);
  box-shadow: 0 16px 28px rgba(5, 4, 32, 0.26);
}

.dt-footer-policies a:hover,
.dt-footer-policies a:focus-visible {
  color: var(--cuarto);
}

.dt-footer-button:focus-visible,
.dt-footer-link:focus-visible,
.dt-footer-contact:focus-visible,
.dt-footer-policies a:focus-visible,
.dt-footer-support__links a:focus-visible {
  outline: 3px solid rgba(255, 223, 73, 0.62);
  outline-offset: 3px;
}

@keyframes dt-footer-float {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -16px, 0);
  }
}

@media (max-width: 1199.98px) {

  .dt-footer-shell__top,
  .dt-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .dt-site-footer {
    margin-top: 3.5rem;
    padding-top: 1.25rem;
    padding-bottom: 1.5rem;
  }

  .dt-footer-shell {
    gap: 1rem;
    padding: 1rem;
    border-radius: 1.5rem;
  }

  .dt-footer-shell__top,
  .dt-footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .dt-footer-brand,
  .dt-footer-cta,
  .dt-footer-column {
    padding: 1.1rem;
    border-radius: 1.25rem;
  }

  .dt-footer-brand__copy,
  .dt-footer-cta p {
    font-size: 0.96rem;
  }

  .dt-footer-button {
    width: 100%;
  }

  .dt-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .dt-footer-copy {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {

  .dt-site-footer__orb,
  .dt-footer-button,
  .dt-footer-link,
  .dt-footer-contact,
  .dt-footer-support__links a,
  .dt-footer-policies a {
    animation: none;
    transition: none;
  }
}
