@charset "UTF-8";
:root {
  --cd-blue: #4c55f1;
  --cd-orange: #ff5214;
  --cd-text: #212121;
  --cd-text-soft: rgba(33, 33, 33, 0.74);
  --cd-white: #ffffff;
  --cd-bg: #f7f7fb;
  --cd-font-heading: "Sofia Sans", sans-serif;
  --cd-font-body: "Roboto", sans-serif;
  --cd-h1-size: 72px;
  --cd-h1-line: 80px;
  --cd-h2-size: 64px;
  --cd-h2-line: 64px;
  --cd-h3-size: 40px;
  --cd-h3-line: 44px;
  --cd-h4-size: 38px;
  --cd-h4-line: 44px;
  --cd-h5-size: 32px;
  --cd-h5-line: 38px;
  --cd-h6-size: 28px;
  --cd-h6-line: 34px;
  --cd-h7-size: 20px;
  --cd-h7-line: 28px;
  --cd-h8-size: 16px;
  --cd-h8-line: 22px;
  --cd-h9-size: 14px;
  --cd-h9-line: 20px;
  /* Actualizado por JS (header.js) con el alto real del #cd-header */
  --cd-header-height: 86px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html #wpadminbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

/* Destinos de anclas: dejan espacio para header + page-nav + gap (--cd-anchor-offset lo actualiza anchor-scroll.js). */
[id] {
  scroll-margin-top: var(--cd-anchor-offset, calc(var(--cd-header-height, 86px) + var(--wp-admin--admin-bar--height, 0px)));
}

body {
  margin: 0;
  font-family: var(--cd-font-body);
  color: var(--cd-text);
  background: var(--cd-white);
}

.site-main > *:not(.alignfull):not([class*=wp-block-campus-dual-]):not(.cd-blog-archive):not(.cd-single-blog) {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 767px) {
  .site-main > *:not(.alignfull):not([class*=wp-block-campus-dual-]):not(.cd-blog-archive):not(.cd-single-blog) {
    max-width: 1400px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.is-style-campus-dual-max-940 {
  max-width: 940px !important;
}

/* INPUTS */
form.wpcf7-form input[type=text],
form.wpcf7-form input[type=email],
form.wpcf7-form input[type=tel],
form.wpcf7-form input[type=number] {
  width: 100%;
  padding: 12px 8px;
  border: 0;
  border-bottom: 1px solid var(--cd-text-soft);
  font-family: var(--cd-font-body);
  font-size: 18px;
}
form.wpcf7-form input[type=text]:focus,
form.wpcf7-form input[type=email]:focus,
form.wpcf7-form input[type=tel]:focus,
form.wpcf7-form input[type=number]:focus {
  outline: none;
  border-bottom: 1px solid var(--cd-orange);
}

form.wpcf7-form textarea {
  width: 100%;
  min-height: 145px;
  border: 1px solid #e4e0e0;
  background: #E4E0E0;
  border-radius: 18px;
  font-family: var(--cd-font-body);
  padding: 12px 8px;
  font-size: 1.125rem;
}
form.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--cd-orange);
}

input[type=checkbox] {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid #212121;
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  cursor: pointer;
  vertical-align: middle;
  flex-shrink: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  margin: 0;
}
input[type=checkbox]:checked {
  background-color: var(--cd-orange);
  border-color: var(--cd-orange);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1 5.5L4.5 9L11 1.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.wpcf7-acceptance label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}
.wpcf7-acceptance label a {
  color: var(--cd-orange);
  text-decoration: none;
}
.wpcf7-acceptance label a:hover {
  text-decoration: underline;
}

.wpcf7-form .wpcf7-list-item-label {
  display: inline;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-not-valid-tip {
  font-size: 0.75rem;
}

.wpcf7-spinner {
  display: none !important;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-family: var(--cd-font-heading);
  font-size: var(--cd-h1-size);
  line-height: var(--cd-h1-line);
  font-weight: 700;
  color: var(--cd-text);
}

h2 {
  font-family: var(--cd-font-heading);
  font-size: var(--cd-h2-size);
  line-height: var(--cd-h2-line);
  font-weight: 700;
  color: var(--cd-text);
}

h3 {
  font-family: var(--cd-font-heading);
  font-size: var(--cd-h3-size);
  line-height: var(--cd-h3-line);
  font-weight: 700;
  color: var(--cd-text);
}

h4 {
  font-family: var(--cd-font-heading);
  font-size: var(--cd-h4-size);
  line-height: var(--cd-h4-line);
  font-weight: 300;
  color: var(--cd-text-soft);
}

h5 {
  font-family: var(--cd-font-heading);
  font-size: var(--cd-h5-size);
  line-height: var(--cd-h5-line);
  font-weight: 600;
  color: var(--cd-text-soft);
}

h6 {
  font-family: var(--cd-font-heading);
  font-size: var(--cd-h6-size);
  line-height: var(--cd-h6-line);
  font-weight: 400;
  color: var(--cd-text-soft);
}

p {
  font-family: var(--cd-font-body);
  font-size: var(--cd-h7-size);
  line-height: var(--cd-h7-line);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--cd-text-soft);
}

@media (max-width: 991px) {
  h1 {
    font-size: var(--cd-h2-size);
    line-height: var(--cd-h2-line);
    color: var(--cd-text);
  }
  h2 {
    font-size: var(--cd-h3-size);
    line-height: var(--cd-h3-line);
    color: var(--cd-text);
  }
  h3 {
    font-size: var(--cd-h4-size);
    line-height: var(--cd-h4-line);
    color: var(--cd-text-soft);
  }
  h4 {
    font-size: var(--cd-h5-size);
    line-height: var(--cd-h5-line);
    color: var(--cd-text-soft);
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: var(--cd-h3-size);
    line-height: var(--cd-h3-line);
  }
  h2 {
    font-size: var(--cd-h4-size);
    line-height: var(--cd-h4-line);
  }
  h3 {
    font-size: var(--cd-h5-size);
    line-height: var(--cd-h5-line);
    color: var(--cd-text-soft);
  }
  h4,
  h5 {
    font-size: var(--cd-h6-size);
    line-height: var(--cd-h6-line);
  }
  p {
    font-size: var(--cd-h8-size);
    line-height: var(--cd-h8-line);
  }
}
.cd-max-1 {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 767px) {
  .cd-max-1 {
    max-width: 1400px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.cd-button-01 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 54px;
  border: 0;
  background: linear-gradient(90deg, #ff5214 -389.7%, #4c55f1 99.99%);
  gap: 10px;
  color: var(--cd-white);
  text-decoration: none;
  cursor: pointer;
  width: fit-content;
  overflow: hidden;
}
.cd-button-01::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to left, #ff5214 2.13%, #4c55f1 100.02%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.cd-button-01:hover::before {
  opacity: 1;
}
.cd-button-01 .cd-button-01__text,
.cd-button-01 > * {
  position: relative;
  z-index: 1;
}

.is-hidden {
  display: none !important;
}

.wp-block-campus-dual-header {
  position: sticky;
  top: var(--wp-admin--admin-bar--height, 0px);
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.wp-block-campus-dual-header .cd-header__inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.wp-block-campus-dual-header.is-menu-open {
  background: var(--cd-white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.wp-block-campus-dual-header.is-menu-open .cd-header__toggle {
  transform: rotate(-90deg);
}
@media (max-width: 768px) {
  .wp-block-campus-dual-header .cd-header__inner {
    flex-wrap: wrap;
    padding-top: 20px;
    padding-bottom: 20px;
    min-height: auto;
  }
}

.cd-header__menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cd-header__menu > li {
  position: relative;
  border: 0;
}
.cd-header__menu > li > a {
  font-size: 16px;
  color: var(--cd-text);
  text-decoration: none;
  transition: color 0.2s ease;
}
.cd-header__menu > li > a:hover, .cd-header__menu > li.current-menu-item > a {
  color: var(--cd-blue);
}
.cd-header__menu > li.menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.cd-header__menu > li.is-open > a {
  color: var(--cd-blue);
}
@media (max-width: 768px) {
  .cd-header__menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.cd-header__menu a, .cd-header__menu ~ .cd-header__logo a {
  color: inherit;
  text-decoration: none;
}
.cd-header__menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: var(--cd-white);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 10;
}
.cd-header__menu .sub-menu li {
  margin: 0;
}
.cd-header__menu .sub-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--cd-text);
  text-decoration: none;
  transition: color 0.2s ease;
}
.cd-header__menu .sub-menu a:hover {
  color: var(--cd-blue);
}

.cd-header__submenu-bar {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.cd-header__submenu-bar.is-open {
  max-height: var(--submenu-open-max-height, 320px);
}

.cd-header__submenu-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0 0 20px;
}

.cd-header__submenu-panels {
  position: relative;
  flex: 1;
  min-width: 0;
}

.cd-header__submenu-social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cd-header__submenu-social .cd-header__submenu-social-link {
  font-size: 16px;
  color: rgba(33, 33, 33, 0.74);
  text-decoration: none;
  transition: color 0.2s ease;
}
.cd-header__submenu-social .cd-header__submenu-social-link:hover {
  color: var(--cd-blue);
}

.cd-header__submenu-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.cd-header__submenu-content.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.cd-header__submenu-content .cd-header__submenu-list,
.cd-header__submenu-content ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cd-header__submenu-content li {
  margin: 0;
}
.cd-header__submenu-content a {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}
.cd-header__submenu-content a:hover {
  color: var(--cd-blue);
}

.cd-header__menu-arrow {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: inherit;
  transition: transform 0.25s ease;
}
.cd-header__menu-arrow svg {
  width: 15px;
  height: 10px;
  display: block;
}
.cd-header__menu > li.menu-item-has-children.is-open .cd-header__menu-arrow {
  transform: rotate(180deg);
}

.cd-header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cd-header__logo a {
  color: inherit;
  text-decoration: none;
}
.cd-header__logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
}
.cd-header__logo .custom-logo {
  width: auto;
  height: auto;
}

.cd-header__menu-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.cd-header__cta-asesoramos {
  flex-grow: 0;
  flex-shrink: 0;
  padding: 5px 10px;
  border-radius: 20px;
}

.cd-header__mobile-actions {
  display: none;
}

.cd-header__wapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  border-radius: 37px;
  background: var(--cd-text);
  color: var(--cd-white);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.cd-header__wapp:hover, .cd-header__wapp:focus {
  background: rgba(0, 0, 0, 0.28);
  color: var(--cd-text);
}

.cd-header__wapp-icon {
  width: 19px;
  height: 20px;
  display: block;
}

.cd-header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--cd-text);
  transition: transform 0.25s ease;
}

.cd-header__toggle-icon {
  display: block;
  width: 38px;
  height: 30px;
}

body.cd-menu-open {
  position: fixed;
  top: calc(-1 * var(--cd-scroll-y, 0px));
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

.cd-header-mobile {
  position: fixed;
  top: var(--cd-header-mobile-top, 86px);
  left: 0;
  right: 0;
  z-index: 19;
  display: none;
  background: var(--cd-white);
  max-height: calc(100dvh - var(--cd-header-mobile-top, 86px));
  height: calc(100vh - var(--cd-header-mobile-top, 86px));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.cd-header-mobile.is-open {
  display: block;
}
.cd-header-mobile__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
  padding-top: 3.125rem;
  height: 100%;
}
.cd-header-mobile__nav {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.cd-header-mobile__menu, .cd-header-mobile__menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cd-header-mobile__menu > li > a {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  color: var(--cd-text);
  text-decoration: none;
  text-transform: uppercase;
}
.cd-header-mobile__menu > li > a:hover, .cd-header-mobile__menu > li.current-menu-item > a {
  color: var(--cd-blue);
}
.cd-header-mobile__menu > li.menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cd-header-mobile__menu .menu-item-has-children.is-open > a .cd-header__menu-arrow {
  transform: rotate(180deg);
}
.cd-header-mobile__menu .sub-menu {
  padding-left: 20px;
  padding-right: 0;
  padding-bottom: 8px;
}
.cd-header-mobile__menu .sub-menu a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
}
.cd-header-mobile__form-wrap {
  border-top: 3px solid var(--cd-orange);
  border-left: 3px solid var(--cd-orange);
  border-right: 3px solid var(--cd-orange);
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  padding: 40px 20px;
}
.cd-header-mobile__form-title {
  margin: 0 0 20px;
  font-family: var(--cd-font-heading);
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--cd-blue);
}

@media (max-width: 768px) {
  .cd-header__submenu-bar {
    display: none;
  }
  .cd-header__mobile-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    order: 2;
    margin-left: auto;
  }
  .cd-header__toggle {
    display: flex;
  }
  .cd-header__menu-wrap {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    order: 3;
    width: 100%;
    padding: 20px 0 0;
    margin-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }
  .cd-header__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .cd-header__menu > li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .cd-header__menu > li > a {
    display: block;
    padding: 12px 0;
  }
  .cd-header__menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.03);
    padding: 8px 0 8px 16px;
    margin-bottom: 8px;
    border-radius: 4px;
  }
  .cd-header__menu .sub-menu a {
    padding: 6px 0;
    font-size: 14px;
  }
  .cd-header__cta-asesoramos {
    display: none;
  }
}
@media (min-width: 769px) {
  .cd-header__toggle {
    display: none;
  }
  .cd-header__menu-wrap {
    display: flex;
  }
  .cd-header__menu > li .sub-menu {
    display: none;
  }
  .cd-header-mobile {
    display: none !important;
  }
}
.cd-home-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: transform 0.22s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.12s ease, visibility 0.12s ease;
  background: #fff;
}
.cd-home-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cd-home-loader.is-lifting {
  transform: translateY(-100%);
  opacity: 1;
}
.cd-home-loader__media {
  position: absolute;
  inset: 0;
  background: #fff;
}
.cd-home-loader__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.cd-home-loader__video.is-active {
  display: block;
}
.cd-home-loader__white {
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  transition: opacity 0.12s ease;
}
.cd-home-loader.is-white .cd-home-loader__white {
  opacity: 1;
}

body.cd-home-loader-lock {
  position: fixed;
  top: calc(-1 * var(--cd-loader-scroll-y, 0px));
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

.wp-block-campus-dual-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cd-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cd-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 82, 20, 0.2) 0%, rgba(76, 85, 241, 0.2) 100%);
}

.cd-hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cd-hero__float {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  bottom: 0;
  right: 0;
  width: 539px;
}
@media (max-width: 767px) {
  .cd-hero__float {
    max-width: 440px;
    width: min(440px, 60vw);
  }
}

.cd-hero__float-svg {
  width: 100%;
  height: auto;
  display: block;
}

.cd-hero__overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 120px 0;
}

.cd-hero__title {
  margin: 0 0 1.125rem;
  font-family: var(--cd-font-heading);
  font-size: clamp(42px, 8vw, 84px);
  line-height: 1;
  color: var(--cd-white);
  font-weight: bold;
  unicode-bidi: isolate;
}

.cd-hero__subtitle {
  max-width: 760px;
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.1;
  color: var(--cd-white);
}

.wp-block-campus-dual-page-header {
  position: relative;
  min-height: 907px;
  display: block;
  background-color: #101010;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media (max-width: 991px) {
  .wp-block-campus-dual-page-header {
    min-height: 760px;
  }
}

.cd-page-header__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

.cd-page-header__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cd-page-header .cd-max-1 {
  position: relative;
  z-index: 1;
}

.cd-page-header__inner {
  position: relative;
  width: 100%;
  min-height: 907px;
}
@media (max-width: 991px) {
  .cd-page-header__inner {
    min-height: 760px;
  }
}

.cd-page-header__content {
  position: relative;
  z-index: 2;
  width: min(1042px, 100% - 74px);
  padding-top: 284px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cd-page-header__content {
    width: calc(100% - 48px);
    padding-top: 190px;
  }
}

.cd-page-header__pretitle {
  color: var(--cd-white);
  font-size: var(--cd-h4-size);
  line-height: var(--cd-h4-line);
  font-weight: 300;
  margin: 0;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .cd-page-header__pretitle {
    font-size: 27px;
    line-height: 1.3;
  }
}

.cd-page-header__title {
  margin: 0;
  color: var(--cd-white);
  font-family: var(--cd-font-heading);
  font-size: clamp(44px, 7vw, 72px);
  font-weight: 700;
  line-height: 1.11;
  letter-spacing: 0;
  max-width: 1042px;
}
@media (max-width: 991px) {
  .cd-page-header__title {
    font-size: clamp(34px, 8vw, 52px);
    line-height: 1.14;
  }
}

.cd-page-header__subtitle {
  margin: 0;
  color: var(--cd-white);
  font-family: var(--cd-font-heading);
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 400;
  line-height: 1.22;
  max-width: 555px;
}
@media (max-width: 991px) {
  .cd-page-header__subtitle {
    font-size: clamp(20px, 4.2vw, 24px);
    max-width: 100%;
  }
}

.cd-page-header__programs {
  position: relative;
  margin: 40px 0 0;
  padding: 0;
  padding-left: 5rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 386px;
}
@media (max-width: 991px) {
  .cd-page-header__programs {
    margin-top: 26px;
    max-width: 100%;
    padding-left: 20px;
  }
}

.cd-page-header__cta {
  padding-left: 5rem;
}
@media (max-width: 991px) {
  .cd-page-header__cta {
    padding-left: 20px;
  }
}

.cd-page-header__program {
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cd-white);
  font-family: var(--cd-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 991px) {
  .cd-page-header__program {
    font-size: 18px;
    line-height: 24px;
    gap: 10px;
  }
}

.cd-page-header__program-icon {
  flex-shrink: 0;
  width: 26px;
  height: 22px;
}

.cd-page-header__program-text {
  flex: 1;
}

.cd-page-header__cta {
  margin-top: 24px;
}
@media (max-width: 991px) {
  .cd-page-header__cta {
    margin-top: 20px;
  }
}

.cd-page-header__shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}
.cd-page-header__shape img {
  display: block;
  width: 100%;
  height: auto;
}
.cd-page-header__shape--inferior {
  right: 0;
  bottom: 0;
  width: clamp(280px, 36vw, 518px);
}
.cd-page-header__shape--superior {
  right: 0;
  top: 0;
  width: clamp(260px, 35vw, 508px);
}
@media (max-width: 767px) {
  .cd-page-header__shape--inferior, .cd-page-header__shape--superior {
    width: 200px;
  }
}

.wp-block-campus-dual-page-nav {
  background: linear-gradient(to right, var(--cd-orange) -13.12%, var(--cd-blue) 104.75%);
  position: sticky;
  top: calc(var(--cd-header-height) + var(--wp-admin--admin-bar--height, 0px));
  z-index: 99;
  left: 0;
}
body.cd-menu-open .wp-block-campus-dual-page-nav {
  z-index: 10;
}
.wp-block-campus-dual-page-nav .cd-max-1 {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 767px) {
  .wp-block-campus-dual-page-nav {
    display: none;
  }
}

.cd-page-nav__bar {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  padding: 10px 20px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cd-page-nav__bar::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .cd-page-nav__bar {
    padding: 10px 40px;
  }
}
.cd-page-nav__link {
  flex-shrink: 0;
  font-size: var(--cd-h9-size);
  line-height: var(--cd-h9-line);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}
