.rdn-site-header {
  position: relative;
  z-index: 2;
  color: var(--rdn-ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08);
}

@supports ((-webkit-backdrop-filter: blur(16px)) or (backdrop-filter: blur(16px))) {
  .rdn-site-header {
    background: rgba(255, 255, 255, 0.88);
    -webkit-backdrop-filter: saturate(160%) blur(16px);
    backdrop-filter: saturate(160%) blur(16px);
  }
}

@media (min-width: 1024px) {
  html body #header.rdn-site-header {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    transform: none !important;
  }

  html body .rdn-header-nav {
    position: sticky !important;
    top: 0;
  }

  html body.admin-bar .rdn-header-nav {
    top: 32px;
  }

  body.home #header.rdn-site-header,
  body.front-page #header.rdn-site-header {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    width: 100%;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.78);
  }

  body.home .rdn-header-nav,
  body.front-page .rdn-header-nav {
    position: sticky !important;
    top: 0;
    width: 100%;
    margin-top: 82px;
    margin-bottom: -140px;
  }

  body.home .rdn-header-nav.is-stuck,
  body.front-page .rdn-header-nav.is-stuck {
    position: sticky !important;
    top: 0;
  }

  body.admin-bar.home #header.rdn-site-header,
  body.admin-bar.front-page #header.rdn-site-header {
    top: 32px !important;
  }

  body.admin-bar.home .rdn-header-nav,
  body.admin-bar.front-page .rdn-header-nav {
    top: 32px;
    margin-top: 114px;
    margin-bottom: -172px;
  }

  body.admin-bar.home .rdn-header-nav.is-stuck,
  body.admin-bar.front-page .rdn-header-nav.is-stuck {
    top: 32px;
  }
}

.rdn-header-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 32px;
}

.rdn-header-brand {
  display: flex;
  align-items: center;
  flex: 0 1 360px;
  min-width: 180px;
}

.rdn-header-brand__desktop-logo {
  display: none;
}

.rdn-header-brand__mobile-logo {
  display: flex;
  align-items: center;
}

.rdn-header-brand .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.rdn-header-brand .custom-logo {
  display: block;
  width: auto;
  max-width: 320px;
  max-height: 68px;
}

.rdn-header-brand__text {
  color: var(--rdn-ink-dark);
  font-family: var(--rdn-heading-font);
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
}

.rdn-header-top__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  min-width: 0;
}

.rdn-header-contacts {
  display: none;
}

.rdn-fa-icon {
  display: block;
  flex: 0 0 auto;
}

