:root {
  --white: #fff;
  --yellow: #ffea00;
  --black: #222;
  --theme-color: #ef8a34;
  --header-color: #222;
  --theme-titles: #cc6f1c;
  --text-color: #2c2c2c;
  --divider-section: #b5b5b5;
  --principal-font: "Roboto", sans-serif;
  --currentColor: #cc6f1c;
}

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background-color: #faf5f0;
  color: hsl(230, 7%, 23%);
  font-size: 1.125rem; /* 18px */
  line-height: 1.4;
}
h1,
h2,
h3,
h4 {
  line-height: 1.2;
  color: hsl(230, 13%, 9%);
  font-weight: 700;
}
h1 {
  font-size: 2.5rem; /* 40px */
  font-family: var(--principal-font);
}
h2 {
  font-size: 2.125rem; /* 34px */
  font-family: var(--principal-font);
}

h3 {
  font-size: 1.75rem; /* 28px */
  font-family: var(--principal-font);
}

h4 {
  font-size: 1.375rem; /* 22px */
  font-family: var(--principal-font);
}

p,
li {
  font-family: var(--principal-font);
}

ol,
ul,
menu {
  list-style: none;
}
textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

.feature-v7 h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--theme-color);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.feature-v7__description a:hover {
  background-size: 100% 0.2em;
}

.feature-v7__list {
  margin-top: 0.5rem;
  padding-left: 1.2rem;
  list-style: none;
}

.feature-v7__list li {
  position: relative;
  color: var(--black);
}

.feature-v7__list li::before {
  content: "•";
  color: #ef8a34;
  font-weight: bold;
  position: absolute;
  left: -1rem;
}
.feature-v7__sub-grid strong {
  font-weight: 600;
  margin-top: 1rem;
  display: inline-block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.hero-image {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
}
.hero-wrapper {
  position: relative;
  width: 100%;
  height: calc(100vh - 6rem);
  min-height: 800px;
}
  /*height: 100;*/
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}


.cd-icon {
  --size: 1em;
  font-size: var(--size);
  height: 1em;
  width: 1em;
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.cd-icon--is-spinning {
  /* rotate the icon infinitely */
  animation: cd-icon-spin 1s infinite linear;
}

@keyframes cd-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cd-icon use {
  /* SVG symbols - enable icon color corrections */
  color: inherit;
  fill: currentColor;
}

.feature-v7__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}

.feature-v7__grid-item {
  min-width: 0;
  grid-column-end: span 12;
}

@media (min-width: 64rem) {
  .feature-v7__grid-item {
    grid-column-end: span 6;
  }
}

.feature-v7__sub-grid {
  gap: 1rem;
}

.feature-v7__description {
  color: var(--black);
  line-height: 1.58;
  display: flex;
}

.feature-v7__img {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px hsla(230, 13%, 9%, 0.05);
  background-color: hsl(0, 0%, 100%);
}

.feature-v7__img > .cd-icon {
  --size: 24px;
  color: hsl(250, 84%, 54%);
}

.feature-v7__img-clone {
  flex-shrink: 0;
  width: 48px;
}

.posgrados {
  padding: 2rem;
  border-radius: 1rem; 
  background: var(--white);
}
.posgrados a {
  background: #ef8b34;
  color: #fff;
  padding: 0.5rem 2rem;
  display: inline-block;
  border-radius: 2rem;
  text-decoration: none;
  margin-top: 1rem;
  font-weight: 500;
}
.header-main {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  background-color: var(--header-color);
}

.logo-site img {
  max-width: 100%;
  height: 6rem;
}

.logo-nl {
  display: flex;
  gap: 2.6rem;
  align-items: center;
  gap: 2.5rem;
  margin-right: 2.5rem;
}

.logo-nl img {
  height: 3.5rem;
}

.divider {
  display: block;
  background-color: var(--divider-section);
  width: 90%;
  height: 0.05rem;
  margin: auto;
  border: none;
}

.form-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.form-section.visible {
  opacity: 1;
  transform: translateY(0);
  height: calc(100% - 6rem);
}