.cd-page-nav__link:hover {
  color: var(--cd-white);
}
@media (max-width: 768px) {
  .cd-page-nav__bar {
    padding: 10px 20px;
    gap: 20px;
  }
  .cd-page-nav__link {
    font-size: 14px;
  }
}

.cd-popup-solicitar {
  height: calc(100vh - var(--wp-admin--admin-bar--height));
  top: var(--wp-admin--admin-bar--height);
  left: 0;
  width: 100%;
  position: fixed;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0.25s ease, opacity 0.25s ease;
}
.cd-popup-solicitar.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.cd-popup-solicitar__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.cd-popup-solicitar__modal {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 642px;
  max-height: 90vh;
  overflow: auto;
  background: var(--cd-white);
  border: 4px solid var(--cd-orange);
  border-radius: 42px;
  padding: 67px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.cd-popup-solicitar__modal form {
  padding-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .cd-popup-solicitar__modal {
    margin: 20px;
    padding: 40px 24px;
    border-radius: 28px;
    gap: 24px;
  }
}

.cd-popup-solicitar__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-shrink: 0;
}

.cd-popup-solicitar__title {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--cd-blue);
  max-width: 100%;
}
@media (max-width: 767px) {
  .cd-popup-solicitar__title {
    font-size: 26px;
  }
}

.cd-popup-solicitar__close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--cd-orange);
  color: var(--cd-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.cd-popup-solicitar__close:hover {
  opacity: 0.9;
}
.cd-popup-solicitar__close:focus-visible {
  outline: 2px solid var(--cd-blue);
  outline-offset: 2px;
}
.cd-popup-solicitar__close svg {
  width: 12px;
  height: 12px;
  display: block;
}

.cd-popup-solicitar__body {
  flex: 1;
  min-height: 0;
}

.cd-popup-solicitar__empty {
  margin: 0;
  color: var(--cd-blue);
  opacity: 0.85;
}

body.cd-popup-open {
  overflow: hidden;
}

.cd-card-post-01 {
  display: flex;
  flex-direction: column;
  position: relative;
}

.cd-card-post-01__image-link {
  position: relative;
  display: block;
  border-radius: 30px;
  overflow: hidden;
}
.cd-card-post-01__image-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: linear-gradient(to bottom, rgb(255, 82, 20) 0%, rgb(76, 85, 241) 100%);
  opacity: 0.2;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .cd-card-post-01__image-link::after {
    opacity: 0;
  }
}
.cd-card-post-01__image-link:hover::after {
  opacity: 0.45;
}

.cd-card-post-01--no-overlay .cd-card-post-01__image-link::after {
  display: none;
}

.cd-card-post-01__border {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: block;
}
@media (max-width: 767px) {
  .cd-card-post-01__border {
    display: none;
  }
}

.cd-card-post-01__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 30px;
  background: #d9d9d9;
}
@media (max-width: 767px) {
  .cd-card-post-01__image {
    height: 380px;
  }
}

.cd-card-post-01__image--placeholder {
  background: #d9d9d9;
}

.cd-card-post-01__content {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 767px) {
  .cd-card-post-01__content {
    padding: 12px 0 0;
    gap: 12px;
  }
}

.cd-card-post-01__meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.cd-card-post-01__tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
}

.cd-card-post-01__tag {
  font-family: var(--cd-font-body);
  font-size: var(--cd-h9-size);
  line-height: var(--cd-h9-line);
  color: var(--cd-blue);
}

.cd-card-post-01__date {
  font-family: var(--cd-font-body);
  font-size: var(--cd-h9-size);
  line-height: var(--cd-h9-line);
  color: rgba(33, 33, 33, 0.58);
}