.rdn-header-contact {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.rdn-header-contact + .rdn-header-contact {
  position: relative;
  padding-left: 24px;
}

.rdn-header-contact + .rdn-header-contact::before {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;
  width: 1px;
  background: rgba(15, 23, 42, 0.12);
  content: "";
}

.rdn-header-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: var(--rdn-blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.rdn-header-contact__content {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.rdn-header-contact__eyebrow {
  color: var(--rdn-muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.rdn-header-contact a {
  overflow: hidden;
  color: var(--rdn-ink-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 150ms ease;
}

.rdn-header-contact a:hover,
.rdn-header-contact a:focus-visible {
  color: var(--rdn-blue);
}

.rdn-account-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  max-width: 190px;
  padding: 0 17px;
  overflow: hidden;
  border: 1px solid rgba(3, 169, 244, 0.25);
  border-radius: 7px;
  color: var(--rdn-ink-dark);
  background: rgba(234, 246, 251, 0.72);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.rdn-account-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.rdn-account-button span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rdn-account-button:hover,
.rdn-account-button:focus-visible {
  border-color: var(--rdn-blue);
  color: #fff;
  background: var(--rdn-blue);
  transform: translateY(-1px);
}

.rdn-header-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  background: rgba(255, 255, 255, 0.94);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.rdn-header-nav.is-stuck {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.admin-bar .rdn-header-nav {
  top: 32px;
}

@supports ((-webkit-backdrop-filter: blur(16px)) or (backdrop-filter: blur(16px))) {
  .rdn-header-nav {
    background: rgba(255, 255, 255, 0.86);
    -webkit-backdrop-filter: saturate(160%) blur(16px);
    backdrop-filter: saturate(160%) blur(16px);
  }

  .rdn-header-nav.is-stuck {
    background: rgba(255, 255, 255, 0.94);
  }
}

.rdn-header-nav__inner {
  display: flex;
  align-items: stretch;
  min-height: 58px;
  gap: 24px;
}

.rdn-primary-navigation {
  display: flex;
  align-items: stretch;
  flex: 1 1 auto;
  min-width: 0;
}

.rdn-primary-menu,
.rdn-primary-menu .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rdn-primary-menu {
  display: flex;
  align-items: stretch;
  gap: 2px;
}

.rdn-primary-menu > li {
  position: relative;
  display: flex;
  align-items: stretch;
}

.rdn-primary-menu > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  color: var(--rdn-ink-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 150ms ease, background-color 150ms ease;
}

.rdn-primary-menu > li > a::after {
  position: absolute;
  right: 15px;
  bottom: 0;
  left: 15px;
  height: 3px;
  background: var(--rdn-blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 150ms ease, transform 150ms ease;
}

.rdn-primary-menu > li:hover > a,
.rdn-primary-menu > li:focus-within > a,
.rdn-primary-menu > .current-menu-item > a,
.rdn-primary-menu > .current-menu-ancestor > a {
  color: var(--rdn-blue);
  background: rgba(3, 169, 244, 0.055);
}

.rdn-primary-menu > li:hover > a::after,
.rdn-primary-menu > li:focus-within > a::after,
.rdn-primary-menu > .current-menu-item > a::after,
.rdn-primary-menu > .current-menu-ancestor > a::after {
  opacity: 1;
  transform: scaleX(1);
}

.rdn-primary-menu > .menu-item-has-children > a {
  padding-right: 37px;
}

.rdn-submenu-toggle {
  position: absolute;
  top: 50%;
  right: 7px;
  z-index: 2;
  display: inline-grid;
  width: 26px;
  height: 26px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: currentColor;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 150ms ease, background-color 150ms ease;
}

.rdn-submenu-toggle svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.rdn-submenu-toggle:hover,
.rdn-submenu-toggle:focus-visible,
.rdn-primary-menu > .is-open > .rdn-submenu-toggle {
  color: var(--rdn-blue);
  background: rgba(3, 169, 244, 0.12);
}

.rdn-submenu-toggle:focus-visible {
  outline: 2px solid var(--rdn-blue);
  outline-offset: 2px;
}

.rdn-primary-menu > .is-open > .rdn-submenu-toggle svg {
  transform: rotate(180deg);
}

.rdn-primary-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: max-content;
  min-width: 230px;
  max-width: 320px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  visibility: hidden;
  opacity: 0;
  color: #fff;
  background: #1d2127;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.24);
  transform: translateY(8px);
  transition: visibility 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.rdn-primary-menu .sub-menu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 9px;
  content: "";
}

.rdn-primary-menu li.is-open > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.rdn-primary-menu .sub-menu li {
  position: relative;
}

.rdn-primary-menu .sub-menu a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 9px 12px;
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  transition: color 140ms ease, background-color 140ms ease, transform 140ms ease;
}

.rdn-primary-menu .sub-menu > li > a::after {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  margin-left: 14px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  content: "";
  opacity: 0.55;
  transform: rotate(45deg);
  transition: opacity 140ms ease, transform 140ms ease;
}

.rdn-primary-menu .sub-menu a:hover,
.rdn-primary-menu .sub-menu a:focus-visible,
.rdn-primary-menu .sub-menu .current-menu-item > a {
  color: #fff;
  background: rgba(3, 169, 244, 0.2);
  transform: translateX(2px);
}

.rdn-primary-menu .sub-menu > li > a:hover::after,
.rdn-primary-menu .sub-menu > li > a:focus-visible::after,
.rdn-primary-menu .sub-menu > .current-menu-item > a::after {
  opacity: 1;
  transform: translateX(2px) rotate(45deg);
}

.rdn-primary-menu .sub-menu .sub-menu {
  top: -8px;
  left: calc(100% + 8px);
}

.rdn-header-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  margin-left: auto;
  padding-block: 8px;
}

.rdn-search-button {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  flex: 0 0 40px;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 7px;
  color: var(--rdn-ink-dark);
  background: #fff;
  cursor: pointer;
  transition: color 150ms ease, border-color 150ms ease, background-color 150ms ease;
}

.rdn-search-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.rdn-search-button:hover,
.rdn-search-button:focus-visible {
  border-color: var(--rdn-blue);
  color: var(--rdn-blue);
  background: var(--rdn-ice);
}

.rdn-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 7px;
  color: #fff;
  background: var(--rdn-red);
  box-shadow: 0 8px 18px rgba(237, 91, 85, 0.24);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.rdn-header-cta svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 150ms ease;
}

.rdn-header-cta:hover,
.rdn-header-cta:focus-visible {
  color: #fff;
  background: #d94e49;
  box-shadow: 0 10px 22px rgba(237, 91, 85, 0.32);
  transform: translateY(-1px);
}

.rdn-header-cta:hover svg,
.rdn-header-cta:focus-visible svg {
  transform: translateX(2px);
}

.rdn-mobile-menu-button,
.rdn-mobile-menu-panel {
  display: none;
}

@media (max-width: 1199px) {
  .rdn-header-top__inner {
    gap: 20px;
  }

  .rdn-header-top__actions {
    gap: 16px;
  }

  .rdn-header-contact + .rdn-header-contact {
    padding-left: 16px;
  }

  .rdn-header-contact--email {
    display: none;
  }

  .rdn-primary-menu > li > a {
    padding-inline: 11px;
  }

  .rdn-primary-menu > li > a::after {
    right: 11px;
    left: 11px;
  }
}

/* Desktop header v2. Mobile keeps its existing header and drawer. */
@media (min-width: 1024px) {
  html body #header.rdn-site-header,
  body.home #header.rdn-site-header,
  body.front-page #header.rdn-site-header {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    width: 100%;
    z-index: 1001;
    background: #f8fafc;
    box-shadow: none;
    transform: none !important;
  }

  body.home .rdn-header-nav,
  body.front-page .rdn-header-nav,
  body.admin-bar.home .rdn-header-nav,
  body.admin-bar.front-page .rdn-header-nav {
    position: sticky !important;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }

  body.home .rdn-header-nav,
  body.front-page .rdn-header-nav {
    top: 0;
  }

  body.admin-bar.home .rdn-header-nav,
  body.admin-bar.front-page .rdn-header-nav {
    top: 32px;
  }

  /*
   * Native replacement for Porto's old Absolute/Fixed header templates.
   * Home sits over its hero; internal pages keep the header in normal flow.
   */
  body.rdn-header-mode--absolute #header.rdn-site-header {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  body.rdn-header-mode--absolute .rdn-header-top {
    border-top-color: transparent;
    background: transparent;
  }

  body.rdn-header-mode--absolute .rdn-header-nav,
  body.rdn-header-mode--absolute.home .rdn-header-nav,
  body.rdn-header-mode--absolute.front-page .rdn-header-nav {
    position: absolute !important;
    top: 92px;
    right: 0;
    left: 0;
    width: 100%;
    margin: 0;
    border-color: transparent;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  body.rdn-header-mode--absolute .rdn-header-nav.is-stuck,
  body.rdn-header-mode--absolute.home .rdn-header-nav.is-stuck,
  body.rdn-header-mode--absolute.front-page .rdn-header-nav.is-stuck {
    position: fixed !important;
    top: 0;
    border-color: rgba(15, 23, 42, 0.09);
    background: rgba(255, 255, 255, 0.94);
  }

  body.admin-bar.rdn-header-mode--absolute #header.rdn-site-header {
    top: 32px !important;
  }

  body.admin-bar.rdn-header-mode--absolute .rdn-header-nav,
  body.admin-bar.rdn-header-mode--absolute.home .rdn-header-nav,
  body.admin-bar.rdn-header-mode--absolute.front-page .rdn-header-nav {
    top: 124px;
  }

  body.admin-bar.rdn-header-mode--absolute .rdn-header-nav.is-stuck,
  body.admin-bar.rdn-header-mode--absolute.home .rdn-header-nav.is-stuck,
  body.admin-bar.rdn-header-mode--absolute.front-page .rdn-header-nav.is-stuck {
    top: 32px;
  }

  .rdn-header-top {
    border-top: 3px solid var(--rdn-blue);
  }

  .rdn-header-top__inner {
    min-height: 92px;
    gap: clamp(28px, 4vw, 64px);
  }

  .rdn-header-brand {
    flex: 1 1 480px;
    min-width: 300px;
  }

  .rdn-header-brand__desktop-logo {
    display: inline-flex;
    align-items: center;
    max-width: min(470px, 38vw);
  }

  .rdn-header-brand__desktop-logo img {
    display: block;
    width: 100%;
    height: auto;
  }

  .rdn-header-brand__mobile-logo {
    display: none;
  }

  .rdn-header-top__actions {
    gap: clamp(14px, 1.5vw, 22px);
  }

  .rdn-header-contacts {
    display: flex;
    align-items: center;
    color: #30343a;
  }

  .rdn-header-phone {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: inherit;
    font-size: clamp(17px, 1.18vw, 20px);
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: color 150ms ease;
  }

  .rdn-header-phone .rdn-fa-icon {
    width: 21px;
    height: 21px;
  }

  .rdn-header-phone:hover,
  .rdn-header-phone:focus-visible {
    color: var(--rdn-blue);
  }

  .rdn-header-contacts__divider {
    width: 1px;
    height: 25px;
    margin-inline: clamp(14px, 1.4vw, 22px);
    flex: 0 0 1px;
    background: rgba(15, 23, 42, 0.55);
  }

  .rdn-header-socials {
    display: flex;
    align-items: center;
    gap: 3px;
  }

  .rdn-header-socials a {
    display: inline-grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    color: #3b3f45;
    text-decoration: none;
    transition: color 150ms ease, background-color 150ms ease, transform 150ms ease;
  }

  .rdn-header-socials .rdn-fa-icon {
    width: 18px;
    height: 18px;
  }

  .rdn-header-socials a:hover,
  .rdn-header-socials a:focus-visible {
    color: #fff;
    background: #252a31;
    transform: translateY(-1px);
  }

  .rdn-header-contact {
    gap: 12px;
  }

  .rdn-header-contact + .rdn-header-contact {
    padding-left: clamp(18px, 2vw, 30px);
  }

  .rdn-header-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    padding: 9px;
    border: 1px solid rgba(3, 169, 244, 0.15);
    border-radius: 50%;
    background: rgba(234, 246, 251, 0.72);
    box-sizing: border-box;
  }

  .rdn-header-contact__eyebrow {
    color: #7b8794;
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .rdn-header-contact a {
    font-size: 13px;
  }

  .rdn-account-button {
    min-height: 46px;
    padding-inline: 20px;
    border-color: rgba(15, 23, 42, 0.1);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  }

  .rdn-header-nav {
    border-top-color: rgba(15, 23, 42, 0.08);
    border-bottom-color: rgba(15, 23, 42, 0.09);
    background: rgba(255, 255, 255, 0.97);
  }

  .rdn-header-nav.is-stuck {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
  }

  .rdn-header-nav__inner {
    min-height: 66px;
    gap: 18px;
  }

  .rdn-primary-menu {
    gap: 3px;
  }

  .rdn-primary-menu > li > a {
    align-self: center;
    min-height: 41px;
    padding-inline: clamp(10px, 0.85vw, 15px);
    border-radius: 8px;
    color: #1f1f1f;
    font-size: clamp(13px, 0.84vw, 14px);
    letter-spacing: 0.01em;
  }

  .rdn-primary-menu > li:first-child > a {
    min-width: 78px;
    justify-content: center;
    box-sizing: border-box;
  }

  .rdn-primary-menu > .menu-item-has-children > a {
    padding-right: clamp(34px, 2.5vw, 39px);
  }

  .rdn-primary-menu > li > a::after {
    display: none;
  }

  .rdn-primary-menu > li:hover > a,
  .rdn-primary-menu > li:focus-within > a,
  .rdn-primary-menu > .is-open > a,
  .rdn-primary-menu > .current-menu-item > a,
  .rdn-primary-menu > .current-menu-ancestor > a {
    color: #fff;
    background: #1f1f1f;
  }

  .rdn-primary-menu > li > a:focus-visible {
    outline: 2px solid #fff;
    outline-offset: -4px;
  }

  .rdn-submenu-toggle {
    right: 8px;
    width: 22px;
    height: 22px;
    color: #1f1f1f;
    background: transparent;
  }

  .rdn-submenu-toggle svg,
  .rdn-submenu-toggle .rdn-submenu-chevron {
    width: 9px;
    height: 11px;
    fill: currentColor;
    stroke: none;
  }

  .rdn-primary-menu > li:hover > .rdn-submenu-toggle,
  .rdn-primary-menu > li:focus-within > .rdn-submenu-toggle,
  .rdn-primary-menu > .is-open > .rdn-submenu-toggle,
  .rdn-primary-menu > .current-menu-item > .rdn-submenu-toggle,
  .rdn-primary-menu > .current-menu-ancestor > .rdn-submenu-toggle {
    color: #fff;
    background: transparent;
  }

  .rdn-submenu-toggle:hover,
  .rdn-submenu-toggle:focus-visible,
  .rdn-primary-menu > .is-open > .rdn-submenu-toggle {
    color: #fff;
    background: transparent;
  }

  .rdn-submenu-toggle:focus-visible {
    outline: 2px solid #fff;
    outline-offset: -3px;
  }

  .rdn-primary-menu .sub-menu {
    top: calc(100% + 10px);
    min-width: 250px;
    padding: 9px;
    border: 1px solid #d7d7d7;
    border-radius: 14px;
    color: #1f1f1f;
    background: #fff;
    box-shadow: 0 24px 58px rgba(31, 31, 31, 0.18), 0 4px 12px rgba(31, 31, 31, 0.06);
  }

  .rdn-primary-menu .sub-menu a {
    color: #1f1f1f;
    font-size: 14px;
  }

  .rdn-primary-menu .sub-menu a:hover,
  .rdn-primary-menu .sub-menu a:focus-visible,
  .rdn-primary-menu .sub-menu .current-menu-item > a {
    color: #fff;
    background: #1f1f1f;
    transform: none;
  }

  .rdn-primary-menu .sub-menu a:focus-visible {
    outline: 2px solid #fff;
    outline-offset: -4px;
  }

  .rdn-primary-menu > .rdn-menu-item--servicios > .sub-menu {
    display: grid;
    left: 50%;
    width: min(860px, calc(100vw - 32px));
    max-width: none;
    grid-template-columns: 220px repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    background: #f1f1f1;
    transform: translate(-22%, 10px);
  }

  .rdn-primary-menu > .rdn-menu-item--servicios.is-open > .sub-menu {
    transform: translate(-22%, 0);
  }

  .rdn-mega-intro {
    --rdn-mega-accent: #0ea5e9;
    position: relative;
    display: flex;
    min-height: 300px;
    padding: 24px 22px;
    grid-row: 1 / span 3;
    flex-direction: column;
    overflow: hidden;
    border-radius: 11px;
    color: #fff;
    background:
      radial-gradient(circle at 88% 12%, rgba(56, 189, 248, 0.34), transparent 29%),
      radial-gradient(circle at 8% 92%, rgba(14, 165, 233, 0.2), transparent 34%),
      linear-gradient(145deg, #172033 0%, #0f172a 62%, #082f49 100%);
    box-sizing: border-box;
    transition: background-color 180ms ease;
  }

  .rdn-mega-intro[data-preview="1"] {
    --rdn-mega-accent: #0ea5e9;
  }

  .rdn-mega-intro[data-preview="2"] {
    --rdn-mega-accent: #f59e0b;
  }

  .rdn-mega-intro[data-preview="3"] {
    --rdn-mega-accent: #22c55e;
  }

  .rdn-mega-intro[data-preview="4"] {
    --rdn-mega-accent: #ed5b55;
  }

  .rdn-mega-intro[data-preview="5"] {
    --rdn-mega-accent: #6366f1;
  }

  .rdn-mega-intro[data-preview="6"] {
    --rdn-mega-accent: #14b8a6;
  }

  .rdn-mega-intro,
  .rdn-mega-intro[data-preview] {
    background:
      radial-gradient(circle at 92% 8%, color-mix(in srgb, var(--rdn-mega-accent) 26%, transparent), transparent 34%),
      linear-gradient(145deg, #303030 0%, #1f1f1f 64%, #111 100%);
  }

  .rdn-mega-intro__preview {
    position: absolute;
    top: 6px;
    right: 12px;
    color: color-mix(in srgb, var(--rdn-mega-accent) 62%, #fff);
    font-family: var(--rdn-heading-font);
    font-size: 54px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.07em;
    opacity: 0.24;
    pointer-events: none;
    transition: color 180ms ease, transform 220ms ease;
  }

  .rdn-mega-intro__preview .rdn-fa-icon {
    display: block;
    width: 64px;
    height: 64px;
    fill: currentColor;
  }

  .rdn-mega-intro::before,
  .rdn-mega-intro::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    content: "";
    pointer-events: none;
  }

  .rdn-mega-intro::before {
    right: -48px;
    bottom: -42px;
    width: 150px;
    height: 150px;
  }

  .rdn-mega-intro::after {
    right: -9px;
    bottom: -3px;
    width: 72px;
    height: 72px;
  }

  .rdn-mega-intro__eyebrow {
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
    color: color-mix(in srgb, var(--rdn-mega-accent) 76%, #fff);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .rdn-mega-intro__title {
    position: relative;
    z-index: 1;
    max-width: 170px;
    color: #fff;
    font-family: var(--rdn-heading-font);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.08;
  }

  .rdn-mega-intro p {
    position: relative;
    z-index: 1;
    margin: 14px 0 22px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    line-height: 1.55;
  }

  .rdn-primary-menu .sub-menu .rdn-mega-intro__link {
    position: relative;
    z-index: 1;
    min-height: 0;
    margin-top: auto;
    padding: 0;
    justify-content: flex-start;
    color: #fff;
    background: transparent;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
  }

  .rdn-primary-menu .sub-menu .rdn-mega-intro__link:hover,
  .rdn-primary-menu .sub-menu .rdn-mega-intro__link:focus-visible {
    color: var(--rdn-mega-accent);
    background: transparent;
    transform: none;
  }

  .rdn-mega-intro__link svg {
    width: 17px;
    height: 17px;
    margin-left: 8px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
    transition: transform 160ms ease;
  }

  .rdn-mega-intro__link:hover svg,
  .rdn-mega-intro__link:focus-visible svg {
    transform: translateX(3px);
  }

  .rdn-primary-menu .sub-menu > .rdn-mega-intro > a::after {
    display: none;
  }

  .rdn-mega-intro.is-updating .rdn-mega-intro__eyebrow,
  .rdn-mega-intro.is-updating .rdn-mega-intro__title,
  .rdn-mega-intro.is-updating p,
  .rdn-mega-intro.is-updating .rdn-mega-intro__link {
    animation: rdn-mega-content-in 220ms ease both;
  }

  .rdn-mega-intro.is-updating .rdn-mega-intro__preview {
    transform: scale(1.08) rotate(-2deg);
  }

  @keyframes rdn-mega-content-in {
    from {
      opacity: 0.35;
      transform: translateY(5px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .rdn-primary-menu > .rdn-menu-item--servicios > .sub-menu > li:not(.rdn-mega-intro) > a {
    display: grid;
    min-height: 94px;
    padding: 8px 34px 8px 8px;
    grid-template-columns: 94px minmax(0, 1fr);
    align-items: center;
    border: 1px solid #d7d7d7;
    border-radius: 11px;
    color: #1f1f1f;
    background: #fff;
    font-size: 14px;
    line-height: 1.3;
    box-sizing: border-box;
  }

  .rdn-mega-service-icon {
    display: grid;
    width: 84px;
    height: 76px;
    margin: 0 10px 0 0;
    place-items: center;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.82);
    background: linear-gradient(135deg, #334155, #0f172a);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    transition: filter 160ms ease, transform 160ms ease;
  }

  .rdn-mega-service-icon .rdn-fa-icon {
    width: 38px;
    height: 38px;
    fill: currentColor;
  }

  .rdn-primary-menu > .rdn-menu-item--servicios > .sub-menu > li:nth-child(2) .rdn-mega-service-icon {
    background: linear-gradient(135deg, #0ea5e9, #0369a1);
  }

  .rdn-primary-menu > .rdn-menu-item--servicios > .sub-menu > li:nth-child(3) .rdn-mega-service-icon {
    background: linear-gradient(135deg, #f59e0b, #b45309);
  }

  .rdn-primary-menu > .rdn-menu-item--servicios > .sub-menu > li:nth-child(4) .rdn-mega-service-icon {
    background: linear-gradient(135deg, #22c55e, #15803d);
  }

  .rdn-primary-menu > .rdn-menu-item--servicios > .sub-menu > li:nth-child(5) .rdn-mega-service-icon {
    background: linear-gradient(135deg, #ed5b55, #b91c1c);
  }

  .rdn-primary-menu > .rdn-menu-item--servicios > .sub-menu > li:nth-child(6) .rdn-mega-service-icon {
    background: linear-gradient(135deg, #6366f1, #4338ca);
  }

  .rdn-primary-menu > .rdn-menu-item--servicios > .sub-menu > li:nth-child(7) .rdn-mega-service-icon {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
  }

  .rdn-primary-menu > .rdn-menu-item--servicios > .sub-menu > li:nth-child(3) .rdn-mega-service-svg {
    width: 31px;
  }

  .rdn-primary-menu > .rdn-menu-item--servicios > .sub-menu > li:nth-child(4) .rdn-mega-service-svg,
  .rdn-primary-menu > .rdn-menu-item--servicios > .sub-menu > li:nth-child(5) .rdn-mega-service-svg {
    width: 43px;
  }

  .rdn-primary-menu > .rdn-menu-item--servicios > .sub-menu > li:not(.rdn-mega-intro) > a::after {
    position: absolute;
    right: 14px;
    top: 50%;
    bottom: auto;
    margin: 0;
    transform: translateY(-50%) rotate(45deg);
  }

  .rdn-primary-menu > .rdn-menu-item--servicios > .sub-menu > li:not(.rdn-mega-intro) > a:hover .rdn-mega-service-icon,
  .rdn-primary-menu > .rdn-menu-item--servicios > .sub-menu > li:not(.rdn-mega-intro) > a:focus-visible .rdn-mega-service-icon {
    filter: saturate(1.2) brightness(1.08);
    transform: scale(1.025);
  }

  .rdn-primary-menu > .rdn-menu-item--servicios > .sub-menu > li:not(.rdn-mega-intro) > a:hover,
  .rdn-primary-menu > .rdn-menu-item--servicios > .sub-menu > li:not(.rdn-mega-intro) > a:focus-visible,
  .rdn-primary-menu > .rdn-menu-item--servicios > .sub-menu > .current-menu-item > a {
    color: #fff;
    border-color: #1f1f1f;
    background: #1f1f1f;
    box-shadow: 0 8px 22px rgba(31, 31, 31, 0.14);
  }

  .rdn-primary-menu > .rdn-menu-item--servicios > .sub-menu > li:not(.rdn-mega-intro) > a:hover::after,
  .rdn-primary-menu > .rdn-menu-item--servicios > .sub-menu > li:not(.rdn-mega-intro) > a:focus-visible::after,
  .rdn-primary-menu > .rdn-menu-item--servicios > .sub-menu > .current-menu-item > a::after {
    transform: translate(2px, -50%) rotate(45deg);
  }

  .rdn-primary-menu > .rdn-menu-item--empresas > .sub-menu {
    display: grid;
    width: min(430px, calc(100vw - 40px));
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
  }

  .rdn-primary-menu > .rdn-menu-item--empresas > .sub-menu > li > a {
    min-height: 52px;
  }

  .rdn-primary-menu > .rdn-menu-item--blog > .sub-menu {
    right: 0;
    left: auto;
  }

  .rdn-header-nav__actions {
    padding-block: 10px;
  }

  .rdn-header-cta {
    min-height: 44px;
    padding-inline: 21px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(237, 91, 85, 0.28);
  }
}

@media (max-width: 1023px) {
  .rdn-site-header {
    position: sticky;
    top: 0;
    z-index: 1300;
  }

  body.rdn-mobile-menu-open .rdn-site-header {
    background: #fff;
    box-shadow: 0 1px 0 rgba(31, 31, 31, 0.1);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .admin-bar .rdn-site-header {
    top: 32px;
  }

  .rdn-header-top__inner {
    min-height: 68px;
  }

  .rdn-header-brand {
    flex-basis: auto;
    min-width: 0;
  }

  .rdn-header-brand .custom-logo {
    max-width: 230px;
    max-height: 52px;
  }

  .rdn-header-contact,
  .rdn-account-button,
  .rdn-header-nav {
    display: none;
  }

  .rdn-mobile-menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(31, 31, 31, 0.16);
    border-radius: 50%;
    color: #1f1f1f;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 4px 14px rgba(31, 31, 31, 0.06);
    cursor: pointer;
    transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
  }

  .rdn-mobile-menu-button > span[aria-hidden="true"] {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .rdn-mobile-menu-button:hover,
  .rdn-mobile-menu-button:focus-visible,
  .rdn-mobile-menu-button[aria-expanded="true"] {
    border-color: #1f1f1f;
    color: #fff;
    background: #1f1f1f;
    box-shadow: 0 6px 18px rgba(31, 31, 31, 0.18);
  }

  .rdn-mobile-menu-button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: -4px;
  }

  .rdn-mobile-menu-button[aria-expanded="true"] > span:nth-last-child(3) {
    transform: translateY(7px) rotate(45deg);
  }

  .rdn-mobile-menu-button[aria-expanded="true"] > span:nth-last-child(2) {
    opacity: 0;
  }

  .rdn-mobile-menu-button[aria-expanded="true"] > span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .rdn-mobile-menu-panel {
    position: fixed;
    inset: 68px 0 auto;
    z-index: 990;
    display: block;
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.16);
  }

  .rdn-mobile-menu-panel[hidden] {
    display: none;
  }

  .rdn-mobile-menu-panel__inner {
    width: min(100% - 32px, 720px);
    margin-inline: auto;
    padding-block: 14px 24px;
  }

  .rdn-mobile-menu-list,
  .rdn-mobile-menu-list .sub-menu {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .rdn-mobile-menu-list a {
    display: block;
    padding: 13px 4px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--rdn-ink-dark);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
  }

  .rdn-mobile-menu-list .sub-menu a {
    padding-left: 20px;
    color: var(--rdn-muted);
    font-size: 14px;
    font-weight: 600;
  }

  body.rdn-menu-open {
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .rdn-header-brand .custom-logo {
    max-width: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rdn-site-header,
  .rdn-header-nav,
  .rdn-site-header *,
  .rdn-site-header *::before,
  .rdn-site-header *::after {
    transition-duration: 0.01ms !important;
  }
}