.title-form {
  font-size: 1.75rem;
  font-weight: 900;
  text-align: center;
  color: #1c1c1c;
  margin-bottom: 2rem;
}
.tally-progress-bar {
  display: none;
}

.form-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.form-container iframe {
  border: none;
  width: 100%;
  height: 900px;
  border-radius: 0.75rem;
  background: white;
}

.whatsapp-button {
  z-index: 1000;
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.whatsapp-button svg {
  width: 5rem;
  height: auto;
  color: white;
  background-color: #25d366;
  padding: 12px;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.whatsapp-button svg:hover {
  transform: scale(1.1);
}

.form-section {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 40%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 1.5rem;

  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.title-form {
  text-align: center;
  margin-bottom: 1rem;
}

.form-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* -------------------------------- 

Utilities 

-------------------------------- */
.cd-container,
.tab-features,
.tab-features__panels,
.tab-features__controls-list {
  max-width: 80rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.cd-position-relative {
  position: relative;
  background-color: #faf5f0;
}

.cd-z-index-1 {
  z-index: 1;
}

.cd-container {
  width: calc(100% - 3rem);
  margin-left: auto;
  margin-right: auto;
}

.cd-max-width-adaptive-lg {
  max-width: 32rem;
}

@media (min-width: 48rem) {
  .cd-max-width-adaptive-lg,
  .tab-features {
    max-width: 48rem;
  }
}

@media (min-width: 64rem) {
  .cd-max-width-adaptive-lg,
  .tab-features {
    max-width: 64rem;
  }
}

@media (min-width: 80rem) {
  .cd-max-width-adaptive-lg,
  .tab-features {
    max-width: 80rem;
  }
}

.cd-padding-y-2xl {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.cd-margin-bottom-xl {
  margin-bottom: 4.5rem;
}

.cd-items-center {
  align-items: center;
  display: flex;
  margin-bottom: 1rem;
}

/* component */
.video-bg__media {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.video-bg__media video {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  max-width: none;
}
@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  .video-bg__media video {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
}
@supports ((-o-object-fit: cover) or (object-fit: cover)) and
  (-ms-ime-align: auto) {
  .video-bg__media video {
    height: auto;
    width: auto;
  }
}
.video-bg__media img {
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  .video-bg__media video {
    visibility: hidden;
  }
  .video-bg__media img {
    display: block;
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
}

/* utility classes */
.va6-text-center {
  text-align: center;
}

.va6-text-component :where(h1, h2, h3, h4) {
  line-height: var(--va6-heading-line-height, 1.2);
  margin-top: calc(var(--va6-space-md) * var(--va6-space-multiplier, 1));
  margin-bottom: calc(var(--va6-space-sm) * var(--va6-space-multiplier, 1));
}

.va6-text-component :where(p, blockquote, ul li, ol li) {
  line-height: var(--va6-body-line-height, 1.4);
}

.va6-text-component :where(ul, ol, p, blockquote, .va6-text-component__block) {
  margin-bottom: calc(var(--va6-space-sm) * var(--va6-space-multiplier, 1));
}

.va6-text-component :where(ul, ol) {
  padding-left: 1.25em;
}

.va6-text-component ul :where(ul, ol),
.va6-text-component ol :where(ul, ol) {
  padding-left: 1em;
  margin-bottom: 0;
}

.va6-text-component ul {
  list-style-type: disc;
}

.va6-text-component ol {
  list-style-type: decimal;
}

.va6-text-component img {
  display: block;
  margin: 0 auto;
}

.va6-text-component figcaption {
  margin-top: calc(var(--va6-space-xs) * var(--va6-space-multiplier, 1));
  font-size: var(--va6-text-sm);
  text-align: center;
}

.va6-text-component em {
  font-style: italic;
}

.va6-text-component strong {
  font-weight: bold;
}

.va6-text-component s {
  text-decoration: line-through;
}

.va6-text-component u {
  text-decoration: underline;
}

.va6-text-component mark {
  background-color: hsla(var(--va6-color-accent-hsl), 0.2);
  color: inherit;
}

.va6-text-component blockquote {
  padding-left: 1em;
  border-left: 4px solid hsl(var(--va6-color-contrast-lower-hsl));
  font-style: italic;
}

.va6-text-component hr {
  margin: calc(var(--va6-space-md) * var(--va6-space-multiplier, 1)) auto;
  background: hsl(var(--va6-color-contrast-lower-hsl));
  height: 1px;
}

.va6-text-component > *:first-child {
  margin-top: 0;
}

.va6-text-component > *:last-child {
  margin-bottom: 0;
}

.va6-text-component.va6-line-height-xs {
  --va6-heading-line-height: 1;
  --va6-body-line-height: 1.1;
}

.va6-text-component.va6-line-height-sm {
  --va6-heading-line-height: 1.1;
  --va6-body-line-height: 1.2;
}

.va6-text-component.va6-line-height-md {
  --va6-heading-line-height: 1.15;
  --va6-body-line-height: 1.4;
}

.va6-text-component.va6-line-height-lg {
  --va6-heading-line-height: 1.22;
  --va6-body-line-height: 1.58;
}

.va6-text-component.va6-line-height-xl {
  --va6-heading-line-height: 1.3;
  --va6-body-line-height: 1.72;
}

.va6-padding-y-3xl {
  padding-top: var(--va6-space-3xl);
  padding-bottom: var(--va6-space-3xl);
}

.va6-flex-center {
  justify-content: center;
  align-items: center;
}

.va6-flex {
  display: flex;
}

.va6-z-index-2 {
  z-index: 2;
}

.va6-position-relative {
  position: relative;
  height: 80vh;
}

.va6-max-width-lg {
  max-width: 80rem;
}

.va6-container {
  width: calc(100% - 2 * var(--va6-space-md));
  margin-left: auto;
  margin-right: auto;
}

.courses .container {
  display: flex;
  width: 100%;
  padding: 0 15px 5rem 15px;
  background-color: #faf5f0;
}
.tab-features {
  max-width: 80rem;
  margin: 0 auto;
}
.objetivos {
  margin-top: 1rem;
}
.form-section .container {
  width: clamp(320px, 85%, 90%);
  margin: 0 auto;
}



/* Footer */
footer {
  background: #302c26;
  margin: 0;
  padding: 50px 0 80px;
}
footer h3 {
  color: var(--yellow);
  font-size: 20px;
}
footer,
footer a {
  color: var(--white);
  font-size: 1rem;
}
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
  display: grid;
  grid-template: auto / repeat(4, 1fr);
  justify-content: center;
  gap: 20px;
}

.footer-container > :last-child {
  grid-column: 1 / -1;
}

.single-footer > div {
  padding: 5px 0;
}
.single-footer i {
  font-size: 15px;
  margin-right: 5px;
}
.single-footer a {
  text-decoration: none;
}
.social i {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .va6-position-relative {
    height: 45vh;
  }
  .footer-container {
    grid-template: auto / repeat(1, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .logo-site img {
    height: 8.5vh;
  }
  .logo-nl {
    gap: 1rem;
    margin-right: 1rem;
  }
  .logo-nl img {
    height: 3.8vh;
  }

  .cd-padding-y-2xl {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  
  .cd-margin-bottom-xl {
    margin-bottom: 1rem;
  }

  .title-form {
    font-size: 2rem;
  }

  .form-section .container {
    padding: 0 15px 0rem 15px;
  }

  .whatsapp-button svg {
    width: 4rem;
    bottom: 0;
  }
  
  .hero-wrapper {
    display: flex;
    flex-direction: column;
  }

  .hero-image {
    width: 100%;
    height: auto;
    display: block;
  }

  .form-section {
    position: static;        
    transform: none;
    width: 100%;
    margin-top: auto;     
    padding: 1rem;
    box-shadow: 0 0;
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  to {
    transform: scale(1.1);
  }
}