.cd-card-post-01__title {
  margin: 0;
  font-family: var(--cd-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(33, 33, 33, 0.87);
}
.cd-card-post-01__title a {
  color: var(--cd-text);
  text-decoration: none;
}

.cd-card-post-01__title--mobile {
  display: none;
}
@media (max-width: 767px) {
  .cd-card-post-01__title--mobile {
    display: block;
    padding: 0 0 20px;
    font-family: var(--cd-font-heading);
    font-size: 32px;
    font-weight: 600;
    line-height: 38px;
  }
}

.cd-card-post-01__title--desktop {
  display: block;
}
@media (max-width: 767px) {
  .cd-card-post-01__title--desktop {
    display: none;
  }
}

.cd-card-post-01__read-more {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff5214 -388.61%, #4c55f1 99.87%);
  color: #fff;
  text-decoration: none;
  font-family: var(--cd-font-body);
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .cd-card-post-01__read-more {
    display: inline-flex;
  }
}

.cd-blog-archive {
  padding: 120px 0 80px;
  overflow-x: hidden;
}
@media (max-width: 991px) {
  .cd-blog-archive {
    padding: 88px 0 56px;
  }
}
@media (max-width: 767px) {
  .cd-blog-archive {
    padding: 80px 0;
  }
}
.cd-blog-archive__header {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cd-blog-archive__header {
    margin-bottom: 20px;
  }
}
.cd-blog-archive__title {
  margin: 0 0 24px;
  color: #000;
  font-family: var(--cd-font-heading);
  font-size: 72px;
  font-weight: 700;
  line-height: 80px;
}
@media (max-width: 767px) {
  .cd-blog-archive__title {
    font-size: 40px;
    line-height: 44px;
    margin-bottom: 20px;
  }
}
.cd-blog-archive__description {
  max-width: 900px;
  margin: 0;
  color: rgba(33, 33, 33, 0.74);
  font-family: var(--cd-font-heading);
  font-size: 28px;
  line-height: 34px;
}
@media (max-width: 767px) {
  .cd-blog-archive__description {
    max-width: 380px;
    font-family: var(--cd-font-body);
    font-size: 16px;
    line-height: 22px;
  }
}
.cd-blog-archive__separator {
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 200vw;
  background: rgba(33, 33, 33, 0.74);
  height: 1px;
}
.cd-blog-archive__filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-bottom: 0;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .cd-blog-archive__filters {
    flex-wrap: wrap;
    padding: 0 0 20px;
    align-items: flex-end;
    column-gap: 12px;
    row-gap: 12px;
  }
}
.cd-blog-archive__filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 33px;
  padding: 7px 10px;
  border: 1px solid var(--cd-blue);
  border-radius: 22px;
  background: transparent;
  color: var(--cd-blue);
  font-family: var(--cd-font-body);
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}
.cd-blog-archive__filter:hover, .cd-blog-archive__filter.is-active {
  background: var(--cd-blue);
  color: var(--cd-white);
}
.cd-blog-archive__featured {
  padding: 24px 0 60px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cd-blog-archive__featured {
    border-top-width: 1px;
    padding: 40px 0;
  }
}
.cd-blog-archive__featured-image-link, .cd-blog-archive__card-image-link {
  display: block;
  border-radius: 30px;
  overflow: hidden;
}
.cd-blog-archive__featured-image {
  width: 100%;
  height: 829px;
  object-fit: cover;
  display: block;
  border-radius: 40px;
  background: #d9d9d9;
}
@media (max-width: 767px) {
  .cd-blog-archive__featured-image {
    height: 480px;
    border-radius: 30px;
  }
}
.cd-blog-archive__featured-meta-wrap {
  display: flex;
  flex-direction: column;
  padding-top: 12px;
  gap: 12px;
}
.cd-blog-archive__featured-meta-wrap .cd-blog-archive__meta-date,
.cd-blog-archive__featured-meta-wrap .cd-blog-archive__meta-categories {
  font-size: var(--cd-h7-size);
  line-height: var(--cd-h7-line);
}
.cd-blog-archive__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
}
.cd-blog-archive__meta--tags .cd-blog-archive__meta-categories {
  color: var(--cd-blue);
  display: inline-flex;
  padding: 0.375rem;
  padding-left: 0;
}
.cd-blog-archive__meta-categories, .cd-blog-archive__meta-date {
  font-size: var(--cd-h9-size);
  line-height: var(--cd-h9-line);
  color: rgba(33, 33, 33, 0.58);
}
.cd-blog-archive__featured-bottom {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
}
.cd-blog-archive__featured-title {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: 72px;
  line-height: 80px;
  font-weight: 700;
  padding: 20px 0;
}
.cd-blog-archive__featured-title a {
  color: var(--cd-text);
  text-decoration: none;
}
@media (max-width: 767px) {
  .cd-blog-archive__featured-title {
    padding: 0 0 20px;
    font-size: 32px;
    line-height: 38px;
    font-weight: 600;
  }
}
.cd-blog-archive__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 0 0 60px;
}
.cd-blog-archive--no-featured .cd-blog-archive__grid {
  padding-top: 24px;
}
@media (max-width: 767px) {
  .cd-blog-archive--no-featured .cd-blog-archive__grid {
    padding-top: 40px;
  }
}
@media (max-width: 767px) {
  .cd-blog-archive__grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .cd-blog-archive__grid .cd-card-post-01 {
    padding: 40px 0;
  }
  .cd-blog-archive__grid .cd-card-post-01::after {
    content: "";
    display: block;
    width: 200vw;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    background: rgba(33, 33, 33, 0.74);
  }
}
@media (max-width: 767px) {
  .cd-blog-archive__grid .cd-card-post-01__image {
    height: 480px;
  }
}
@media (max-width: 767px) {
  .cd-blog-archive__grid .cd-card-post-01__meta-row {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: repeat(2, 1fr);
    align-items: start;
    gap: 0;
  }
  .cd-blog-archive__grid .cd-card-post-01__meta-row .cd-card-post-01__tags {
    grid-column: 1/3;
  }
}
.cd-blog-archive__featured .cd-blog-archive__read-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 60px;
  border: 2px solid var(--cd-blue);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
  color: var(--cd-blue);
  text-decoration: none;
  font-family: var(--cd-font-body);
  font-size: 20px;
  line-height: 28px;
}
.cd-blog-archive__featured .cd-blog-archive__read-more--desktop:hover {
  background: var(--cd-blue);
  color: var(--cd-white);
}
@media (max-width: 767px) {
  .cd-blog-archive__featured .cd-blog-archive__read-more {
    padding: 10px 12px;
    border: 0;
    border-radius: 32px;
    background: linear-gradient(90deg, #ff5214 -388.61%, #4c55f1 99.87%);
    color: #fff;
    font-size: 14px;
    line-height: 20px;
  }
}
.cd-blog-archive__featured .cd-blog-archive__read-more--mobile {
  display: none;
}
@media (max-width: 767px) {
  .cd-blog-archive__featured .cd-blog-archive__read-more--mobile {
    display: inline-flex;
  }
}
@media (max-width: 767px) {
  .cd-blog-archive__featured .cd-blog-archive__read-more:not(.cd-blog-archive__read-more--mobile) {
    display: none;
  }
}
.cd-blog-archive__load-more-wrap {
  margin-top: 0;
  text-align: center;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .cd-blog-archive__load-more-wrap {
    padding: 0 20px 80px;
  }
}
.cd-blog-archive__load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  gap: 0.75rem;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 2px solid var(--cd-blue);
  border-radius: 60px;
  background: transparent;
  color: var(--cd-blue);
  font-family: var(--cd-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.cd-blog-archive__load-more:hover:not(:disabled) {
  background: var(--cd-blue);
  color: var(--cd-white);
}
.cd-blog-archive__load-more:disabled {
  opacity: 0.8;
  cursor: wait;
}
@media (max-width: 767px) {
  .cd-blog-archive__load-more {
    width: 100%;
    max-width: 400px;
    min-height: 0;
    padding: 10px 24px;
    font-size: 20px;
    line-height: 28px;
  }
  .cd-blog-archive__load-more .cd-blog-archive__load-more-text::after {
    content: "";
  }
}
.cd-blog-archive__empty {
  margin: 24px 0 0;
  font-size: 18px;
}

.cd-single-blog {
  padding: 120px 0 80px;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  .cd-single-blog {
    padding: 80px 0;
  }
}
.cd-single-blog__article {
  position: relative;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .cd-single-blog__article {
    padding-bottom: 40px;
  }
}
.cd-single-blog__meta-row {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .cd-single-blog__meta-row {
    justify-content: space-between;
  }
  .cd-single-blog__meta-row::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200vw;
    height: 1px;
    background: rgba(33, 33, 33, 0.74);
  }
}
.cd-single-blog__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cd-single-blog__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 33px;
  padding: 7px 10px;
  border: 1px solid var(--cd-blue);
  border-radius: 22px;
  color: var(--cd-blue);
  font-family: var(--cd-font-body);
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.cd-single-blog__chip:hover, .cd-single-blog__chip:focus-visible {
  background: var(--cd-blue);
  color: var(--cd-white);
}
.cd-single-blog__date {
  display: inline-flex;
  font-family: var(--cd-font-body);
  font-size: 20px;
  line-height: 28px;
  color: rgba(33, 33, 33, 0.58);
}
@media (max-width: 767px) {
  .cd-single-blog__date {
    font-size: 14px;
    line-height: 20px;
  }
}
.cd-single-blog__title {
  margin: 0;
  margin: 2.5rem 0;
  font-size: var(--cd-h1-size);
  line-height: var(--cd-h1-line);
  color: var(--cd-text);
}
@media (max-width: 767px) {
  .cd-single-blog__title {
    margin-bottom: 20px;
    font-size: var(--cd-h3-size);
    line-height: var(--cd-h3-line);
  }
}
.cd-single-blog__hero-media {
  display: block;
  border-radius: 40px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cd-single-blog__hero-media {
    border-radius: 30px;
  }
}
.cd-single-blog__hero-image {
  width: 100%;
  height: 829px;
  display: block;
  object-fit: cover;
  border-radius: 40px;
  background: #d9d9d9;
}
@media (max-width: 767px) {
  .cd-single-blog__hero-image {
    height: 480px;
    border-radius: 30px;
  }
}
.cd-single-blog__lead {
  max-width: 1130px;
  margin: auto;
  font-weight: 700;
  padding: 40px 0;
  font-size: var(--cd-h3-size);
  line-height: var(--cd-h3-line);
  color: var(--cd-text);
}
@media (max-width: 767px) {
  .cd-single-blog__lead {
    font-size: var(--cd-h7-size);
    line-height: var(--cd-h7-line);
  }
}
.cd-single-blog__content {
  padding-top: 40px;
}
.cd-single-blog__content > *:not(h2, .wp-block-image) {
  max-width: 70.625rem;
  margin-left: auto;
}
.cd-single-blog__content > h2:first-child {
  margin-top: 0;
}
.cd-single-blog__content > h2 {
  margin: 6.25rem 0 3.75rem;
}
@media (max-width: 767px) {
  .cd-single-blog__content > h2 {
    margin: 3.125rem 0 1.25rem;
  }
}
.cd-single-blog__content p {
  margin-bottom: 1.25rem;
  font-family: var(--cd-font-body);
  font-size: 20px;
  line-height: 28px;
  color: rgba(33, 33, 33, 0.87);
}
@media (max-width: 767px) {
  .cd-single-blog__content p {
    font-size: 16px;
    line-height: 22px;
  }
}
.cd-single-blog__content a {
  color: var(--cd-orange);
  text-decoration: none;
}
.cd-single-blog__content a:hover, .cd-single-blog__content a:focus-visible {
  text-decoration: underline;
}
.cd-single-blog__content ul,
.cd-single-blog__content ol {
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
  list-style-position: inside;
}
.cd-single-blog__content li {
  position: relative;
  font-size: 1.75rem;
  line-height: 2.5rem;
  color: var(--cd-text-soft);
}
.cd-single-blog__content li strong {
  color: var(--cd-text);
}
.cd-single-blog__content li::before {
  content: "";
  position: absolute;
  left: -4rem;
  top: 0.4em;
  width: 26px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='22' viewBox='0 0 26 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 11.1304H24.2857' stroke='black' stroke-opacity='0.5' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M15.7142 0.653564L24.7619 11.1298L15.7142 20.6536' stroke='black' stroke-opacity='0.5' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}
.cd-single-blog__content li:not(:last-child) {
  margin-bottom: 36px;
}
@media (max-width: 767px) {
  .cd-single-blog__content li {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .cd-single-blog__content li:not(:last-child) {
    margin-bottom: 24px;
  }
}
@media (max-width: 1279px) {
  .cd-single-blog__content li {
    padding-left: 2.5rem;
  }
  .cd-single-blog__content li::before {
    width: 18px;
    height: 15px;
    top: 0.35em;
    left: 0;
  }
}
.cd-single-blog__content blockquote {
  margin: 0;
  padding: 20px 0;
  font-family: var(--cd-font-heading);
  font-size: var(--cd-h5-size);
  line-height: var(--cd-h5-line);
  color: var(--cd-text);
}
@media (max-width: 767px) {
  .cd-single-blog__content blockquote {
    font-size: var(--cd-h7-size);
    line-height: var(--cd-h7-line);
  }
}
.cd-single-blog__content blockquote p {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
}
.cd-single-blog__content .wp-block-image {
  margin: 5rem 0 3.75rem;
}
@media (max-width: 767px) {
  .cd-single-blog__content .wp-block-image {
    margin: 1.25rem 0;
  }
}
.cd-single-blog__content img {
  width: 100%;
  height: auto;
  border-radius: 30px;
}
.cd-single-blog__related {
  position: relative;
  padding-top: 40px;
}
@media (max-width: 767px) {
  .cd-single-blog__related {
    padding-top: 40px;
  }
}
.cd-single-blog__related-title {
  margin: 0;
  padding-bottom: 40px;
  font-family: var(--cd-font-heading);
  font-size: 40px;
  font-weight: 600;
  line-height: 44px;
  color: #000;
}
@media (max-width: 767px) {
  .cd-single-blog__related-title {
    padding-bottom: 20px;
    font-size: 32px;
    line-height: 38px;
  }
}
.cd-single-blog__related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
@media (max-width: 480px) {
  .cd-single-blog__related-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .cd-single-blog__related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .cd-single-blog__related-grid .cd-card-post-01 {
    scroll-snap-align: start;
  }
}
@media (max-width: 767px) {
  .cd-single-blog__related-grid .cd-card-post-01__image {
    height: 308px;
  }
}
@media (max-width: 767px) {
  .cd-single-blog__related-grid .cd-card-post-01__meta-row {
    display: none;
  }
}
@media (max-width: 767px) {
  .cd-single-blog__related-grid .cd-card-post-01__title {
    font-family: var(--cd-font-heading);
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
  }
}

.wp-block-campus-dual-convocatorias {
  background: var(--cd-blue);
  color: var(--cd-white);
  overflow: hidden;
  white-space: nowrap;
}

.cd-convocatorias__track {
  display: inline-flex;
  width: max-content;
  gap: 40px;
  padding: 12px 24px;
  font-weight: 400;
  animation: cd-convocatorias-marquee 22s linear infinite;
  will-change: transform;
}

.cd-convocatorias__item {
  white-space: nowrap;
  display: flex;
  gap: 0.5rem;
}
.cd-convocatorias__item strong {
  font-weight: 700;
}

@keyframes cd-convocatorias-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
.wp-block-campus-dual-por-que-bootcamp {
  padding: 0;
}
@media (max-width: 767px) {
  .wp-block-campus-dual-por-que-bootcamp {
    padding: 0;
  }
}

.cd-por-que-bootcamp__panel {
  position: relative;
  min-height: 680px;
  padding: 120px 117px 100px;
  border-radius: 50px;
  outline: 1px solid var(--cd-white);
  outline-offset: -1px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 80px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .cd-por-que-bootcamp__panel {
    padding: 90px 72px 84px;
    gap: 56px;
  }
}
@media (max-width: 991px) {
  .cd-por-que-bootcamp__panel {
    padding: 72px 44px;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .cd-por-que-bootcamp__panel {
    min-height: auto;
    padding: 56px 20px;
    gap: 28px;
    border-radius: 28px;
  }
}

.cd-por-que-bootcamp__panel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cd-por-que-bootcamp__panel-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cd-por-que-bootcamp__heading-wrap,
.cd-por-que-bootcamp__content {
  position: relative;
  z-index: 1;
}

.cd-por-que-bootcamp__heading-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cd-por-que-bootcamp__title {
  margin: 0;
  color: var(--cd-white);
  font-family: var(--cd-font-heading);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
}
@media (max-width: 1200px) {
  .cd-por-que-bootcamp__title {
    font-size: clamp(40px, 5.5vw, 60px);
  }
}
@media (max-width: 767px) {
  .cd-por-que-bootcamp__title {
    font-size: clamp(34px, 9vw, 42px);
    line-height: 1.1;
  }
}

.cd-por-que-bootcamp__content {
  display: flex;
  align-items: flex-end;
  gap: 220px;
}
@media (max-width: 1200px) {
  .cd-por-que-bootcamp__content {
    gap: 72px;
  }
}
@media (max-width: 991px) {
  .cd-por-que-bootcamp__content {
    gap: 36px;
    align-items: stretch;
  }
}
@media (max-width: 767px) {
  .cd-por-que-bootcamp__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

.cd-por-que-bootcamp__labels {
  width: 195px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 991px) {
  .cd-por-que-bootcamp__labels {
    width: 165px;
    gap: 24px;
    flex: 0 0 165px;
  }
}
@media (max-width: 767px) {
  .cd-por-que-bootcamp__labels {
    width: 100%;
    gap: 16px;
  }
}

.cd-por-que-bootcamp__label {
  margin: 0;
  color: var(--cd-white);
  font-size: 20px;
  font-family: var(--cd-font-body);
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 991px) {
  .cd-por-que-bootcamp__label {
    font-size: 18px;
    line-height: 1.35;
  }
}
@media (max-width: 767px) {
  .cd-por-que-bootcamp__label {
    font-size: 17px;
    line-height: 1.4;
  }
}

.cd-por-que-bootcamp__column {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
@media (max-width: 991px) {
  .cd-por-que-bootcamp__column {
    gap: 24px;
    flex: 1 1 0;
  }
}

.cd-por-que-bootcamp__column--traditional {
  width: 253px;
}
@media (max-width: 991px) {
  .cd-por-que-bootcamp__column--traditional {
    width: auto;
  }
}
@media (max-width: 767px) {
  .cd-por-que-bootcamp__column--traditional {
    width: 100%;
  }
}

.cd-por-que-bootcamp__column--bootcamp {
  width: 239px;
}
@media (max-width: 991px) {
  .cd-por-que-bootcamp__column--bootcamp {
    width: auto;
  }
}
@media (max-width: 767px) {
  .cd-por-que-bootcamp__column--bootcamp {
    width: 100%;
  }
}

.cd-por-que-bootcamp__column-title {
  margin: 0;
  color: var(--cd-white);
  font-size: 24px;
  font-family: var(--cd-font-body);
  font-weight: 600;
  line-height: 26px;
}
@media (max-width: 1200px) {
  .cd-por-que-bootcamp__column-title {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .cd-por-que-bootcamp__column-title {
    font-size: 20px;
    line-height: 1.25;
  }
}
@media (max-width: 767px) {
  .cd-por-que-bootcamp__column-title {
    font-size: 21px;
  }
}

.cd-por-que-bootcamp__values {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 991px) {
  .cd-por-que-bootcamp__values {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .cd-por-que-bootcamp__values {
    gap: 16px;
  }
}

.cd-por-que-bootcamp__value-row {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .cd-por-que-bootcamp__value-row {
    gap: 12px;
  }
}

.cd-por-que-bootcamp__icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.cd-por-que-bootcamp__column--traditional .cd-por-que-bootcamp__icon {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.8403 9.18359L9.15974 14.8167' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9.18346 9.16016L14.8166 14.8407' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.cd-por-que-bootcamp__column--bootcamp .cd-por-que-bootcamp__icon {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 7.5L11 16.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 12.5L11 16.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.cd-por-que-bootcamp__value {
  margin: 0;
  color: var(--cd-white);
  font-size: 20px;
  font-family: var(--cd-font-body);
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 991px) {
  .cd-por-que-bootcamp__value {
    font-size: 18px;
    line-height: 1.35;
  }
}
@media (max-width: 767px) {
  .cd-por-que-bootcamp__value {
    font-size: 17px;
    line-height: 1.4;
  }
}

.wp-block-campus-dual-para-quien {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .wp-block-campus-dual-para-quien {
    padding: 40px 0;
  }
}

.cd-para-quien__panel {
  padding: 120px;
  border: 3px solid var(--cd-orange);
  border-radius: 32px;
  background: var(--cd-white);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 558px;
  gap: 75px;
  align-items: start;
}
@media (max-width: 991px) {
  .cd-para-quien__panel {
    padding: 72px;
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 767px) {
  .cd-para-quien__panel {
    padding: 40px 20px;
    gap: 28px;
    border-radius: 24px;
  }
}

.cd-para-quien__title {
  margin: 0;
  color: rgba(0, 0, 0, 0.2);
  font-family: var(--cd-font-heading);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.11;
}
@media (max-width: 767px) {
  .cd-para-quien__title {
    font-size: clamp(34px, 9vw, 42px);
  }
}

.cd-para-quien__description {
  margin: 24px 0 0;
  max-width: 560px;
  color: var(--cd-text-soft);
  font-family: var(--cd-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .cd-para-quien__description {
    font-size: 18px;
    line-height: 1.5;
  }
}

.cd-para-quien__list {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cd-para-quien__list-item {
  margin: 0;
  color: var(--cd-text-soft);
  font-family: var(--cd-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 2.1;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.cd-para-quien__list-item::before {
  content: "";
  width: 11px;
  height: 18px;
  background: var(--cd-orange);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  flex: 0 0 11px;
}
@media (max-width: 767px) {
  .cd-para-quien__list-item {
    font-size: 18px;
    line-height: 1.5;
    gap: 14px;
  }
}

.cd-para-quien__cta {
  margin: 30px 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 54px;
  color: var(--cd-orange);
  font-family: var(--cd-font-body);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .cd-para-quien__cta {
    font-size: 18px;
    line-height: 1.5;
  }
}

.cd-para-quien__image {
  width: 100%;
  height: 760px;
  object-fit: cover;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 82, 20, 0.2) 0%, rgba(76, 85, 241, 0.2) 75%);
}
@media (max-width: 991px) {
  .cd-para-quien__image {
    height: 520px;
  }
}
@media (max-width: 767px) {
  .cd-para-quien__image {
    height: 380px;
  }
}

.wp-block-campus-dual-pilares {
  padding: 60px 0 120px;
}
@media (max-width: 767px) {
  .wp-block-campus-dual-pilares {
    padding: 40px 0 80px;
  }
}

.cd-pilares__title {
  margin: 0 0 28px;
  font-family: var(--cd-font-heading);
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.1;
  color: var(--cd-black);
}

.cd-pilares__divider {
  position: relative;
  height: 64px;
  border-top: 3px solid rgba(33, 33, 33, 0.25);
}

.cd-pilares__dot {
  position: absolute;
  top: -9px;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: rgba(33, 33, 33, 0.25);
}
.cd-pilares__dot:nth-child(1) {
  left: 11.4%;
}
.cd-pilares__dot:nth-child(2) {
  left: 36.8%;
}
.cd-pilares__dot:nth-child(3) {
  left: 62.1%;
}
.cd-pilares__dot:nth-child(4) {
  left: 87%;
}

.cd-pilares__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 991px) {
  .cd-pilares__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .cd-pilares__grid {
    grid-template-columns: 1fr;
  }
}

.cd-pilares__card {
  min-height: 400px;
  padding: 18px 26px 26px;
  border: 3px solid var(--cd-blue);
  border-radius: 20px;
  color: var(--cd-blue);
  display: flex;
  flex-direction: column;
}
.cd-pilares__card--orange {
  border-color: var(--cd-orange);
  color: var(--cd-orange);
}
.cd-pilares__card--filled.cd-pilares__card--orange {
  background: var(--cd-orange);
  color: var(--cd-white);
}
.cd-pilares__card--filled.cd-pilares__card--blue {
  background: var(--cd-blue);
  color: var(--cd-white);
}

.cd-pilares__number {
  margin: 0 0 26px;
  align-self: flex-end;
  font-family: var(--cd-font-body);
  font-size: 16px;
  line-height: 22px;
}

.cd-pilares__card-title {
  margin: 0 0 32px;
  font-family: var(--cd-font-heading);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 400;
}

.cd-pilares__card-text {
  margin: 0;
  font-family: var(--cd-font-body);
  font-size: 16px;
  line-height: 2.1;
}

.wp-block-campus-dual-objetivos {
  padding: 60px 0 120px;
}
@media (max-width: 767px) {
  .wp-block-campus-dual-objetivos {
    padding: 40px 0 80px;
  }
}

.cd-objetivos__title {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.1;
  color: var(--cd-black);
}

.cd-objetivos__content {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 553px;
  gap: 20px;
}
@media (max-width: 991px) {
  .cd-objetivos__content {
    grid-template-columns: 1fr;
  }
}

.cd-objetivos__image {
  position: relative;
  min-height: 718px;
  border-radius: 50px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cd-objetivos__image {
    min-height: 420px;
  }
}

.cd-objetivos__image-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 82, 20, 0.15) 0%, rgba(76, 85, 241, 0.15) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cd-objetivos__image-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cd-objetivos__list {
  display: flex;
  flex-direction: column;
  gap: 92px;
  padding: 20px 0;
}
@media (max-width: 991px) {
  .cd-objetivos__list {
    gap: 32px;
  }
}

.cd-objetivos__item {
  display: grid;
  grid-template-columns: 151px 1fr;
  align-items: start;
}
@media (max-width: 767px) {
  .cd-objetivos__item {
    grid-template-columns: 64px 1fr;
  }
}

.cd-objetivos__number {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: var(--cd-h1-size);
  line-height: var(--cd-h1-line);
  font-weight: 700;
  text-align: center;
  color: var(--cd-orange);
}
@media (max-width: 767px) {
  .cd-objetivos__number {
    text-align: left;
  }
}

.cd-objetivos__text {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: 28px;
  line-height: 1.6;
  font-weight: 400;
}
@media (max-width: 767px) {
  .cd-objetivos__text {
    font-size: 20px;
    line-height: 1.5;
    text-align: left;
  }
}

.wp-block-campus-dual-medios-textos-01 {
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .wp-block-campus-dual-medios-textos-01 {
    padding-bottom: 80px;
  }
}

.cd-medios-textos-01__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 60px;
}

.cd-medios-textos-01__title {
  margin: 0;
  align-self: stretch;
  font-family: var(--cd-font-heading);
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.1;
  font-weight: 700;
  text-align: left;
  color: var(--cd-text);
}

.cd-medios-textos-01__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-self: stretch;
}
@media (max-width: 991px) {
  .cd-medios-textos-01__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (min-width: 992px) {
  .cd-medios-textos-01__content {
    gap: 28px;
  }
}
@media (min-width: 1280px) {
  .cd-medios-textos-01__content {
    gap: 20px;
  }
}

.cd-medios-textos-01__image {
  position: relative;
  margin: 0;
  min-height: 718px;
  border-radius: 50px;
  overflow: hidden;
  background-color: var(--cd-bg);
}
@media (max-width: 991px) {
  .cd-medios-textos-01__image {
    min-height: 420px;
  }
}

.cd-medios-textos-01__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 718px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 991px) {
  .cd-medios-textos-01__img {
    min-height: 420px;
  }
}

.cd-medios-textos-01__list {
  display: flex;
  flex-direction: column;
  gap: 92px;
  padding: 20px 0;
}
@media (max-width: 991px) {
  .cd-medios-textos-01__list {
    gap: 32px;
    padding: 16px 0;
  }
}
@media (min-width: 992px) {
  .cd-medios-textos-01__list {
    gap: 48px;
    padding: 24px 0;
  }
}
@media (min-width: 1280px) {
  .cd-medios-textos-01__list {
    gap: 92px;
    padding: 20px 0;
  }
}

.cd-medios-textos-01__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: start;
  gap: 16px;
}
@media (max-width: 767px) {
  .cd-medios-textos-01__item {
    grid-template-columns: 58px 1fr;
    gap: 12px;
  }
}
@media (min-width: 1280px) {
  .cd-medios-textos-01__item {
    grid-template-columns: 151px 1fr;
    gap: 24px;
  }
}

.cd-medios-textos-01__number {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: clamp(20px, 3vw, 72px);
  line-height: 1.4;
  font-weight: 700;
  color: var(--cd-orange);
  text-align: center;
}

.cd-medios-textos-01__text {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: clamp(18px, 1.5vw + 14px, var(--cd-h4-size));
  line-height: 1.4;
  font-weight: 300;
  color: var(--cd-text-soft);
}
.cd-medios-textos-01__text strong {
  font-weight: 500;
}
@media (max-width: 767px) {
  .cd-medios-textos-01__text {
    font-size: 20px;
    line-height: 1.5;
  }
}

.wp-block-campus-dual-medios-textos-02 {
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .wp-block-campus-dual-medios-textos-02 {
    padding-bottom: 40px;
  }
}

.cd-medios-textos-02__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 991px) {
  .cd-medios-textos-02__inner {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (min-width: 992px) {
  .cd-medios-textos-02__inner {
    gap: 32px;
  }
}
@media (min-width: 1280px) {
  .cd-medios-textos-02__inner {
    gap: 40px;
  }
}

.cd-medios-textos-02__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 991px) {
  .cd-medios-textos-02__content {
    max-width: none;
    flex: 1 1 auto;
  }
}
@media (min-width: 992px) {
  .cd-medios-textos-02__content {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    gap: 32px;
  }
}
@media (min-width: 1280px) {
  .cd-medios-textos-02__content {
    flex: 0 1 552px;
    max-width: 552px;
    gap: 40px;
  }
}

.cd-medios-textos-02__title {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.1;
  font-weight: 700;
  text-align: left;
  color: var(--cd-text);
}

.cd-medios-textos-02__body {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.cd-medios-textos-02__p {
  margin: 0;
  font-family: var(--cd-font-body);
  font-size: 28px;
  line-height: 1.5;
  color: var(--cd-text-soft);
}
.cd-medios-textos-02__p strong {
  font-weight: 700;
}
.cd-medios-textos-02__p a {
  color: var(--cd-orange);
  text-decoration: underline;
}
@media (max-width: 767px) {
  .cd-medios-textos-02__p {
    font-size: 20px;
  }
}

.cd-medios-textos-02__cta {
  text-decoration: none;
}

.cd-medios-textos-02__image {
  position: relative;
  margin: 0;
  min-height: 718px;
  border-radius: 50px;
  overflow: hidden;
  background-color: var(--cd-bg);
}
@media (max-width: 991px) {
  .cd-medios-textos-02__image {
    flex: 0 0 auto;
    width: 100%;
    min-height: 420px;
  }
}
@media (min-width: 992px) {
  .cd-medios-textos-02__image {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    min-height: 520px;
  }
}
@media (min-width: 1280px) {
  .cd-medios-textos-02__image {
    flex: 0 0 672px;
    width: 672px;
    min-height: 718px;
  }
}

.cd-medios-textos-02__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 718px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 991px) {
  .cd-medios-textos-02__img {
    min-height: 420px;
  }
}
@media (min-width: 992px) {
  .cd-medios-textos-02__img {
    min-height: 520px;
  }
}
@media (min-width: 1280px) {
  .cd-medios-textos-02__img {
    min-height: 718px;
  }
}

.wp-block-campus-dual-metodologia-intro {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .wp-block-campus-dual-metodologia-intro {
    padding: 80px 0 40px;
  }
}

.cd-metodologia-intro__title {
  margin: 0 0 28px;
  font-family: var(--cd-font-heading);
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
  color: var(--cd-black);
}

.cd-metodologia-intro__subtitle {
  max-width: 940px;
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: var(--cd-h4-size);
  line-height: var(--cd-h4-line);
  font-weight: 300;
  color: var(--cd-text-soft);
}

.wp-block-campus-dual-grafica-proyecto {
  padding: 60px 0;
}

.cd-grafica-proyecto {
  display: flex;
  flex-direction: column;
}

.cd-grafica-proyecto__header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 920px;
}

.cd-grafica-proyecto__eyebrow {
  margin: 0;
  font-family: "Sofia Sans", sans-serif;
  font-size: 28px;
  line-height: 1.2;
  color: #ff5214;
}

.cd-grafica-proyecto__title {
  margin: 0;
  font-family: "Sofia Sans", sans-serif;
  font-size: clamp(40px, 4.6vw, 72px);
  line-height: 1.1;
}

.cd-grafica-proyecto__description {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
  color: rgba(33, 33, 33, 0.87);
}

.cd-grafica-proyecto__diagram {
  position: relative;
}

.cd-grafica-proyecto__desktop,
.cd-grafica-proyecto__mobile {
  position: relative;
  margin: 0 auto;
}

.cd-grafica-proyecto__desktop {
  width: min(1360px, 100%);
  aspect-ratio: 502/223;
  height: auto;
  min-height: 280px;
}

.cd-grafica-proyecto__mobile {
  display: none;
  width: 100%;
  aspect-ratio: 502/223;
  height: auto;
  min-height: 0;
}

.cd-grafica-proyecto__bg {
  position: absolute;
  z-index: 0;
}

.cd-grafica-proyecto__bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cd-grafica-proyecto__bg--desktop {
  left: 11.2%;
  top: 6.8%;
  width: 78.4%;
  height: 80.9%;
}

.cd-grafica-proyecto__bg--mobile {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.cd-grafica-proyecto__project-label {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.cd-grafica-proyecto__project-label svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cd-grafica-proyecto__project-label--desktop {
  left: 41.573%;
  top: 1.456%;
  width: 17.717%;
  height: 6.33%;
}

.cd-grafica-proyecto__project-label--mobile {
  left: 41.281%;
  top: -7.644%;
  width: 18.305%;
  height: 7.423%;
}

.cd-grafica-proyecto__immersive-label,
.cd-grafica-proyecto__interactive-label,
.cd-grafica-proyecto__sprints-label,
.cd-grafica-proyecto__demo-day-label,
.cd-grafica-proyecto__start-label,
.cd-grafica-proyecto__end-label,
.cd-grafica-proyecto__active-text {
  position: absolute;
  margin: 0;
  text-align: center;
}

.cd-grafica-proyecto__desktop .cd-grafica-proyecto__immersive-label {
  left: 14.7%;
  top: 58.2%;
  width: 12.7%;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Sofia Sans", sans-serif;
  font-size: clamp(11px, 1.45vw, 28px);
  line-height: 1.15;
}

.cd-grafica-proyecto__desktop .cd-grafica-proyecto__interactive-label {
  left: 45.3%;
  top: 36%;
  width: 9.8%;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Sofia Sans", sans-serif;
  font-size: clamp(11px, 1.4vw, 28px);
  line-height: 1.12;
}

.cd-grafica-proyecto__desktop .cd-grafica-proyecto__sprints-label {
  left: 45.8%;
  top: 64.3%;
  width: 8.6%;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: clamp(10px, 1.05vw, 20px);
}

.cd-grafica-proyecto__desktop .cd-grafica-proyecto__demo-day-label {
  left: 75.1%;
  top: 62.5%;
  width: 9.6%;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Sofia Sans", sans-serif;
  font-size: clamp(11px, 1.4vw, 28px);
}

.cd-grafica-proyecto__desktop .cd-grafica-proyecto__start-label {
  left: 0;
  top: 82.2%;
  width: 9.2%;
  color: #000000;
  font-family: "Roboto", sans-serif;
  font-size: clamp(12px, 1vw, 20px);
  line-height: 1.25;
}

.cd-grafica-proyecto__desktop .cd-grafica-proyecto__end-label {
  right: 0;
  top: 82.2%;
  width: 9.2%;
  color: #000000;
  font-family: "Roboto", sans-serif;
  font-size: clamp(12px, 1vw, 20px);
  line-height: 1.25;
}

.cd-grafica-proyecto__desktop .cd-grafica-proyecto__active-text {
  left: 35.3%;
  top: 14.8%;
  width: 30.2%;
  color: #ffffff;
  font-family: "Sofia Sans", sans-serif;
  font-size: clamp(14px, 1.7vw, 28px);
  font-weight: 700;
  line-height: 1.1;
}

/* Contenedor único para línea + botones (mejor agrupación visual y de posicionamiento). */
.cd-grafica-proyecto__timeline {
  position: absolute;
  pointer-events: none;
}

.cd-grafica-proyecto__timeline > * {
  pointer-events: auto;
}

.cd-grafica-proyecto__timeline--desktop {
  left: 12.9%;
  top: 77.71%;
  width: 75.5%;
  height: 11.5%;
}

.cd-grafica-proyecto__timeline--mobile {
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 92.5%;
  height: 12.5%;
}

.cd-grafica-proyecto__line {
  position: absolute;
}

.cd-grafica-proyecto__line svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cd-grafica-proyecto__timeline--desktop .cd-grafica-proyecto__line--desktop {
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 27%;
}

.cd-grafica-proyecto__timeline--mobile .cd-grafica-proyecto__line--mobile {
  left: 0;
  right: 0;
  bottom: -15%;
  width: 100%;
  height: 32%;
}

.cd-grafica-proyecto__node {
  position: absolute;
  aspect-ratio: 2/1;
  top: 0;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.cd-grafica-proyecto__node-shape,
.cd-grafica-proyecto__node-shape svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cd-grafica-proyecto__node svg path {
  fill: #ffffff;
  stroke: #ff5214;
}

.cd-grafica-proyecto__node.is-active svg path {
  fill: #ff5214;
}

.cd-grafica-proyecto__node-number {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sofia Sans", sans-serif;
  font-size: clamp(10px, 1.25vw, 20px);
  color: #000000;
  margin-top: 0.125rem;
}

.cd-grafica-proyecto__node.is-active .cd-grafica-proyecto__node-number {
  color: #ffffff;
}

.cd-grafica-proyecto__timeline--desktop .cd-grafica-proyecto__node--desktop {
  width: 11.78%;
}

.cd-grafica-proyecto__timeline--desktop .cd-grafica-proyecto__node--desktop[data-index="0"] {
  left: 2.84%;
}

.cd-grafica-proyecto__timeline--desktop .cd-grafica-proyecto__node--desktop[data-index="1"] {
  left: 14.7%;
}

.cd-grafica-proyecto__timeline--desktop .cd-grafica-proyecto__node--desktop[data-index="2"] {
  left: 26.56%;
}

.cd-grafica-proyecto__timeline--desktop .cd-grafica-proyecto__node--desktop[data-index="3"] {
  left: 38.42%;
}

.cd-grafica-proyecto__timeline--desktop .cd-grafica-proyecto__node--desktop[data-index="4"] {
  left: 50.28%;
}

.cd-grafica-proyecto__timeline--desktop .cd-grafica-proyecto__node--desktop[data-index="5"] {
  left: 62.14%;
}

.cd-grafica-proyecto__timeline--desktop .cd-grafica-proyecto__node--desktop[data-index="6"] {
  left: 74%;
}

.cd-grafica-proyecto__timeline--desktop .cd-grafica-proyecto__node--desktop[data-index="7"] {
  left: 85.86%;
}

.cd-grafica-proyecto__bottom-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cd-grafica-proyecto__bottom-item {
  border: 2px solid #ff5214;
  border-radius: 40px;
  color: #ff5214;
  min-height: 44px;
  padding: 8px 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.cd-grafica-proyecto__bottom-arrow {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: none;
}
@media (max-width: 900px) {
  .cd-grafica-proyecto__bottom-arrow {
    display: block;
  }
}

.cd-grafica-proyecto__bottom-arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cd-grafica-proyecto__bottom-text {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.25;
}

@media (max-width: 1200px) {
  .wp-block-campus-dual-grafica-proyecto {
    padding: 48px 0;
  }
  .cd-grafica-proyecto {
    gap: 44px;
  }
  .cd-grafica-proyecto__desktop {
    min-height: 240px;
  }
}
@media (max-width: 900px) {
  .cd-grafica-proyecto__desktop {
    display: none;
  }
  .cd-grafica-proyecto__mobile {
    display: block;
  }
  .cd-grafica-proyecto__project-label--mobile {
    min-height: 14px;
  }
  .cd-grafica-proyecto__header {
    max-width: 100%;
  }
  .cd-grafica-proyecto__eyebrow {
    font-size: 20px;
  }
  .cd-grafica-proyecto__description {
    font-size: 16px;
    line-height: 1.4;
  }
  .cd-grafica-proyecto__mobile .cd-grafica-proyecto__immersive-label {
    left: 14.8%;
    top: 58.1%;
    width: 13%;
    color: rgba(255, 255, 255, 0.5);
    font-family: "Sofia Sans", sans-serif;
    font-size: 10.3px;
    line-height: 1.2;
  }
  .cd-grafica-proyecto__mobile .cd-grafica-proyecto__interactive-label {
    left: 45.2%;
    top: 35.9%;
    width: 9.8%;
    color: rgba(255, 255, 255, 0.5);
    font-family: "Sofia Sans", sans-serif;
    font-size: 10.3px;
    line-height: 1.2;
  }
  .cd-grafica-proyecto__mobile .cd-grafica-proyecto__sprints-label {
    left: 46%;
    top: 64.2%;
    width: 8.6%;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-size: 7.4px;
  }
  .cd-grafica-proyecto__mobile .cd-grafica-proyecto__demo-day-label {
    left: 75.4%;
    top: 62%;
    width: 9.6%;
    color: rgba(255, 255, 255, 0.5);
    font-family: "Sofia Sans", sans-serif;
    font-size: 10.3px;
  }
  .cd-grafica-proyecto__mobile .cd-grafica-proyecto__active-text {
    left: 35.3%;
    top: 14.7%;
    width: 30.2%;
    color: #ffffff;
    font-family: "Sofia Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.05;
  }
  .cd-grafica-proyecto__timeline--mobile .cd-grafica-proyecto__node--mobile {
    width: 11.78%;
  }
  .cd-grafica-proyecto__timeline--mobile .cd-grafica-proyecto__node--mobile[data-index="0"] {
    left: 2.84%;
  }
  .cd-grafica-proyecto__timeline--mobile .cd-grafica-proyecto__node--mobile[data-index="1"] {
    left: 14.7%;
  }
  .cd-grafica-proyecto__timeline--mobile .cd-grafica-proyecto__node--mobile[data-index="2"] {
    left: 26.56%;
  }
  .cd-grafica-proyecto__timeline--mobile .cd-grafica-proyecto__node--mobile[data-index="3"] {
    left: 38.42%;
  }
  .cd-grafica-proyecto__timeline--mobile .cd-grafica-proyecto__node--mobile[data-index="4"] {
    left: 50.28%;
  }
  .cd-grafica-proyecto__timeline--mobile .cd-grafica-proyecto__node--mobile[data-index="5"] {
    left: 62.14%;
  }
  .cd-grafica-proyecto__timeline--mobile .cd-grafica-proyecto__node--mobile[data-index="6"] {
    left: 74%;
  }
  .cd-grafica-proyecto__timeline--mobile .cd-grafica-proyecto__node--mobile[data-index="7"] {
    left: 85.86%;
  }
  .cd-grafica-proyecto__mobile .cd-grafica-proyecto__node-number {
    font-size: 10px;
  }
  .cd-grafica-proyecto__bottom-list {
    justify-content: start;
  }
  .cd-grafica-proyecto__bottom-item {
    border: 0;
    border-radius: 0;
    padding: 0;
    min-height: 0;
    gap: 10px;
  }
  .cd-grafica-proyecto__bottom-text {
    font-size: 14px;
  }
}
.wp-block-campus-dual-tarjetas-01 {
  padding: 3.75rem 0 7.5rem;
}
@media (max-width: 767px) {
  .wp-block-campus-dual-tarjetas-01 {
    padding: 0;
  }
}
.wp-block-campus-dual-tarjetas-01 .cd-tarjetas-01__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 60px;
  padding: 120px 115px;
  border-radius: 60px;
  background: var(--cd-white);
  border: 3px solid var(--cd-orange);
  overflow: hidden;
}
@media (max-width: 767px) {
  .wp-block-campus-dual-tarjetas-01 .cd-tarjetas-01__inner {
    padding: 60px 24px 48px;
    border-radius: 32px;
    gap: 40px;
  }
}
.wp-block-campus-dual-tarjetas-01 .cd-tarjetas-01__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 1100px;
}
.wp-block-campus-dual-tarjetas-01 .cd-tarjetas-01__title {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cd-text);
  text-align: left;
}
.wp-block-campus-dual-tarjetas-01 .cd-tarjetas-01__subtitle {
  margin: 0;
  padding: 10px 0;
  font-family: var(--cd-font-heading);
  font-size: 3rem;
  line-height: 1;
  color: var(--cd-orange);
  text-align: left;
  max-width: 785px;
}
@media (max-width: 767px) {
  .wp-block-campus-dual-tarjetas-01 .cd-tarjetas-01__subtitle {
    font-size: var(--cd-h7-size);
    line-height: var(--cd-h7-line);
  }
}
.wp-block-campus-dual-tarjetas-01 .cd-tarjetas-01__description {
  margin: 0;
  padding: 10px 0;
  font-family: var(--cd-font-body);
  font-size: var(--cd-h7-size);
  line-height: var(--cd-h7-line);
  color: var(--cd-text-soft);
  text-align: left;
  max-width: 785px;
}
.wp-block-campus-dual-tarjetas-01 .cd-tarjetas-01__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  align-items: stretch;
}
@media (max-width: 767px) {
  .wp-block-campus-dual-tarjetas-01 .cd-tarjetas-01__grid {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
.wp-block-campus-dual-tarjetas-01 .cd-tarjetas-01__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 0 auto;
  width: 266px;
  min-height: 357px;
  gap: 23px;
  padding: 24px;
  border-radius: 32px;
  background: var(--cd-blue);
}
@media (max-width: 767px) {
  .wp-block-campus-dual-tarjetas-01 .cd-tarjetas-01__card {
    width: 100%;
    min-height: 0;
  }
}
.wp-block-campus-dual-tarjetas-01 .cd-tarjetas-01__card-icon {
  flex-shrink: 0;
  width: 65px;
  height: 65px;
  display: block;
}
@media (max-width: 767px) {
  .wp-block-campus-dual-tarjetas-01 .cd-tarjetas-01__card-icon {
    display: none;
  }
}
.wp-block-campus-dual-tarjetas-01 .cd-tarjetas-01__card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex: 1 1 auto;
}
.wp-block-campus-dual-tarjetas-01 .cd-tarjetas-01__card-title {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: var(--cd-h6-size);
  line-height: var(--cd-h6-line);
  color: var(--cd-white);
  text-align: left;
  font-weight: 400;
}
@media (max-width: 767px) {
  .wp-block-campus-dual-tarjetas-01 .cd-tarjetas-01__card-title {
    font-size: 1.25rem;
    line-height: 1;
  }
}
.wp-block-campus-dual-tarjetas-01 .cd-tarjetas-01__card-text {
  margin: 0;
  font-family: var(--cd-font-body);
  font-size: var(--cd-h8-size);
  line-height: var(--cd-h8-line);
  color: var(--cd-white);
  text-align: left;
}
@media (max-width: 767px) {
  .wp-block-campus-dual-tarjetas-01 .cd-tarjetas-01__card-text {
    font-size: var(--cd-h9-size);
    line-height: var(--cd-h9-line);
  }
}

.wp-block-campus-dual-tarjetas-02 {
  padding: 60px 0 120px;
}
@media (max-width: 767px) {
  .wp-block-campus-dual-tarjetas-02 {
    padding: 80px 0 40px;
  }
}

.cd-tarjetas-02__inner {
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.cd-tarjetas-02__title {
  margin: 0;
  padding: 0 0 5rem;
  font-family: var(--cd-font-heading);
  font-size: 72px;
  line-height: 1.1;
  font-weight: 700;
}

.cd-tarjetas-02__card.cd-tarjetas-02__card--orange .cd-tarjetas-02__card-title,
.cd-tarjetas-02__card.cd-tarjetas-02__card--orange .cd-tarjetas-02__card-number {
  color: var(--cd-orange);
}

.cd-tarjetas-02__card.cd-tarjetas-02__card--blue .cd-tarjetas-02__card-title,
.cd-tarjetas-02__card.cd-tarjetas-02__card--blue .cd-tarjetas-02__card-number {
  color: var(--cd-blue);
}

.cd-tarjetas-02__divider {
  position: relative;
  height: 80px;
  border-top: 3px solid rgba(33, 33, 33, 0.25);
}

.cd-tarjetas-02__dot {
  position: absolute;
  top: -9px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(33, 33, 33, 0.25);
}
.cd-tarjetas-02__dot:nth-child(1) {
  left: 11.1%;
}
.cd-tarjetas-02__dot:nth-child(2) {
  left: 36.5%;
}
.cd-tarjetas-02__dot:nth-child(3) {
  left: 61.8%;
}
.cd-tarjetas-02__dot:nth-child(4) {
  left: 86.8%;
}
.cd-tarjetas-02__dot--active.cd-tarjetas-02__dot--orange {
  background: var(--cd-orange);
}
.cd-tarjetas-02__dot--active.cd-tarjetas-02__dot--blue {
  background: var(--cd-blue);
}

.cd-tarjetas-02__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: end;
}

.cd-tarjetas-02__card-wrap {
  min-height: 443px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cd-tarjetas-02__card-wrap:hover .cd-tarjetas-02__card {
  transform: translateY(-43px);
  background: var(--cd-blue);
  border-color: var(--cd-blue);
  color: var(--cd-white);
}
.cd-tarjetas-02__card-wrap:hover .cd-tarjetas-02__card-title, .cd-tarjetas-02__card-wrap:hover .cd-tarjetas-02__card-number {
  color: var(--cd-white);
}
.cd-tarjetas-02__card-wrap:hover .cd-tarjetas-02__card--orange {
  background: var(--cd-orange);
  border-color: var(--cd-orange);
}

.cd-tarjetas-02__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  padding: 20px 24px 28px;
  border: 3px solid var(--cd-blue);
  border-radius: 20px;
  color: var(--cd-blue);
  background: transparent;
  overflow: hidden;
  transition: transform 260ms ease, background-color 260ms ease, color 260ms ease, border-color 260ms ease;
}
.cd-tarjetas-02__card--orange {
  border-color: var(--cd-orange);
  color: var(--cd-orange);
}

.cd-tarjetas-02__card-number {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.2;
  align-self: flex-end;
}

.cd-tarjetas-02__card-content {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cd-tarjetas-02__card-title {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 400;
}

.cd-tarjetas-02__card-shape {
  position: absolute;
  display: block;
  pointer-events: none;
  opacity: 0.95;
}
.cd-tarjetas-02__card-shape svg {
  display: block;
  width: 100%;
  height: 100%;
}

.cd-tarjetas-02__card-shape--1 {
  left: -8px;
  top: 25%;
  width: 211px;
  height: 140px;
}

.cd-tarjetas-02__card-shape--2 {
  top: 120px;
  left: 0;
  width: 325px;
  height: 129px;
}

.cd-tarjetas-02__card-shape--3 {
  right: -8px;
  bottom: 30px;
  width: 198px;
  height: 206px;
}

.cd-tarjetas-02__card-shape--4 {
  left: 26px;
  top: 0;
  width: 121px;
  height: 226px;
}

@media (hover: hover) and (pointer: fine) {
  .cd-tarjetas-02__card-wrap:hover .cd-tarjetas-02__card-shape {
    animation: cd-tarjetas-02-shape-pop 320ms ease;
  }
}
@keyframes cd-tarjetas-02-shape-pop {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 1024px) {
  .cd-tarjetas-02__title {
    font-size: 56px;
  }
  .cd-tarjetas-02__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .cd-tarjetas-02__inner {
    gap: 20px;
  }
  .cd-tarjetas-02__title {
    padding: 0 0 1.25rem;
    font-size: 40px;
  }
  .cd-tarjetas-02__divider {
    display: none;
  }
  .cd-tarjetas-02__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
  }
  .cd-tarjetas-02__card-wrap {
    min-height: 0;
  }
  .cd-tarjetas-02__card {
    min-height: 240px;
    border-radius: 30px;
    padding: 16px;
    transform: none !important;
  }
  .cd-tarjetas-02__card-title {
    font-size: 20px;
  }
  .cd-tarjetas-02__card-number {
    display: none;
  }
  .cd-tarjetas-02__card-shape--1 {
    left: -2px;
    bottom: 82px;
    width: 131px;
    height: 86px;
  }
  .cd-tarjetas-02__card-shape--2 {
    top: 30px;
    left: -22px;
    width: 220px;
    height: 88px;
  }
  .cd-tarjetas-02__card-shape--3 {
    right: -2px;
    bottom: 59px;
    width: 112px;
    height: 118px;
  }
  .cd-tarjetas-02__card-shape--4 {
    left: 16px;
    bottom: -10px;
    width: 99px;
    height: 155px;
  }
}
.wp-block-campus-dual-titulo-seccion {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .wp-block-campus-dual-titulo-seccion {
    padding: 80px 0 40px;
  }
}

.cd-titulo-seccion__title {
  margin: 0 0 28px;
  font-family: var(--cd-font-heading);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  color: var(--cd-text);
}
.cd-titulo-seccion__subtitle {
  max-width: 940px;
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: clamp(16px, 3vw, 38px);
  line-height: 44px;
  font-weight: 300;
  color: var(--cd-text-soft);
}
@media (max-width: 767px) {
  .cd-titulo-seccion__subtitle {
    line-height: 22px;
  }
}
.cd-titulo-seccion__description {
  max-width: 940px;
  margin-top: 1.75rem;
}
.cd-titulo-seccion__description-p {
  margin: 0 0 1.25rem;
  color: var(--cd-text-soft);
  font-size: var(--cd-h8-size);
  line-height: var(--cd-h8-line);
}
.cd-titulo-seccion__description-p:last-child {
  margin-bottom: 0;
}
.cd-titulo-seccion__description-p a {
  color: var(--cd-orange);
  text-decoration: none;
}
.cd-titulo-seccion__description-p a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .cd-titulo-seccion__description-p {
    font-size: var(--cd-h6-size);
    line-height: var(--cd-h6-line);
  }
}

.wp-block-campus-dual-tarjetas-03 {
  padding: 0;
}

.cd-tarjetas-03__inner {
  padding: 120px 0 60px;
}
@media (max-width: 991px) {
  .cd-tarjetas-03__inner {
    padding: 40px 0;
  }
}

.cd-tarjetas-03__head {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cd-tarjetas-03__title {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: #000;
}

.cd-tarjetas-03__description {
  margin: 0;
  max-width: 785px;
  font-family: var(--cd-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(33, 33, 33, 0.87);
}
@media (max-width: 991px) {
  .cd-tarjetas-03__description {
    font-size: 16px;
    line-height: 22px;
    color: rgba(33, 33, 33, 0.74);
  }
}

.cd-tarjetas-03__grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 1200px) {
  .cd-tarjetas-03__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .cd-tarjetas-03__grid {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.cd-tarjetas-03__card {
  position: relative;
  min-height: 400px;
  border: 3px solid var(--cd-blue);
  border-radius: 20px;
  padding: 20px 24px 24px;
  background: var(--cd-white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.cd-tarjetas-03__card--orange {
  border-color: var(--cd-orange);
  color: var(--cd-orange);
}
.cd-tarjetas-03__card--blue {
  color: var(--cd-blue);
}
.cd-tarjetas-03__card:hover .cd-tarjetas-03__card-content, .cd-tarjetas-03__card:focus-within .cd-tarjetas-03__card-content {
  transform: translateY(-40px);
}
.cd-tarjetas-03__card:hover .cd-tarjetas-03__card-text, .cd-tarjetas-03__card:focus-within .cd-tarjetas-03__card-text {
  max-height: 250px;
  opacity: 1;
  transform: translateY(0);
  padding-top: 2.5rem;
}
@media (max-width: 991px) {
  .cd-tarjetas-03__card {
    min-height: auto;
    border-width: 2px;
    border-radius: 30px;
    padding: 20px 12px;
  }
}

/* Wrapper para centrado vertical: ocupa el espacio y el contenido se desplaza con transform (suave) */
.cd-tarjetas-03__card-content-wrap {
  flex: 1;
  display: flex;
  align-items: flex-end;
  min-height: 0;
}

.cd-tarjetas-03__number {
  position: absolute;
  top: 22px;
  right: 26px;
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: 28px;
  font-weight: 400;
  line-height: 34px;
  color: currentColor;
  pointer-events: none;
}
@media (max-width: 991px) {
  .cd-tarjetas-03__number {
    display: none;
  }
}

.cd-tarjetas-03__card-content {
  width: 100%;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.cd-tarjetas-03__card-title {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: 28px;
  font-weight: 400;
  line-height: 34px;
  color: currentColor;
  max-width: 273px;
}
@media (max-width: 991px) {
  .cd-tarjetas-03__card-title {
    font-family: var(--cd-font-body);
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    max-width: none;
  }
}

.cd-tarjetas-03__card-text {
  margin: 0;
  padding-top: 0;
  padding-left: 2.5rem;
  max-width: 221px;
  font-family: var(--cd-font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.37;
  color: currentColor;
  max-height: 0;
  opacity: 0;
  transform: translateY(8px);
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.35s ease, transform 0.35s ease, padding-top 0.4s ease;
}
@media (max-width: 991px) {
  .cd-tarjetas-03__card-text {
    display: none;
  }
}

.cd-tarjetas-03__card-text-mobile {
  display: none;
}
@media (max-width: 991px) {
  .cd-tarjetas-03__card-text-mobile {
    display: block;
    margin: 12px 0 0;
    padding: 0 8px;
    font-family: var(--cd-font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: currentColor;
  }
}

.wp-block-campus-dual-cifras {
  padding: 120px 0;
  overflow-x: hidden;
}
@media (max-width: 991px) {
  .wp-block-campus-dual-cifras {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .wp-block-campus-dual-cifras {
    padding: 40px 0;
  }
}

.cd-cifras__title {
  margin: 0 0 1.5rem;
  font-family: var(--cd-font-heading);
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
}

.cd-cifras__subtitle {
  margin: 0 0 3.75rem;
  max-width: 940px;
  font-family: var(--cd-font-body);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  color: rgba(33, 33, 33, 0.87);
}

.cd-cifras__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 991px) {
  .cd-cifras__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .cd-cifras__grid {
    gap: 0.75rem;
  }
}

.cd-cifras__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 24px;
  border: 3px solid var(--cd-orange);
  border-radius: 30px;
  background: transparent;
  transition: background-color 0.35s ease, border-color 0.35s ease, border-radius 0.35s ease, padding 0.35s ease;
}
.cd-cifras__card:hover {
  background: var(--cd-orange);
  border-color: var(--cd-orange);
  border-radius: 600px;
  padding: 60px 40px;
}
.cd-cifras__card:hover .cd-cifras__number,
.cd-cifras__card:hover .cd-cifras__label {
  color: var(--cd-white);
}
@media (min-width: 1024px) {
  .cd-cifras__card {
    padding: 3.75rem 2.5rem;
  }
}

.cd-cifras__number {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: var(--cd-orange);
  line-height: normal;
  transition: color 0.35s ease;
}

.cd-cifras__label {
  margin: 0;
  font-size: clamp(14px, 2vw, 20px);
  color: var(--cd-orange);
  line-height: normal;
  transition: color 0.35s ease;
}

.wp-block-campus-dual-vive-campus {
  padding: 2.5rem 0;
}
@media (min-width: 1024px) {
  .wp-block-campus-dual-vive-campus {
    padding: 60px 0;
  }
}

.cd-vive-campus__inner {
  position: relative;
  z-index: 1;
  border-radius: 2.5rem;
  overflow: hidden;
}

.cd-vive-campus__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

.cd-vive-campus__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cd-vive-campus__overlay {
  position: relative;
  min-height: 37.5rem;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem 1.25rem;
  background: rgba(0, 0, 0, 0.2);
}
@media (min-width: 1024px) {
  .cd-vive-campus__overlay {
    padding: 4.75rem 7.3125rem 3.5rem;
    min-height: 53.1875rem;
  }
}
@media (max-width: 767px) {
  .cd-vive-campus__overlay {
    padding: 40px 20px;
  }
}

.cd-vive-campus__title {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: clamp(40px, 5vw, 72px);
  color: var(--cd-white);
}

.cd-vive-campus__cta {
  font-size: 1.25rem;
  margin-left: auto;
}

.wp-block-campus-dual-oferta {
  padding-top: 120px;
  padding-bottom: 60px;
  overflow-x: hidden;
}
@media (max-width: 991px) {
  .wp-block-campus-dual-oferta {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .wp-block-campus-dual-oferta {
    padding-top: 40px;
    padding-bottom: 30px;
  }
}

.cd-oferta__header {
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .cd-oferta__header {
    padding-bottom: 32px;
  }
}

.cd-oferta__title {
  margin: 0 0 28px;
  font-family: var(--cd-font-heading);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
}

.cd-oferta__subtitle {
  margin: 0;
  max-width: 1015px;
  font-family: var(--cd-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(33, 33, 33, 0.87);
}
@media (max-width: 767px) {
  .cd-oferta__subtitle {
    font-size: 17px;
    line-height: 1.5;
  }
}

.cd-oferta--no-filters .cd-oferta__header {
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .cd-oferta--no-filters .cd-oferta__header {
    padding-bottom: 24px;
  }
}

.cd-oferta__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cd-oferta__filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    margin-bottom: 24px;
    scrollbar-width: none;
  }
  .cd-oferta__filters::-webkit-scrollbar {
    display: none;
  }
}

.cd-oferta__filter {
  height: 33px;
  padding: 7px 10px;
  border-radius: 22px;
  border: 1.5px solid var(--cd-blue);
  background: transparent;
  color: var(--cd-blue);
  font-family: var(--cd-font-body);
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.cd-oferta__filter.is-active, .cd-oferta__filter:hover {
  background: var(--cd-blue);
  color: var(--cd-white);
}

.cd-oferta__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1100px) {
  .cd-oferta__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .cd-oferta__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.cd-oferta__card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.cd-oferta__card {
  position: relative;
  isolation: isolate;
  aspect-ratio: 325/400;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  border-radius: 20px;
  color: var(--cd-white);
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.cd-oferta__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: var(--cd-oferta-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  opacity: 1;
  transition: opacity 0.35s ease, transform 0.6s ease;
  z-index: 0;
}
.cd-oferta__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 82, 20, 0.6) 0%, rgba(76, 85, 241, 0.6) 100%);
  opacity: 0.75;
  z-index: 1;
  transition: opacity 0.35s ease;
}
.cd-oferta__card-link:hover .cd-oferta__card, .cd-oferta__card-link:focus-visible .cd-oferta__card {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}
.cd-oferta__card-link:hover .cd-oferta__card::before, .cd-oferta__card-link:focus-visible .cd-oferta__card::before {
  opacity: 0.95;
}
.cd-oferta__card-link:hover .cd-oferta__card::after, .cd-oferta__card-link:focus-visible .cd-oferta__card::after {
  opacity: 0.9;
}
@media (max-width: 767px) {
  .cd-oferta__card {
    min-height: 220px;
    transition: none;
  }
  .cd-oferta__card::after {
    transition: none;
  }
  .cd-oferta__card::before {
    transition: none;
  }
}

.cd-oferta__kicker {
  position: relative;
  z-index: 2;
  margin: 0 0 0;
  font-family: var(--cd-font-heading);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--cd-white);
}

.cd-oferta__card-title {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 600;
  line-height: 38px;
  color: var(--cd-white);
}

.cd-oferta__cta {
  font-size: 20px;
  line-height: 28px;
}

.cd-oferta__cta-wrap {
  margin-top: 40px;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 1024px) {
  .cd-oferta__cta-wrap {
    margin-top: 5rem;
  }
}
@media (max-width: 767px) {
  .cd-oferta__cta-wrap {
    justify-content: stretch;
  }
  .cd-oferta__cta-wrap .cd-oferta__cta {
    width: 100%;
  }
}

.wp-block-campus-dual-testimonios {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .wp-block-campus-dual-testimonios {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .wp-block-campus-dual-testimonios {
    padding: 40px 0;
  }
}

.cd-testimonios__title {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  font-weight: 700;
  color: var(--cd-white);
  text-align: left;
}

.cd-testimonios__panel {
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  border: 1px solid var(--cd-white);
  padding: 120px 6.25rem 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 80px;
  background: rgba(0, 0, 0, 0.4);
}
@media (max-width: 991px) {
  .cd-testimonios__panel {
    padding: 80px 60px 80px;
    gap: 60px;
  }
}
@media (max-width: 767px) {
  .cd-testimonios__panel {
    padding: 60px 1.25rem 60px;
    gap: 48px;
    border-radius: 28px;
  }
}

.cd-testimonios__panel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

.cd-testimonios__panel-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cd-testimonios__panel-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  width: 100%;
}
@media (max-width: 991px) {
  .cd-testimonios__panel-content {
    gap: 60px;
  }
}
@media (max-width: 767px) {
  .cd-testimonios__panel-content {
    gap: 48px;
  }
}

.cd-testimonios__header {
  width: 100%;
}

.cd-testimonios__swiper {
  width: 100%;
  overflow: visible;
}
.cd-testimonios__swiper .swiper-slide {
  width: 280px;
  height: auto;
}
@media (min-width: 768px) {
  .cd-testimonios__swiper .swiper-slide {
    width: 360px;
  }
}
@media (min-width: 992px) {
  .cd-testimonios__swiper .swiper-slide {
    width: auto;
    min-width: 0;
  }
}

.cd-testimonios__card {
  position: relative;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.cd-testimonios__card-border {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: block;
  z-index: 5;
}

.cd-testimonios__card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  justify-content: space-between;
  margin: 3px;
  padding: 40px;
  border-radius: 18px;
  height: calc(100% - 6px);
  box-sizing: border-box;
  color: var(--cd-white);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
@media (max-width: 767px) {
  .cd-testimonios__card-inner {
    padding: 28px;
    gap: 32px;
  }
}

.cd-testimonios__text {
  margin: 0;
  font-size: var(--cd-h7-size);
  line-height: var(--cd-h7-line);
  color: var(--cd-white);
}

.cd-testimonios__author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cd-testimonios__name {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: var(--cd-h6-size);
  line-height: var(--cd-h6-line);
  font-weight: 400;
  color: var(--cd-white);
}

.cd-testimonios__role {
  margin: 0;
  font-size: var(--cd-h7-size);
  line-height: var(--cd-h7-line);
  color: var(--cd-white);
}

.cd-testimonios__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
}
@media (max-width: 991px) {
  .cd-testimonios__nav {
    gap: 24px;
  }
}

.cd-testimonios__arrow {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  position: static;
  margin: 0;
  color: transparent;
}
.cd-testimonios__arrow svg {
  display: block;
}
.cd-testimonios__arrow::after {
  display: none;
}
.cd-testimonios__arrow--disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
.cd-testimonios__arrow:hover:not(.cd-testimonios__arrow--disabled) {
  opacity: 0.85;
}

.wp-block-campus-dual-equipo {
  padding: 120px 0;
  overflow-x: hidden;
}
@media (max-width: 991px) {
  .wp-block-campus-dual-equipo {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .wp-block-campus-dual-equipo {
    padding: 40px 0;
  }
}

.cd-equipo__title {
  margin: 0 0 3.75rem;
  font-family: var(--cd-font-heading);
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
}
@media (max-width: 991px) {
  .cd-equipo__title {
    margin-bottom: 1.25rem;
  }
}

.cd-equipo__text {
  max-width: 940px;
  margin: 0 0 60px;
}

.cd-equipo__swiper {
  width: 100%;
  min-width: 0;
  overflow: visible;
}
.cd-equipo__swiper .swiper-slide {
  width: 20.3125rem;
  height: auto;
}

.cd-equipo__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.cd-equipo__arrow {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  position: static;
  margin: 0;
  color: var(--cd-text);
}
.cd-equipo__arrow svg {
  display: block;
}
.cd-equipo__arrow::after {
  display: none;
}
.cd-equipo__arrow--disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
.cd-equipo__arrow:hover:not(.cd-equipo__arrow--disabled) {
  opacity: 0.85;
}

.cd-equipo__card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.cd-equipo__card {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .cd-equipo__card:hover .cd-equipo__image-wrap::after {
    opacity: 1;
  }
  .cd-equipo__card:hover .cd-equipo__curso {
    opacity: 1;
  }
}

.cd-equipo__image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 0.9375rem;
}
.cd-equipo__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 82, 20, 0.25) 0%, rgba(76, 85, 241, 0.25) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
  height: 25rem;
  pointer-events: none;
}

.cd-equipo__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  filter: grayscale(1);
  transition: filter 0.25s ease;
}

.cd-equipo__name {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: var(--cd-h6-size);
  line-height: var(--cd-h6-line);
  font-weight: 400;
}

.cd-equipo__role {
  margin: 0;
  font-size: var(--cd-h8-size);
  line-height: var(--cd-h8-line);
  font-weight: 400;
  color: var(--cd-text-soft);
}

.cd-equipo__cursos {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.cd-equipo__curso {
  margin: 0;
  font-size: 14px;
  line-height: var(--cd-h8-line);
  font-weight: 400;
  opacity: 1;
  transition: opacity 0.25s ease;
}
@media (min-width: 768px) {
  .cd-equipo__curso {
    opacity: 0;
  }
}
.cd-equipo__curso--1 {
  color: var(--cd-blue);
}
.cd-equipo__curso--2 {
  color: var(--cd-orange);
}

.wp-block-campus-dual-logos {
  padding: 120px 0;
  overflow-x: hidden;
}
@media (max-width: 991px) {
  .wp-block-campus-dual-logos {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .wp-block-campus-dual-logos {
    padding: 40px 0;
  }
}

.cd-logos__title {
  margin: 0 0 3.75rem;
  font-family: var(--cd-font-heading);
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
}

.cd-logos__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
}
@media (max-width: 991px) {
  .cd-logos__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .cd-logos__grid {
    grid-template-columns: 1fr;
  }
}

.cd-logos__item {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.cd-logos__item img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .cd-logos__item img {
    max-height: 5.625rem;
  }
}

.cd-logos__placeholder {
  font-size: 14px;
  color: var(--cd-text-soft);
}

.cd-logos__marquee {
  overflow: hidden;
}

.cd-logos__track {
  display: inline-flex;
  width: max-content;
  gap: 2.5rem;
  padding: 1rem 1.5rem;
  animation: cd-logos-marquee 35s linear infinite;
  will-change: transform;
}
.cd-logos__track .cd-logos__item {
  min-width: 140px;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .cd-logos__track {
    gap: 4.375rem;
  }
}

@keyframes cd-logos-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
.wp-block-campus-dual-contacto {
  padding: 120px 0;
}

.cd-contacto__title {
  margin: 0 0 3.75rem;
  font-family: var(--cd-font-heading);
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
  color: var(--cd-blue);
}
.cd-contacto__inner {
  padding: 2.5rem 1.25rem;
  border: 5px solid var(--cd-orange);
  border-radius: 50px;
}
@media (min-width: 1024px) {
  .cd-contacto__inner {
    padding: 5rem 40px;
  }
}
@media (min-width: 1280px) {
  .cd-contacto__inner {
    padding: 5rem 100px;
  }
}
@media (max-width: 767px) {
  .cd-contacto__inner {
    padding: 40px 1.5rem;
  }
}
.cd-contacto__form input[type=text],
.cd-contacto__form input[type=email],
.cd-contacto__form input[type=tel],
.cd-contacto__form input[type=number],
.cd-contacto__form input[type=url],
.cd-contacto__form select,
.cd-contacto__form textarea {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  font-family: var(--cd-font-body);
  font-size: 20px;
  line-height: 28px;
  color: rgba(33, 33, 33, 0.74);
  background: transparent;
  border: none;
  border-bottom: 1px solid #212121;
  border-radius: 0;
  box-sizing: border-box;
  appearance: none;
  outline: none;
}
.cd-contacto__form textarea {
  resize: vertical;
  margin-top: 42px;
  margin-bottom: 42px;
}
.cd-contacto__form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.cd-contacto__form p {
  margin: 0;
}
.cd-contacto__form-col {
  display: grid;
  grid-template-columns: 1fr;
}
.cd-contacto__form-acceptance {
  margin-top: 1.875rem;
  margin-bottom: 2.5rem;
}
.cd-contacto__form-submit {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media (max-width: 767px) {
  .cd-contacto__form-submit {
    gap: 12px;
  }
}
.cd-contacto__form-submit > * {
  margin: 0;
}
.cd-contacto__form-submit .cd-contacto__submit-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 54px;
  overflow: hidden;
  background: linear-gradient(90deg, #ff5214 -389.7%, #4c55f1 99.99%);
}
.cd-contacto__form-submit .cd-contacto__submit-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to left, #ff5214 2.13%, #4c55f1 100.02%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.cd-contacto__form-submit .cd-contacto__submit-wrap:hover:not(:has(:disabled))::before {
  opacity: 1;
}
.cd-contacto__form-submit .cd-contacto__submit-wrap input {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 54px;
  border: 0;
  background: transparent;
  color: var(--cd-white);
  font-family: var(--cd-font-body);
  font-size: 20px;
  cursor: pointer;
  width: fit-content;
  appearance: none;
}
@media (max-width: 767px) {
  .cd-contacto__form-submit .cd-contacto__submit-wrap input {
    font-size: 16px;
    line-height: 22px;
  }
}
.cd-contacto__form-submit .cd-contacto__submit-wrap input:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.cd-contacto__form-submit .cd-contacto__form-wpp {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(90deg, #ff5214 -389.7%, #4c55f1 99.99%);
  color: var(--cd-white);
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
}
.cd-contacto__form-submit .cd-contacto__form-wpp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to left, #ff5214 2.13%, #4c55f1 100.02%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.cd-contacto__form-submit .cd-contacto__form-wpp:hover::before {
  opacity: 1;
}
.cd-contacto__form-submit .cd-contacto__form-wpp svg,
.cd-contacto__form-submit .cd-contacto__form-wpp > * {
  position: relative;
  transition: transform 0.3s linear;
  z-index: 1;
}
.cd-contacto__form-submit .cd-contacto__form-wpp svg {
  display: block;
  flex-shrink: 0;
  width: 26px;
  height: 27px;
}
.cd-contacto__form-submit .cd-contacto__form-wpp:hover svg {
  transform: rotateY(180deg);
  transition: transform 0.3s linear;
}

.cd-contacto__card {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  min-height: 905px;
}
@media (max-width: 900px) {
  .cd-contacto__card {
    flex-direction: column;
    border-radius: 24px;
    min-height: unset;
  }
}

.cd-contacto__media {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
}
@media (max-width: 900px) {
  .cd-contacto__media {
    flex: 0 0 300px;
    border-radius: 24px;
  }
}

.cd-contacto__media-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cd-contacto__media-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: #e0e0e0;
}

.cd-contacto__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 60px 40px;
}
@media (max-width: 900px) {
  .cd-contacto__right {
    padding: 40px 24px;
  }
}

.cd-contacto__form-title {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1;
  color: #000;
  max-width: 660px;
}

.wp-block-campus-dual-img-txt-whatsapp {
  padding: 60px 0;
}

.wp-block-campus-dual-img-txt-whatsapp .cd-img-txt-whatsapp__inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.wp-block-campus-dual-img-txt-whatsapp .cd-img-txt-whatsapp__media {
  position: relative;
  flex: 0 0 auto;
  width: 52%;
  max-width: 672px;
  border-radius: 50px;
  overflow: hidden;
  margin: 0;
}
.wp-block-campus-dual-img-txt-whatsapp .cd-img-txt-whatsapp__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 82, 20, 0.2) 0%, rgba(76, 85, 241, 0.2) 100%);
  pointer-events: none;
}

.wp-block-campus-dual-img-txt-whatsapp .cd-img-txt-whatsapp__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 672/782;
}

.wp-block-campus-dual-img-txt-whatsapp .cd-img-txt-whatsapp__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 20px;
}

.wp-block-campus-dual-img-txt-whatsapp .cd-img-txt-whatsapp__text {
  font-family: var(--cd-font-body);
  font-size: var(--cd-h7-size);
  color: var(--cd-text);
  line-height: 1.6;
}
.wp-block-campus-dual-img-txt-whatsapp .cd-img-txt-whatsapp__text p {
  margin: 0 0 24px;
}
.wp-block-campus-dual-img-txt-whatsapp .cd-img-txt-whatsapp__text p:last-child {
  margin-bottom: 0;
}
.wp-block-campus-dual-img-txt-whatsapp .cd-img-txt-whatsapp__text strong {
  display: block;
  font-family: var(--cd-font-heading);
  font-size: var(--cd-h5-size);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--cd-text);
}

.wp-block-campus-dual-img-txt-whatsapp .cd-img-txt-whatsapp__ctas {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.wp-block-campus-dual-img-txt-whatsapp .cd-img-txt-whatsapp__btn {
  flex-shrink: 0;
}

.wp-block-campus-dual-img-txt-whatsapp .cd-img-txt-whatsapp__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 51px;
  background: linear-gradient(90deg, var(--cd-orange) 0%, var(--cd-blue) 100%);
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.wp-block-campus-dual-img-txt-whatsapp .cd-img-txt-whatsapp__whatsapp:hover {
  opacity: 0.85;
}
.wp-block-campus-dual-img-txt-whatsapp .cd-img-txt-whatsapp__whatsapp svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 991px) {
  .wp-block-campus-dual-img-txt-whatsapp .cd-img-txt-whatsapp__inner {
    gap: 30px;
  }
  .wp-block-campus-dual-img-txt-whatsapp .cd-img-txt-whatsapp__media {
    width: 48%;
  }
}
@media (max-width: 767px) {
  .wp-block-campus-dual-img-txt-whatsapp {
    padding: 40px 0;
  }
  .wp-block-campus-dual-img-txt-whatsapp .cd-img-txt-whatsapp__inner {
    flex-direction: column;
  }
  .wp-block-campus-dual-img-txt-whatsapp .cd-img-txt-whatsapp__media {
    width: 100%;
    max-width: none;
  }
  .wp-block-campus-dual-img-txt-whatsapp .cd-img-txt-whatsapp__img {
    aspect-ratio: 4/3;
  }
  .wp-block-campus-dual-img-txt-whatsapp .cd-img-txt-whatsapp__content {
    padding-top: 0;
    gap: 28px;
  }
}
.wp-block-group .wp-block-campus-dual-medios-textos-03 {
  padding: 0;
  margin: 0;
  max-width: 100%;
  padding: 7.5rem 7rem;
}
.wp-block-group .wp-block-campus-dual-medios-textos-03 .cd-max-1 {
  padding: 0;
  margin: 0;
  max-width: 100%;
}
@media (max-width: 767px) {
  .wp-block-group .wp-block-campus-dual-medios-textos-03 {
    padding: 80px 1.25rem 50px;
  }
}
@media (max-width: 1279px) {
  .wp-block-group .wp-block-campus-dual-medios-textos-03 {
    padding: 60px 1.25rem 40px;
  }
}

.wp-block-campus-dual-medios-textos-03 {
  padding: 80px 0;
}
@media (max-width: 991px) {
  .wp-block-campus-dual-medios-textos-03 {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .wp-block-campus-dual-medios-textos-03 {
    padding: 40px 0;
  }
}

.cd-medios-textos-03__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 75px;
}
@media (max-width: 991px) {
  .cd-medios-textos-03__inner {
    gap: 48px;
  }
}
@media (max-width: 767px) {
  .cd-medios-textos-03__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.cd-medios-textos-03__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.cd-medios-textos-03__title {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: #000;
}

.cd-medios-textos-03__text p {
  margin: 0 0 1em;
  font-family: var(--cd-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--cd-text-soft);
}
.cd-medios-textos-03__text p:last-child {
  margin-bottom: 0;
}

.cd-medios-textos-03__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cd-medios-textos-03__list-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cd-medios-textos-03__bullet {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.1543 12.4961V14.8525L2.51758 14.8525L2.51758 12.4961L22.1543 12.4961Z' fill='%23FF5214'/%3E%3Cpath d='M15.6275 22.3992L14.0399 20.6549L21.7797 13.631L13.9992 5.86527L15.6683 4.19922L25.1992 13.713L15.6275 22.3992Z' fill='%23FF5214'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
}

.cd-medios-textos-03__item-text {
  font-family: var(--cd-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--cd-text-soft);
}
.cd-medios-textos-03__item-text strong {
  font-weight: 700;
  color: var(--cd-text-soft);
}

.cd-medios-textos-03__matricula {
  margin: 0;
  font-family: var(--cd-font-body);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: var(--cd-orange);
  margin-bottom: auto;
}

.cd-medios-textos-03__cta {
  margin: 0;
  font-family: var(--cd-font-body);
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: var(--cd-orange);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.cd-medios-textos-03__cta:hover {
  text-decoration: underline;
}

.cd-medios-textos-03__inner--img-izquierda .cd-medios-textos-03__media {
  order: -1;
}

.cd-medios-textos-03__ctas {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.cd-medios-textos-03__btn {
  flex-shrink: 0;
}

.cd-medios-textos-03__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 51px;
  background: linear-gradient(90deg, var(--cd-orange) 0%, var(--cd-blue) 100%);
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.cd-medios-textos-03__whatsapp:hover {
  opacity: 0.85;
}
.cd-medios-textos-03__whatsapp svg {
  width: 24px;
  height: 24px;
}

.cd-medios-textos-03__media {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 100%;
  width: 100%;
}
.cd-medios-textos-03__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 82, 20, 0.2) 0%, rgba(76, 85, 241, 0.2) 75%);
  pointer-events: none;
}
@media (max-width: 767px) {
  .cd-medios-textos-03__media {
    max-width: none;
  }
}

.cd-medios-textos-03__img,
.cd-medios-textos-03__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cd-medios-textos-03__img-placeholder {
  width: 100%;
  aspect-ratio: 558/718;
  background: linear-gradient(180deg, rgba(255, 82, 20, 0.2) 0%, rgba(76, 85, 241, 0.2) 75%);
}

/* =============================================
   cd-datos-master
   ============================================= */
.wp-block-campus-dual-datos-master {
  padding: 60px 0;
}

.wp-block-campus-dual-datos-master .cd-datos-master__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 410px;
  align-items: stretch;
  gap: 24px;
}

.wp-block-campus-dual-datos-master .cd-datos-master__card {
  background: var(--cd-white, #ffffff);
  border: 3px solid var(--cd-orange, #ff5214);
  border-radius: 32px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wp-block-campus-dual-datos-master .cd-datos-master__vector-col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 24px;
  pointer-events: none;
}

.wp-block-campus-dual-datos-master .cd-datos-master__vector {
  width: 410px;
  max-width: 100%;
  pointer-events: none;
}

.wp-block-campus-dual-datos-master .cd-datos-master__vector svg {
  display: block;
  width: 100%;
  height: auto;
}

.wp-block-campus-dual-datos-master .cd-datos-master__card-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.wp-block-campus-dual-datos-master .cd-datos-master__icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex: 0 0 auto;
}

.wp-block-campus-dual-datos-master .cd-datos-master__icon svg {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.wp-block-campus-dual-datos-master .cd-datos-master__card-title {
  font-family: var(--cd-font-body, "Roboto", sans-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--cd-text, #212121);
  line-height: 1.2;
  margin: 0;
}

.wp-block-campus-dual-datos-master .cd-datos-master__card-body {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.wp-block-campus-dual-datos-master .cd-datos-master__card-body--single-col {
  flex-direction: column;
  gap: 20px;
}

.wp-block-campus-dual-datos-master .cd-datos-master__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 0;
}

.wp-block-campus-dual-datos-master .cd-datos-master__item {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  color: var(--cd-text, #212121);
}

.wp-block-campus-dual-datos-master .cd-datos-master__label {
  font-weight: 400;
}

.wp-block-campus-dual-datos-master .cd-datos-master__value {
  font-weight: 500;
}

@media (max-width: 1279px) {
  .wp-block-campus-dual-datos-master .cd-datos-master__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .wp-block-campus-dual-datos-master .cd-datos-master__vector-col {
    display: none;
  }
}
@media (max-width: 767px) {
  .wp-block-campus-dual-datos-master {
    padding: 40px 0;
  }
  .wp-block-campus-dual-datos-master .cd-datos-master__grid {
    grid-template-columns: 1fr;
  }
  .wp-block-campus-dual-datos-master .cd-datos-master__card-body {
    flex-direction: column;
    gap: 20px;
  }
}
.wp-block-campus-dual-footer {
  padding-top: 40px;
}

.cd-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .cd-footer__inner {
    flex-direction: column;
  }
}

.cd-footer__columns {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .cd-footer__columns {
    gap: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .cd-footer__columns {
    gap: 3.75rem;
  }
}
@media (max-width: 767px) {
  .cd-footer__columns {
    grid-template-columns: 1fr;
  }
}

.cd-footer__column p {
  margin: 0 0 12px;
  color: var(--cd-text-soft);
}

.cd-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cd-footer__menu li {
  margin: 0 0 12px;
}
.cd-footer__menu a {
  color: var(--cd-black);
  text-decoration: none;
  transition: color 0.2s ease;
}
.cd-footer__menu a:hover {
  color: var(--cd-blue);
}

.cd-footer__logo-link {
  display: inline-block;
}

.cd-footer__logo img {
  display: block;
  max-height: 6.25rem;
  width: auto;
}

.cd-footer__bottom {
  gap: 20px;
  padding: 8px 0;
  background: var(--cd-orange);
  color: var(--cd-white);
}
.cd-footer__bottom p {
  margin: 0;
}

.cd-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.cd-footer__bottom-inner > * {
  color: var(--cd-white);
  text-decoration: none;
  font-size: 1rem;
}
.cd-footer__bottom-inner > a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .cd-footer__bottom-inner {
    flex-direction: column;
  }
}

.cd-footer__scroll-up {
  color: var(--cd-white);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.cd-footer__scroll-up:hover {
  opacity: 0.9;
}

html :where(.wp-block) {
  max-width: 100%;
}

.wp-block-group.is-style-grupo-con-borde .wp-block-group__inner-container {
  border-radius: 32px;
  border: 3px solid var(--Aerospace-Orange, #FF5214);
  background: var(--White---Background, #FFF);
}
@media (max-width: 767px) {
  .wp-block-group.is-style-grupo-con-borde .wp-block-group__inner-container {
    border-radius: 0;
    border: 0;
  }
}

.wp-block-list.is-style-lista-flechas {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wp-block-list.is-style-lista-flechas li {
  position: relative;
  padding-left: 44px;
  min-height: 28px;
  font-family: var(--cd-font-body);
}
.wp-block-list.is-style-lista-flechas li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.1543 12.4961V14.8525L2.51758 14.8525L2.51758 12.4961L22.1543 12.4961Z' fill='%23FF5214'/%3E%3Cpath d='M15.6275 22.3992L14.0399 20.6549L21.7797 13.631L13.9992 5.86527L15.6683 4.19922L25.1992 13.713L15.6275 22.3992Z' fill='%23FF5214'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.wp-block-campus-dual-perfil-ideal {
  padding: 60px 0;
}

.cd-perfil-ideal__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cd-perfil-ideal__titulo {
  font-family: var(--cd-font-heading);
  font-size: 72px;
  font-weight: 700;
  line-height: 80px;
  color: #000;
  margin: 0;
}

.cd-perfil-ideal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.cd-perfil-ideal__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 25px;
  background: var(--cd-white, #fff);
  border-radius: 32px;
  border: 3px solid var(--cd-orange, #ff5214);
}

.cd-perfil-ideal__icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cd-perfil-ideal__icon svg {
  width: 40px;
  height: 40px;
}

.cd-perfil-ideal__subtitulo {
  font-family: var(--cd-font-body);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  color: #000;
}

.cd-perfil-ideal__texto {
  font-family: var(--cd-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  color: var(--cd-text-soft, rgba(33, 33, 33, 0.74));
}
.cd-perfil-ideal__texto strong {
  font-weight: 700;
}

@media (max-width: 1023px) {
  .cd-perfil-ideal__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cd-perfil-ideal__titulo {
    font-size: 52px;
    line-height: 60px;
  }
}
@media (max-width: 767px) {
  .cd-perfil-ideal__grid {
    grid-template-columns: 1fr;
  }
  .cd-perfil-ideal__titulo {
    font-size: 40px;
    line-height: 48px;
  }
}
.wp-block-campus-dual-vuestras-experiencias {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .wp-block-campus-dual-vuestras-experiencias {
    padding: 60px 0;
  }
}

.cd-vuestras-experiencias__section {
  position: relative;
  padding: 120px 40px;
  border-radius: 50px;
  background-color: #222;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cd-vuestras-experiencias__section {
    padding: 80px 32px;
    border-radius: 32px;
  }
}
@media (max-width: 767px) {
  .cd-vuestras-experiencias__section {
    padding: 60px 24px;
    border-radius: 24px;
  }
}

.cd-vuestras-experiencias__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
  z-index: 0;
}

.cd-vuestras-experiencias__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 767px) {
  .cd-vuestras-experiencias__inner {
    gap: 40px;
  }
}

.cd-vuestras-experiencias__titulo {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

.cd-vuestras-experiencias__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cd-vuestras-experiencias__grid {
    grid-template-columns: 1fr;
  }
}

.cd-vuestras-experiencias__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  border: 3px solid var(--cd-orange, #ff5214);
  backdrop-filter: blur(6px);
}
@media (max-width: 767px) {
  .cd-vuestras-experiencias__card {
    padding: 28px;
    gap: 32px;
  }
}

.cd-vuestras-experiencias__quote {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: 28px;
  font-weight: 400;
  line-height: 34px;
  color: #fff;
}
@media (max-width: 767px) {
  .cd-vuestras-experiencias__quote {
    font-size: 22px;
    line-height: 28px;
  }
}

.cd-vuestras-experiencias__footer {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cd-vuestras-experiencias__nombre {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: 28px;
  font-weight: 400;
  line-height: 34px;
  color: #fff;
}
@media (max-width: 767px) {
  .cd-vuestras-experiencias__nombre {
    font-size: 20px;
    line-height: 26px;
  }
}

.cd-vuestras-experiencias__cargo {
  margin: 0;
  font-family: var(--cd-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 767px) {
  .cd-vuestras-experiencias__cargo {
    font-size: 16px;
    line-height: 22px;
  }
}

.wp-block-campus-dual-matricula-financiacion {
  padding: 0 0 120px;
}
@media (max-width: 767px) {
  .wp-block-campus-dual-matricula-financiacion {
    padding: 0 0 80px;
  }
}

.cd-matricula-financiacion__inner {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media (max-width: 767px) {
  .cd-matricula-financiacion__inner {
    gap: 60px;
  }
}

.cd-matricula-financiacion__titulo {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: #000;
}

.cd-matricula-financiacion__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .cd-matricula-financiacion__cards {
    grid-template-columns: 1fr;
  }
}

.cd-matricula-financiacion__card {
  display: flex;
  flex-direction: column;
  gap: 70px;
  padding: 40px 32px;
  border-radius: 28px;
}
@media (max-width: 991px) {
  .cd-matricula-financiacion__card {
    gap: 48px;
    padding: 32px 24px;
  }
}
.cd-matricula-financiacion__card--blue {
  background: var(--cd-blue, #4c55f1);
}
.cd-matricula-financiacion__card--outline {
  border: 1px solid var(--cd-blue, #4c55f1);
}

.cd-matricula-financiacion__card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cd-matricula-financiacion__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  width: 32px;
  height: 32px;
}
.cd-matricula-financiacion__icon svg {
  width: 32px;
  height: 32px;
}

.cd-matricula-financiacion__card-label {
  font-family: var(--cd-font-heading);
  font-size: 28px;
  font-weight: 400;
  line-height: 34px;
}
.cd-matricula-financiacion__card--blue .cd-matricula-financiacion__card-label {
  color: rgba(255, 255, 255, 0.74);
}
.cd-matricula-financiacion__card--outline .cd-matricula-financiacion__card-label {
  color: var(--cd-blue, #4c55f1);
}
@media (max-width: 991px) {
  .cd-matricula-financiacion__card-label {
    font-size: 22px;
    line-height: 28px;
  }
}

.cd-matricula-financiacion__card-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 600px) {
  .cd-matricula-financiacion__card-body {
    flex-direction: column;
  }
}

.cd-matricula-financiacion__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cd-matricula-financiacion__price {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: 28px;
  line-height: 38px;
  color: #fff;
}
@media (max-width: 991px) {
  .cd-matricula-financiacion__price {
    font-size: 22px;
    line-height: 30px;
  }
}

.cd-matricula-financiacion__price-label {
  font-weight: 600;
}

.cd-matricula-financiacion__price-amount {
  font-weight: 900;
}

.cd-matricula-financiacion__col-titulo {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: 28px;
  font-weight: 600;
  line-height: 38px;
  color: var(--cd-blue, #4c55f1);
}
@media (max-width: 991px) {
  .cd-matricula-financiacion__col-titulo {
    font-size: 22px;
    line-height: 30px;
  }
}

.cd-matricula-financiacion__text {
  margin: 0;
  font-family: var(--cd-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}
.cd-matricula-financiacion__card--blue .cd-matricula-financiacion__text {
  color: #fff;
}
.cd-matricula-financiacion__card--blue .cd-matricula-financiacion__text strong {
  font-weight: 700;
}
.cd-matricula-financiacion__card--outline .cd-matricula-financiacion__text {
  color: var(--cd-text-soft, rgba(33, 33, 33, 0.74));
}
.cd-matricula-financiacion__card--outline .cd-matricula-financiacion__text strong {
  font-weight: 700;
}
@media (max-width: 991px) {
  .cd-matricula-financiacion__text {
    font-size: 16px;
    line-height: 24px;
  }
}

.wp-block-campus-dual-medio-txt-requisitos {
  padding: 80px 0;
}
@media (max-width: 991px) {
  .wp-block-campus-dual-medio-txt-requisitos {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .wp-block-campus-dual-medio-txt-requisitos {
    padding: 40px 0;
  }
}

.cd-medio-txt-requisitos__inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}
@media (max-width: 991px) {
  .cd-medio-txt-requisitos__inner {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .cd-medio-txt-requisitos__inner {
    flex-direction: column;
    gap: 40px;
  }
}

.cd-medio-txt-requisitos__inner--img-izquierda {
  flex-direction: row-reverse;
}

.cd-medio-txt-requisitos__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 767px) {
  .cd-medio-txt-requisitos__content {
    width: 100%;
  }
}

.cd-medio-txt-requisitos__titulo {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: #000;
}

.cd-medio-txt-requisitos__grupos {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cd-medio-txt-requisitos__grupo {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cd-medio-txt-requisitos__grupo-label {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: 28px;
  font-weight: 400;
  line-height: 34px;
  color: var(--cd-text);
}

.cd-medio-txt-requisitos__lista {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cd-medio-txt-requisitos__item {
  position: relative;
  padding-left: 44px;
  min-height: 28px;
  font-family: var(--cd-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--cd-text-soft, rgba(33, 33, 33, 0.74));
}
.cd-medio-txt-requisitos__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.1543 12.4961V14.8525L2.51758 14.8525L2.51758 12.4961L22.1543 12.4961Z' fill='%23000000'/%3E%3Cpath d='M15.6275 22.3992L14.0399 20.6549L21.7797 13.631L13.9992 5.86527L15.6683 4.19922L25.1992 13.713L15.6275 22.3992Z' fill='%23000'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .cd-medio-txt-requisitos__item {
    font-size: 18px;
    line-height: 26px;
  }
}

.cd-medio-txt-requisitos__ctas {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.cd-medio-txt-requisitos__btn {
  flex-shrink: 0;
}

.cd-medio-txt-requisitos__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 51px;
  background: linear-gradient(90deg, #ff5214 -389.7%, #4c55f1 99.99%);
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.cd-medio-txt-requisitos__whatsapp:hover {
  opacity: 0.85;
}
.cd-medio-txt-requisitos__whatsapp svg {
  width: 24px;
  height: 24px;
}

.cd-medio-txt-requisitos__media {
  flex: 0 0 auto;
  width: 47%;
  max-width: 672px;
  margin: 0;
  border-radius: 50px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cd-medio-txt-requisitos__media {
    width: 48%;
    border-radius: 32px;
  }
}
@media (max-width: 767px) {
  .cd-medio-txt-requisitos__media {
    width: 100%;
    max-width: none;
    border-radius: 24px;
  }
}

.cd-medio-txt-requisitos__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 672/782;
}

.cd-medio-txt-requisitos__img-placeholder {
  width: 100%;
  aspect-ratio: 672/782;
  background: linear-gradient(180deg, rgba(255, 82, 20, 0.2) 0%, rgba(76, 85, 241, 0.2) 75%);
}

.wp-block-campus-dual-que-aprenderas {
  padding: 60px 0;
}
@media (max-width: 991px) {
  .wp-block-campus-dual-que-aprenderas {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .wp-block-campus-dual-que-aprenderas {
    padding: 24px 0;
  }
}

.cd-que-aprenderas__card {
  --cd-qa-image: none;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  padding: 120px 65px 120px 115px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), var(--cd-qa-image);
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
}
@media (max-width: 1200px) {
  .cd-que-aprenderas__card {
    padding: 80px 60px;
  }
}
@media (max-width: 991px) {
  .cd-que-aprenderas__card {
    padding: 60px 40px;
    border-radius: 32px;
  }
}
@media (max-width: 767px) {
  .cd-que-aprenderas__card {
    padding: 48px 24px;
    border-radius: 24px;
  }
}

.cd-que-aprenderas__title {
  margin: 0 0 60px;
  color: var(--cd-white);
  font-family: var(--cd-font-heading);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.11;
}
@media (max-width: 991px) {
  .cd-que-aprenderas__title {
    margin-bottom: 40px;
    font-size: clamp(36px, 7vw, 52px);
  }
}
@media (max-width: 767px) {
  .cd-que-aprenderas__title {
    margin-bottom: 32px;
  }
}

.cd-que-aprenderas__items {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
  padding-top: 40px;
}
@media (max-width: 991px) {
  .cd-que-aprenderas__items {
    align-items: stretch;
    padding-top: 0;
  }
}

.cd-que-aprenderas__item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  width: min(675px, 100%);
  transition: transform 0.25s ease;
  cursor: default;
}
.cd-que-aprenderas__item:hover {
  transform: translateX(10px);
}
.cd-que-aprenderas__item:hover .cd-que-aprenderas__item-titulo {
  font-weight: 700;
}
.cd-que-aprenderas__item:hover .cd-que-aprenderas__marker {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31.4393 18.2969V21.7473L2.68555 21.7473L2.68555 18.2969L31.4393 18.2969Z' fill='%23FF5214'/%3E%3Cpath d='M21.8842 32.8004L19.5595 30.2463L30.8927 19.9612L19.4999 8.58997L21.9439 6.15039L35.8999 20.0814L21.8842 32.8004Z' fill='%23FF5214'/%3E%3C/svg%3E");
}
@media (max-width: 991px) {
  .cd-que-aprenderas__item {
    width: 100%;
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .cd-que-aprenderas__item {
    gap: 16px;
  }
}

.cd-que-aprenderas__marker {
  flex-shrink: 0;
  display: block;
  width: 40px;
  height: 40px;
  margin-top: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31.4393 18.2969V21.7473L2.68555 21.7473L2.68555 18.2969L31.4393 18.2969Z' fill='white'/%3E%3Cpath d='M21.8842 32.8004L19.5595 30.2463L30.8927 19.9612L19.4999 8.58997L21.9439 6.15039L35.8999 20.0814L21.8842 32.8004Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.cd-que-aprenderas__item-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.cd-que-aprenderas__item-titulo {
  margin: 0;
  color: var(--cd-white);
  font-family: var(--cd-font-heading);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1;
}
@media (max-width: 991px) {
  .cd-que-aprenderas__item-titulo {
    font-size: clamp(28px, 6vw, 44px);
  }
}
@media (max-width: 767px) {
  .cd-que-aprenderas__item-titulo {
    font-size: clamp(26px, 7vw, 36px);
  }
}

.cd-que-aprenderas__item-texto {
  margin: 0;
  color: var(--cd-white);
  font-family: var(--cd-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 767px) {
  .cd-que-aprenderas__item-texto {
    font-size: 17px;
    line-height: 26px;
  }
}

.wp-block-campus-dual-herramientas {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .wp-block-campus-dual-herramientas {
    padding: 40px 0;
  }
}

.cd-herramientas__card {
  --cd-h-image: none;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  padding: 60px 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), var(--cd-h-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #101010;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
@media (max-width: 767px) {
  .cd-herramientas__card {
    padding: 40px 0;
    border-radius: 20px;
    gap: 40px;
  }
}

.cd-herramientas__title {
  width: 100%;
  margin: 0;
  padding: 0 64px 0 115px;
  font-family: var(--cd-font-heading);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.11;
  color: var(--cd-white);
}
@media (max-width: 991px) {
  .cd-herramientas__title {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .cd-herramientas__title {
    padding: 0 24px;
    font-size: clamp(32px, 8vw, 48px);
  }
}

.cd-herramientas__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1130px;
  width: 100%;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .cd-herramientas__grid {
    padding: 0 24px;
    gap: 16px;
  }
}

.cd-herramientas__item {
  flex: 0 0 calc(33.333% - 13.34px);
  max-width: calc(33.333% - 13.34px);
  padding: 25px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  backdrop-filter: blur(4px);
}
@media (max-width: 991px) {
  .cd-herramientas__item {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
@media (max-width: 767px) {
  .cd-herramientas__item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.cd-herramientas__icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 47px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cd-herramientas__icon-img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.cd-herramientas__icon-placeholder {
  display: block;
  width: 28px;
  height: 28px;
  background: linear-gradient(180deg, var(--cd-orange) 0%, var(--cd-blue) 100%);
  border-radius: 4px;
}

.cd-herramientas__nombre {
  margin: 0;
  font-family: var(--cd-font-body);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--cd-text);
}

.cd-herramientas__texto {
  margin: 0;
  font-family: var(--cd-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(33, 33, 33, 0.74);
}
@media (max-width: 767px) {
  .cd-herramientas__texto {
    font-size: 18px;
    line-height: 26px;
  }
}

.wp-block-campus-dual-contenidos {
  padding-top: 60px;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .wp-block-campus-dual-contenidos {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.cd-contenidos__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cd-contenidos__header {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 0 40px;
}

.cd-contenidos__title {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: var(--cd-h1-size);
  font-weight: 700;
  line-height: var(--cd-h1-line);
  color: var(--cd-text);
}

.cd-contenidos__subtitle {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: var(--cd-h6-size);
  font-weight: 400;
  line-height: var(--cd-h6-line);
  color: var(--cd-text-soft);
  max-width: 900px;
}

.cd-contenidos__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 40px;
}

.cd-contenidos__item {
  border-bottom: 3px solid var(--cd-orange);
  padding-bottom: 20px;
}
.cd-contenidos__item::marker, .cd-contenidos__item > summary::marker, .cd-contenidos__item > summary::-webkit-details-marker {
  display: none;
}

.cd-contenidos__item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 0;
  cursor: pointer;
  list-style: none;
}
.cd-contenidos__item-header:focus-visible {
  outline: 2px solid var(--cd-orange);
  outline-offset: 2px;
  border-radius: 4px;
}

.cd-contenidos__item-text {
  font-family: var(--cd-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #000;
  max-width: 720px;
}

.cd-contenidos__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  transform: rotate(-90deg);
  transition: transform 0.25s ease;
}
.cd-contenidos__arrow svg {
  display: block;
}

.cd-contenidos__item[open] .cd-contenidos__arrow {
  transform: rotate(90deg);
}

.cd-contenidos__item-body {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cd-contenidos__item-desc {
  margin: 0;
  font-family: var(--cd-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(33, 33, 33, 0.74);
  max-width: 900px;
}

.cd-contenidos__item-tec {
  margin: 0;
  margin-top: 60px;
  padding-bottom: 30px;
  font-family: var(--cd-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  color: #4c55f1;
}
.cd-contenidos__item-tec strong {
  font-weight: 700;
}

@media (max-width: 767px) {
  .cd-contenidos__header,
  .cd-contenidos__list {
    padding: 0 20px;
  }
  .cd-contenidos__title {
    font-size: 40px;
    line-height: 48px;
  }
  .cd-contenidos__item-text,
  .cd-contenidos__item-desc,
  .cd-contenidos__item-tec {
    font-size: 16px;
    line-height: 24px;
  }
  .cd-contenidos__item-tec {
    margin-top: 40px;
  }
}
.wp-block-campus-dual-metodo-dual {
  overflow: hidden;
}

.cd-metodo-dual__inner {
  --md-left: 232px;
  --md-gap: 1.25rem;
  display: flex;
  flex-direction: column;
  padding: 0 40px;
}

.cd-metodo-dual__title {
  margin: 0;
  padding-top: 24px;
  padding-bottom: 110px;
  font-family: var(--cd-font-heading);
  font-size: var(--cd-h5-size);
  font-weight: 600;
  line-height: var(--cd-h5-line);
  color: var(--cd-text);
}

.cd-metodo-dual__timeline {
  display: flex;
  flex-direction: column;
  gap: 21px;
  margin-bottom: 44px;
}

.cd-metodo-dual__timeline-row {
  display: flex;
  align-items: center;
  gap: var(--md-gap);
}

.cd-metodo-dual__timeline-label {
  flex: 0 0 var(--md-left);
  width: var(--md-left);
  font-family: var(--cd-font-body);
  font-size: var(--cd-h7-size);
  font-weight: 400;
  line-height: var(--cd-h7-line);
  color: var(--cd-text);
  opacity: 0.74;
  text-align: center;
}

.cd-metodo-dual__timeline-months {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.cd-metodo-dual__month {
  flex: 1;
  font-family: var(--cd-font-body);
  font-size: var(--cd-h7-size);
  font-weight: 400;
  line-height: var(--cd-h7-line);
  color: var(--cd-text);
  opacity: 0.74;
  text-align: center;
}

.cd-metodo-dual__bars-wrap {
  display: flex;
  justify-content: flex-end;
}

.cd-metodo-dual__timeline-bars {
  width: calc(100% - var(--md-left) - var(--md-gap));
  display: flex;
  align-items: center;
  gap: 3.6px;
}

.cd-metodo-dual__bar {
  flex: 1;
  height: 4.5px;
  border-radius: 2px;
}
.cd-metodo-dual__bar--tecnica {
  background: var(--cd-blue);
}
.cd-metodo-dual__bar--practicas {
  background: var(--cd-orange);
}

.cd-metodo-dual__row {
  display: flex;
  align-items: center;
  gap: var(--md-gap);
}

.cd-metodo-dual__row--tecnica {
  margin-bottom: 86px;
}

.cd-metodo-dual__row--practicas {
  margin-bottom: 40px;
}

.cd-metodo-dual__row-left {
  flex: 0 0 var(--md-left);
  display: flex;
  align-items: center;
  gap: 20px;
}

.cd-metodo-dual__row-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.cd-metodo-dual__row--tecnica .cd-metodo-dual__row-right .cd-metodo-dual__desc {
  flex: 3;
}
.cd-metodo-dual__row--tecnica .cd-metodo-dual__row-right::after {
  content: "";
  flex: 6;
  display: block;
}

.cd-metodo-dual__row--practicas .cd-metodo-dual__row-right::before {
  content: "";
  flex: 3;
  display: block;
}
.cd-metodo-dual__row--practicas .cd-metodo-dual__row-right .cd-metodo-dual__desc {
  flex: 6;
}

.cd-metodo-dual__period {
  display: none;
}

.cd-metodo-dual__circle {
  width: 48px;
  height: 46px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cd-metodo-dual__circle--blue {
  background: #c8cbff;
}
.cd-metodo-dual__circle--orange {
  background: #ffcfbe;
}
.cd-metodo-dual__circle svg {
  display: block;
  flex-shrink: 0;
}

.cd-metodo-dual__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 54px;
  font-family: var(--cd-font-body);
  font-size: var(--cd-h7-size);
  font-weight: 400;
  line-height: var(--cd-h7-line);
  color: var(--cd-white);
  min-width: 11.0625rem;
  white-space: nowrap;
}
.cd-metodo-dual__badge--blue {
  background: var(--cd-blue);
}
.cd-metodo-dual__badge--orange {
  background: var(--cd-orange);
}

.cd-metodo-dual__desc {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 54px;
  font-family: var(--cd-font-body);
  font-size: var(--cd-h7-size);
  font-weight: 400;
  line-height: var(--cd-h7-line);
  color: var(--cd-text);
  text-align: center;
}
.cd-metodo-dual__desc--blue {
  background: #c8cbff;
}
.cd-metodo-dual__desc--orange {
  background: #ffcfbe;
}

.cd-metodo-dual__tag-wrap {
  margin-bottom: 20px;
}

.cd-metodo-dual__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 16px;
  border-radius: 54px;
  background: #f2f0f3;
  font-family: var(--cd-font-body);
  font-size: var(--cd-h7-size);
  font-weight: 400;
  line-height: var(--cd-h7-line);
  color: var(--cd-text);
}

.cd-metodo-dual__horarios {
  display: flex;
  flex-direction: column;
  padding-bottom: 24px;
}

.cd-metodo-dual__horario {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--cd-font-body);
  font-size: var(--cd-h7-size);
  font-weight: 400;
  line-height: 48px;
  color: var(--cd-text);
}

.cd-metodo-dual__dot {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  border-radius: 9999px;
  background: linear-gradient(180deg, #ff5214 0%, #4c55f1 100%);
  display: inline-block;
}

@media (max-width: 900px) {
  .cd-metodo-dual__inner {
    padding: 0 20px;
  }
  .cd-metodo-dual__title {
    padding-bottom: 40px;
  }
  .cd-metodo-dual__timeline {
    margin-bottom: 24px;
  }
  .cd-metodo-dual__timeline-label {
    width: auto;
    flex: 0 0 auto;
    min-width: 80px;
  }
  .cd-metodo-dual__timeline-months {
    display: none;
  }
  .cd-metodo-dual__bars-wrap {
    justify-content: flex-start;
  }
  .cd-metodo-dual__timeline-bars {
    width: 100%;
  }
  .cd-metodo-dual__row {
    flex-wrap: wrap;
    gap: 12px;
  }
  .cd-metodo-dual__row--tecnica {
    margin-bottom: 24px;
  }
  .cd-metodo-dual__row-left {
    flex: 0 0 auto;
    width: auto;
  }
  .cd-metodo-dual__row-right {
    flex: 1 1 100%;
  }
  .cd-metodo-dual__row--tecnica .cd-metodo-dual__row-right::before, .cd-metodo-dual__row--tecnica .cd-metodo-dual__row-right::after,
  .cd-metodo-dual__row--practicas .cd-metodo-dual__row-right::before,
  .cd-metodo-dual__row--practicas .cd-metodo-dual__row-right::after {
    display: none;
  }
  .cd-metodo-dual__row--tecnica .cd-metodo-dual__row-right .cd-metodo-dual__desc,
  .cd-metodo-dual__row--practicas .cd-metodo-dual__row-right .cd-metodo-dual__desc {
    flex: 1;
  }
}
@media (max-width: 520px) {
  .cd-metodo-dual__inner {
    padding: 40px 0;
    gap: 20px;
  }
  .cd-metodo-dual__timeline {
    display: none;
  }
  .cd-metodo-dual__title {
    padding-bottom: 20px;
  }
  .cd-metodo-dual__row {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .cd-metodo-dual__row--tecnica {
    margin-bottom: 20px;
  }
  .cd-metodo-dual__row--practicas {
    margin-bottom: 20px;
  }
  .cd-metodo-dual__row-left {
    gap: 12px;
  }
  .cd-metodo-dual__row-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .cd-metodo-dual__row-right::before, .cd-metodo-dual__row-right::after {
    display: none;
  }
  .cd-metodo-dual__row-right .cd-metodo-dual__desc {
    flex: 1;
  }
  .cd-metodo-dual__period {
    display: inline;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    font-family: var(--cd-font-body);
  }
  .cd-metodo-dual__period--tecnica {
    color: var(--cd-blue);
  }
  .cd-metodo-dual__period--practicas {
    color: var(--cd-orange);
  }
  .cd-metodo-dual__desc {
    padding: 0;
    background: transparent;
    border-radius: 0;
    font-size: 14px;
    line-height: 20px;
    justify-content: flex-start;
    text-align: left;
  }
  .cd-metodo-dual__desc--blue {
    color: var(--cd-blue);
  }
  .cd-metodo-dual__desc--orange {
    color: var(--cd-orange);
  }
  .cd-metodo-dual__badge {
    width: 100%;
  }
  .cd-metodo-dual__badge--blue {
    padding: 10px 40px;
  }
  .cd-metodo-dual__badge--orange {
    padding: 10px 16px;
  }
  .cd-metodo-dual__tag {
    font-size: 16px;
    line-height: 22px;
  }
  .cd-metodo-dual__horario {
    font-size: 16px;
    line-height: 22px;
    color: rgba(33, 33, 33, 0.74);
  }
}
.wp-block-campus-dual-video-testimonio {
  padding-top: 0;
  padding-bottom: 0;
}

.cd-video-testimonio__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding: 60px 0;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .cd-video-testimonio__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 40px 0 80px;
    gap: 40px;
  }
}

.cd-video-testimonio__media {
  position: relative;
  margin: 0;
  flex: 0 0 auto;
  width: 671px;
  height: 782px;
  border-radius: 50px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .cd-video-testimonio__media {
    width: 100%;
    max-width: 400px;
    height: 480px;
    margin: 0 auto;
    border-radius: 30px;
  }
}

.cd-video-testimonio__video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.cd-video-testimonio__video-wrap iframe,
.cd-video-testimonio__video-wrap .cd-video-testimonio__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

.cd-video-testimonio__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cd-video-testimonio__placeholder {
  width: 100%;
  height: 100%;
  background: #e0e0e0;
}

.cd-video-testimonio__volume-btn {
  position: absolute;
  top: 47px;
  right: 54px;
  width: 55px;
  height: 55px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.cd-video-testimonio__volume-btn:hover:not(:disabled) {
  background: rgba(0, 0, 0, 0.6);
}
.cd-video-testimonio__volume-btn:disabled {
  opacity: 0.6;
  cursor: default;
}
@media (max-width: 900px) {
  .cd-video-testimonio__volume-btn {
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
  }
}

.cd-video-testimonio__icon {
  position: absolute;
  width: 45px;
  height: 35px;
  pointer-events: none;
}
.cd-video-testimonio__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 900px) {
  .cd-video-testimonio__icon {
    width: 33px;
    height: 27px;
  }
}

.cd-video-testimonio__icon-unmute {
  display: block;
}

.cd-video-testimonio__icon-mute {
  display: none;
}

.cd-video-testimonio__volume-btn:not(.is-muted) .cd-video-testimonio__icon-unmute {
  display: none;
}

.cd-video-testimonio__volume-btn:not(.is-muted) .cd-video-testimonio__icon-mute {
  display: block;
}

.cd-video-testimonio__content {
  flex: 0 0 553px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 66px 0 40px;
  gap: 266px;
  min-height: 782px;
}
@media (max-width: 900px) {
  .cd-video-testimonio__content {
    flex: 1 1 auto;
    min-height: unset;
    padding: 0;
    gap: 46px;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
}

.cd-video-testimonio__quote {
  margin: 0;
  padding: 0;
  border: none;
  font-family: var(--cd-font-heading);
  font-size: 38px;
  font-weight: 300;
  line-height: 44px;
  color: #000000;
}
@media (max-width: 900px) {
  .cd-video-testimonio__quote {
    font-size: 28px;
    font-weight: 400;
    line-height: 34px;
    color: rgba(33, 33, 33, 0.74);
  }
}

.cd-video-testimonio__person {
  display: flex;
  flex-direction: column;
}

.cd-video-testimonio__nombre {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 44px;
  color: rgba(33, 33, 33, 0.74);
}
@media (max-width: 900px) {
  .cd-video-testimonio__nombre {
    font-size: 32px;
    font-weight: 600;
    line-height: 38px;
    color: rgba(33, 33, 33, 0.87);
  }
}

.cd-video-testimonio__rol {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: 32px;
  font-weight: 300;
  line-height: 38px;
  color: rgba(33, 33, 33, 0.74);
}
@media (max-width: 900px) {
  .cd-video-testimonio__rol {
    font-family: var(--cd-font-body, "Roboto", sans-serif);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: rgba(33, 33, 33, 0.87);
  }
}

.wp-block-campus-dual-asesoramiento {
  padding: 0;
}

.cd-asesoramiento__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 120px 0;
}
@media (max-width: 900px) {
  .cd-asesoramiento__inner {
    flex-direction: column;
    padding: 40px 0;
    gap: 20px;
  }
}

.cd-asesoramiento__content {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 20px 0;
}

.cd-asesoramiento__title {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 500;
  line-height: 1;
  color: #000;
}

.cd-asesoramiento__desc {
  margin: 0;
  font-family: var(--cd-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(33, 33, 33, 0.74);
}

.cd-asesoramiento__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cd-asesoramiento__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-family: var(--cd-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(33, 33, 33, 0.74);
}
.cd-asesoramiento__item strong {
  font-weight: 700;
  color: rgba(33, 33, 33, 0.74);
}

.cd-asesoramiento__item-icon {
  display: flex;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 2px;
}
.cd-asesoramiento__item-icon svg {
  display: block;
}

.cd-asesoramiento__cierre {
  margin: 0;
  font-family: var(--cd-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(33, 33, 33, 0.74);
}
.cd-asesoramiento__cierre strong {
  font-weight: 700;
  color: #4c55f1;
}

.cd-asesoramiento__media {
  flex: 0 0 48%;
  border-radius: 50px;
  overflow: hidden;
  height: 590px;
}
@media (max-width: 900px) {
  .cd-asesoramiento__media {
    flex: 0 0 auto;
    width: 100%;
    border-radius: 24px;
  }
}

.cd-asesoramiento__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cd-asesoramiento__placeholder {
  width: 100%;
  height: 100%;
  background: #e0e0e0;
}

@media (max-width: 900px) {
  .cd-asesoramiento__content {
    display: contents;
  }
  .cd-asesoramiento__title {
    order: 1;
  }
  .cd-asesoramiento__media {
    order: 2;
    height: 480px;
  }
}
@media (max-width: 900px) and (max-width: 360px) {
  .cd-asesoramiento__media {
    height: 300px;
  }
}
@media (max-width: 900px) {
  .cd-asesoramiento__desc,
  .cd-asesoramiento__list,
  .cd-asesoramiento__cierre {
    order: 3;
  }
  .cd-asesoramiento__desc,
  .cd-asesoramiento__cierre,
  .cd-asesoramiento__item {
    font-size: 16px;
    line-height: 1.375;
  }
}
.cd-legal-page {
  width: 100%;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .cd-legal-page {
    padding: 80px 0;
  }
}

.cd-legal-page__inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 767px) {
  .cd-legal-page__inner {
    gap: 40px;
  }
}

.cd-legal-page > .cd-legal-page__inner > p:first-of-type,
.cd-legal-page .cd-legal-page__text-padding {
  margin: 0;
  padding: 1.25rem 0;
  max-width: 1130px;
  font-family: var(--cd-font-body);
  font-size: 20px;
  padding-left: 6.875rem;
  font-weight: 400;
  line-height: 28px;
  color: rgba(33, 33, 33, 0.87);
}
@media (max-width: 767px) {
  .cd-legal-page > .cd-legal-page__inner > p:first-of-type,
  .cd-legal-page .cd-legal-page__text-padding {
    max-width: 100%;
    font-size: 16px;
    line-height: 22px;
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cd-legal-page > .cd-legal-page__inner > p:first-of-type,
  .cd-legal-page .cd-legal-page__text-padding {
    padding-left: 4rem;
  }
}

.wp-block-group .wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cd-legal-page :where(.wp-block-columns) {
  margin: 0;
}

.cd-legal-page__section .wp-block-group__inner-container > *:not(h1, h2, .wp-block-group),
.cd-legal-page__row .wp-block-group__inner-container > *:not(h1, h2, .wp-block-group) {
  padding-left: 7.1875rem;
  width: 100%;
}
@media (max-width: 767px) {
  .cd-legal-page__section .wp-block-group__inner-container,
  .cd-legal-page__row .wp-block-group__inner-container {
    gap: 20px;
  }
  .cd-legal-page__section .wp-block-group__inner-container > *:not(h1, h2, .wp-block-group, .wp-block-table),
  .cd-legal-page__row .wp-block-group__inner-container > *:not(h1, h2, .wp-block-group, .wp-block-table) {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cd-legal-page__section .wp-block-group__inner-container > *:not(h1, h2, .wp-block-group, .wp-block-table),
  .cd-legal-page__row .wp-block-group__inner-container > *:not(h1, h2, .wp-block-group, .wp-block-table) {
    padding-left: 4rem;
  }
  .cd-legal-page__section .wp-block-group__inner-container > .wp-block-table,
  .cd-legal-page__row .wp-block-group__inner-container > .wp-block-table {
    padding-left: 0;
  }
}

.cd-legal-page__section-rows {
  margin-top: 1.25rem;
}
.cd-legal-page__section-rows > *,
.cd-legal-page__section-rows h3 {
  color: var(--cd-text-soft);
}

.cd-legal-page h2,
.cd-legal-page .wp-block-heading.is-style-cd-legal-h2 {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: 40px;
  font-weight: 600;
  line-height: 44px;
  color: #000;
}
.cd-legal-page h2 strong,
.cd-legal-page .wp-block-heading.is-style-cd-legal-h2 strong {
  font-weight: 800;
}
@media (max-width: 767px) {
  .cd-legal-page h2,
  .cd-legal-page .wp-block-heading.is-style-cd-legal-h2 {
    font-size: 32px;
    line-height: 38px;
  }
}

.cd-legal-page h2.h2-small {
  font-size: 2rem;
  line-height: 2.5rem;
}
@media (max-width: 767px) {
  .cd-legal-page h2.h2-small {
    font-size: 28px;
    line-height: 34px;
  }
}

.cd-legal-page h3,
.cd-legal-page .wp-block-heading.is-style-cd-legal-h3 {
  margin: 0;
  font-family: var(--cd-font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
}

.cd-legal-page p,
.cd-legal-page .wp-block-list li {
  margin: 0;
  font-family: var(--cd-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--cd-text-soft);
}
@media (max-width: 767px) {
  .cd-legal-page p,
  .cd-legal-page .wp-block-list li {
    font-size: 16px;
    line-height: 22px;
  }
}

.cd-legal-page a {
  color: var(--cd-orange);
  text-decoration: none;
}
.cd-legal-page a:hover, .cd-legal-page a:focus-visible {
  text-decoration: underline;
}

.cd-legal-page .wp-block-list {
  list-style-position: inside;
}
.cd-legal-page .wp-block-list li {
  margin-bottom: 1.5rem;
}
.cd-legal-page .wp-block-list li:last-child {
  margin-bottom: 0;
}
.cd-legal-page .wp-block-list.cd-legal-page__list-big li {
  font-size: var(--cd-h6-size);
  line-height: var(--cd-h6-line);
  color: var(--cd-text-soft);
}
@media (max-width: 767px) {
  .cd-legal-page .wp-block-list li {
    margin-bottom: 1.25rem;
  }
  .cd-legal-page .wp-block-list.cd-legal-page__list-big li {
    font-size: var(--cd-h8-size);
    line-height: var(--cd-h8-line);
  }
}

.cd-legal-page .wp-block-table {
  margin: 0;
  overflow-x: auto;
}

.cd-legal-page .wp-block-table table.has-fixed-layout {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}
.cd-legal-page .wp-block-table table.has-fixed-layout th,
.cd-legal-page .wp-block-table table.has-fixed-layout td {
  padding: 0;
  border: 0;
  text-align: left;
  vertical-align: top;
}
.cd-legal-page .wp-block-table table.has-fixed-layout thead th {
  padding-bottom: 2rem;
  font-family: var(--cd-font-body);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: rgba(33, 33, 33, 0.87);
}
.cd-legal-page .wp-block-table table.has-fixed-layout tbody td {
  padding-bottom: 2.5rem;
  font-family: var(--cd-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(33, 33, 33, 0.74);
  word-break: break-word;
}
.cd-legal-page .wp-block-table table.has-fixed-layout tbody tr:last-child td {
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .cd-legal-page .wp-block-table table.has-fixed-layout {
    display: block;
    table-layout: auto;
  }
  .cd-legal-page .wp-block-table table.has-fixed-layout thead {
    display: none;
  }
  .cd-legal-page .wp-block-table table.has-fixed-layout tbody {
    display: block;
  }
  .cd-legal-page .wp-block-table table.has-fixed-layout tbody tr {
    display: block;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(33, 33, 33, 0.2);
  }
  .cd-legal-page .wp-block-table table.has-fixed-layout tbody tr:first-child {
    padding-top: 0;
    border-top: 0;
  }
  .cd-legal-page .wp-block-table table.has-fixed-layout tbody td {
    display: block;
    width: 100%;
    position: relative;
    padding: 0 0 0 0;
    margin-bottom: 1.25rem;
    font-size: 14px;
    line-height: 20px;
    box-sizing: border-box;
  }
  .cd-legal-page .wp-block-table table.has-fixed-layout tbody td:last-child {
    margin-bottom: 0;
  }
  .cd-legal-page .wp-block-table table.has-fixed-layout tbody td::before {
    display: block;
    content: "";
    margin-bottom: 0.25rem;
    font-family: var(--cd-font-body);
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: rgba(33, 33, 33, 0.87);
  }
  .cd-legal-page .wp-block-table table.has-fixed-layout tbody td:nth-child(1)::before {
    content: "Nombre";
  }
  .cd-legal-page .wp-block-table table.has-fixed-layout tbody td:nth-child(2)::before {
    content: "Dominio";
  }
  .cd-legal-page .wp-block-table table.has-fixed-layout tbody td:nth-child(3)::before {
    content: "Objetivo/Finalidad";
  }
  .cd-legal-page .wp-block-table table.has-fixed-layout tbody td:nth-child(4)::before {
    content: "Duración";
  }
  .cd-legal-page .wp-block-table table.has-fixed-layout tbody td:nth-child(5)::before {
    content: "Tipo";
  }
}

.site-main > .cd-404 {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}

.cd-404 {
  position: relative;
  background: linear-gradient(136deg, var(--cd-orange) -10.67%, var(--cd-blue) 101.01%);
  overflow: hidden;
  min-height: 905px;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .cd-404 {
    min-height: 700px;
  }
}
@media (max-width: 767px) {
  .cd-404 {
    min-height: 0;
    padding: 80px 0;
    align-items: flex-start;
  }
}

.cd-404__shape {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 580px;
  pointer-events: none;
  overflow: visible;
}
.cd-404__shape svg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 580px;
  height: auto;
}
@media (max-width: 991px) {
  .cd-404__shape {
    width: 360px;
  }
  .cd-404__shape svg {
    width: 360px;
  }
}
@media (max-width: 767px) {
  .cd-404__shape {
    width: 210px;
    top: auto;
    bottom: 0;
  }
  .cd-404__shape svg {
    top: auto;
    bottom: 0;
    transform: none;
    width: 210px;
  }
}

.cd-404__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cd-404__content {
    max-width: 420px;
  }
}
@media (max-width: 767px) {
  .cd-404__content {
    max-width: 100%;
  }
}

.cd-404__kicker {
  margin: 0 0 8px;
  font-family: var(--cd-font-heading);
  font-size: 38px;
  font-weight: 300;
  line-height: 44px;
  color: var(--cd-white);
}

.cd-404__number {
  margin: 0 0 24px;
  font-family: var(--cd-font-heading);
  font-size: 200px;
  font-weight: 700;
  line-height: 0.8;
  color: var(--cd-white);
}
@media (max-width: 991px) {
  .cd-404__number {
    font-size: 160px;
  }
}
@media (max-width: 767px) {
  .cd-404__number {
    font-size: 128px;
  }
}

.cd-404__title {
  margin: 0 0 12px;
  font-family: var(--cd-font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 44px;
  color: var(--cd-white);
}
@media (max-width: 767px) {
  .cd-404__title {
    font-size: 28px;
    line-height: 34px;
  }
}

.cd-404__text {
  margin: 0 0 40px;
  font-family: var(--cd-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--cd-white);
  max-width: 550px;
}
@media (max-width: 767px) {
  .cd-404__text {
    font-size: 16px;
    line-height: 22px;
    max-width: 100%;
  }
}

.cd-404__btn {
  align-self: flex-start;
  min-width: 132px;
  padding: 10px 20px;
}

/*# sourceMappingURL=blocks-campus-dual.css.map */
