:root {
  --charcoal: #3f3f3e;
  --ink: #3e3c3a;
  --paper: #f0f0f0;
  --sage: #74846c;
  --terracotta: #a26153;
  --white: #fff;
  --display: "Belleza", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

.site-container {
  max-width: 1170px;
}

.site-header {
  min-height: 107px;
  background: var(--charcoal);
}

.site-header .navbar {
  min-height: 107px;
  padding: 0;
}

.navbar-brand img {
  width: 265px;
  height: auto;
}

.navbar-nav {
  gap: 34px;
}

.navbar-dark .navbar-nav .nav-link {
  position: relative;
  padding: 42px 0 36px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
}

.navbar-dark .navbar-nav .nav-link::after {
  position: absolute;
  right: 0;
  bottom: 32px;
  left: 0;
  width: 0;
  height: 1px;
  margin: auto;
  background: var(--white);
  content: "";
  transition: width 0.2s ease;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
  width: 100%;
}

.intro-photo {
  height: 670px;
  overflow: hidden;
}

.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.intro-copy {
  display: flex;
  align-items: center;
  min-height: 670px;
  background-color: #efefef;
}

.copy-inner {
  width: min(100%, 657px);
  padding: 60px 45px 60px 85px;
}

.collaboration-copy h2 {
  margin: 0 0 34px;
  font-family: var(--display);
  font-size: clamp(38px, 3vw, 49px);
  font-weight: 600;
  line-height: 0.98;
  text-transform: uppercase;
}

.intro-copy h1 {
  width: min(100%, 572px);
  margin: 0 0 24px;
  color: var(--terracotta);
  font-family: var(--display);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.09;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro-copy p {
  max-width: 500px;
  margin-bottom: 24px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.35;
}

.intro-copy .lead-copy {
  margin-bottom: 25px;
  font-size: 17px;
}

.brand-highlight {
  color: var(--terracotta);
}

.btn {
  min-width: 143px;
  border-radius: 1px;
  padding: 10px 20px 9px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.btn-outline-brand {
  border: 1px solid #8b8b8b;
  color: #373737;
  background: rgba(255, 255, 255, 0.35);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  border-color: var(--charcoal);
  color: var(--white);
  background: var(--charcoal);
}

.course-banner {
  display: grid;
  min-height: 771px;
  place-items: center;
  background: #161514 url("home/fondo1.jpg") center / cover no-repeat;
  color: var(--white);
  text-align: center;
}

.course-content {
  transform: translateY(20px);
}

.launch-label {
  display: inline-block;
  position: relative;
  margin-bottom: 30px;
  padding: 7px 22px 6px 14px;
  color: #353535;
  background: var(--white);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.launch-label::after {
  position: absolute;
  top: 0;
  right: -14px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 14px solid var(--white);
  content: "";
}

.course-banner h2 {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: clamp(36px, 3.9vw, 57px);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}

.course-banner p {
  margin-bottom: 30px;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.15;
}

.course-banner .btn,
.course-page-hero .btn {
  font-family: var(--sans);
}

.btn-light-brand {
  border-color: var(--white);
  color: #303030;
  background: var(--white);
}

.btn-light-brand:hover,
.btn-light-brand:focus {
  border-color: var(--charcoal);
  color: var(--white);
  background: var(--charcoal);
}

.btn-waitlist {
  border-color: #be786d;
  color: var(--white);
  background: #be786d;
}

.btn-waitlist:hover,
.btn-waitlist:focus {
  border-color: #a35e53;
  color: var(--white);
  background: #a35e53;
}

.floral-divider {
  height: 56px;
  background: url("home/footer.jpg") center / auto 100% repeat-x;
}

.modules-section {
  position: relative;
  padding: 75px 0 0;
  background: linear-gradient(to bottom, #f1f1f1 0 43%, var(--sage) 43% 100%);
}

.modules-section blockquote {
  margin: 0 auto 66px;
  color: var(--terracotta);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
}

.modules-section cite {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-style: normal;
}

.modules-grid {
  display: grid;
  position: relative;
  grid-template-columns: repeat(3, 1fr);
  gap: 68px;
  max-width: 1000px;
  min-height: 460px;
  margin: auto;
}

.module-card {
  color: var(--white);
  text-align: center;
}

.module-card img {
  width: 100%;
  max-width: 285px;
  aspect-ratio: 1;
  margin: 0 auto 17px;
  border-radius: 50%;
  object-fit: cover;
}

.module-card span {
  display: block;
  margin-bottom: 3px;
  font-family: var(--sans);
  font-size: 17px;
}

.module-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 500;
  line-height: 0.9;
  text-transform: uppercase;
}

.module-arrow {
  position: absolute;
  top: 126px;
  right: -40px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  background: var(--charcoal);
  font-size: 31px;
  line-height: 29px;
  text-align: center;
}

.collaboration-section {
  background: #efefef;
}

.collaboration-copy,
.collaboration-photo {
  min-height: 650px;
}

.collaboration-copy {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.collaboration-inner {
  width: min(100%, 585px);
  padding: 65px 110px 65px 40px;
}

.collaboration-copy h2 {
  margin-bottom: 36px;
  color: var(--ink);
}

.collaboration-copy p {
  max-width: 430px;
  margin-bottom: 34px;
  font-size: 16px;
  line-height: 1.3;
}

.collaboration-photo {
  overflow: hidden;
}

.collaboration-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collaboration-form {
  max-width: 480px;
}

.collaboration-form .form-control {
  height: 45px;
  margin-bottom: 16px;
  border: 1px solid #aaa;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.25);
  color: #3f3f3f;
  font-size: 14px;
}

.collaboration-form .form-control::placeholder {
  color: #b8b8b8;
  opacity: 1;
}

.collaboration-form .form-control:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 2px rgba(162, 97, 83, 0.12);
}

.collaboration-form .form-control:invalid:not(:placeholder-shown) {
  border-color: #b46b5c;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.collaboration-form .btn {
  display: block;
  margin: 42px 0 0 auto;
  padding-right: 30px;
  padding-left: 30px;
}

.brands-section {
  padding: 23px 0;
  background: var(--white);
}

.brands-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
}

.brands-list img {
  max-width: min(28%, 190px);
  max-height: 64px;
  width: auto;
  object-fit: contain;
}

.award-section {
  display: grid;
  min-height: 744px;
  place-items: center;
  background: #69401f url("home/fondo3.jpg") center / cover no-repeat;
  color: var(--white);
  text-align: center;
}

.award-content {
  transform: translateY(65px);
}

.award-section h2 {
  margin-bottom: 17px;
  font-family: var(--display);
  font-size: clamp(42px, 4.6vw, 63px);
  font-weight: 300;
  line-height: 0.98;
  text-transform: uppercase;
}

.award-section p {
  margin-bottom: 35px;
  font-size: 16px;
  line-height: 1.3;
}

.site-footer {
  background: var(--charcoal);
  color: var(--white);
}

.footer-content {
  display: flex;
  min-height: 230px;
  justify-content: center;
  align-items: center;
  gap: 190px;
}

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

.footer-brand img {
  width: 365px;
  margin-bottom: 18px;
}

.footer-brand nav {
  display: flex;
  justify-content: center;
  gap: 36px;
}

.footer-brand a {
  color: var(--white);
  font-size: 10px;
  text-transform: uppercase;
}

.footer-instagram {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.footer-instagram svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.footer-instagram:hover,
.footer-instagram:focus-visible {
  color: var(--white);
  opacity: 1;
  transform: translateY(-1px);
}

.footer-pattern {
  height: 112px;
}

/* Historia */
.history-origin-photo,
.history-origin-copy {
  min-height: 762px;
}

.history-origin-photo {
  overflow: hidden;
}

.history-origin-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.history-origin-copy {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f3f3f3;
}

.history-origin-copy::before,
.history-awards::before {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background: url("home/footer.jpg") center / 680px auto repeat;
  content: "";
  pointer-events: none;
}

.history-copy-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 610px);
  padding: 72px 55px 70px 92px;
}

.history-eyebrow {
  margin-bottom: 14px;
  color: var(--sage);
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
}

.history-origin h1,
.awards-intro h2,
.history-next h2 {
  margin-bottom: 30px;
  font-family: var(--display);
  font-size: clamp(42px, 3.65vw, 56px);
  font-weight: 300;
  line-height: 1.06;
  text-transform: uppercase;
}

.history-origin-copy p:not(.history-eyebrow) {
  max-width: 535px;
  margin-bottom: 26px;
  font-size: 18px;
  line-height: 1.3;
}

.history-origin-copy .history-lead {
  font-size: 20px;
}

.history-accent {
  display: block;
  width: 275px;
  height: 48px;
  margin-top: 45px;
  background: #ad604c;
}

.history-awards {
  position: relative;
  overflow: hidden;
  padding: 42px 0 0;
  background: linear-gradient(to bottom, #ededed 0 65%, var(--sage) 65% 100%);
}

.history-awards .site-container {
  position: relative;
  z-index: 1;
}

.awards-image {
  width: min(100%, 455px);
  margin: 0 auto 30px;
}

.awards-intro {
  max-width: 980px;
  margin: 0 auto 38px;
  text-align: center;
}

.awards-intro h2 {
  margin-bottom: 20px;
}

.awards-intro p {
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.35;
}

.history-timeline {
  display: grid;
  position: relative;
  grid-template-columns: repeat(3, 1fr);
  gap: 58px;
  max-width: 1100px;
  min-height: 665px;
  margin: auto;
}

.timeline-card {
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: column;
  color: var(--white);
  text-align: center;
}

.timeline-card img {
  width: 100%;
  max-width: 292px;
  aspect-ratio: 1;
  margin: 0 auto 18px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  object-fit: cover;
}

.timeline-card:nth-child(2) img {
  object-position: center 38%;
}

.timeline-card:nth-child(3) img {
  object-position: center 18%;
}

.timeline-card h3 {
  width: 100%;
  margin-bottom: 9px;
  font-family: var(--display);
  font-size: 45px;
  font-weight: 500;
  line-height: 1;
}

.timeline-card p {
  width: 100%;
  max-width: 290px;
  margin-right: auto;
  margin-left: auto;
  font-size: 17px;
  line-height: 1.2;
}

.timeline-arrow {
  position: absolute;
  top: 145px;
  z-index: 6;
  display: grid;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  place-items: center;
  color: var(--white);
  background: var(--charcoal);
  font-size: 32px;
  line-height: 1;
}

.timeline-arrow-left {
  left: -62px;
}

.timeline-arrow-right {
  right: -62px;
}

.history-next {
  display: grid;
  position: relative;
  overflow: hidden;
  min-height: 640px;
  place-items: center;
  color: var(--white);
  background: #000;
  text-align: center;
}

.history-next::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.58);
  content: "";
  pointer-events: none;
}

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

.history-next-content {
  position: relative;
  z-index: 2;
}

.history-next h2 {
  margin-bottom: 32px;
  font-size: clamp(42px, 4vw, 57px);
}

.history-next p {
  margin-bottom: 28px;
  font-size: 18px;
  line-height: 1.3;
}

.history-next .btn {
  margin-top: 18px;
  padding-right: 45px;
  padding-left: 45px;
}

@media (max-width: 991.98px) {
  .copy-inner {
    padding-right: 35px;
    padding-left: 45px;
  }

  .modules-grid {
    gap: 30px;
    padding: 0 45px;
  }

  .module-arrow {
    right: 5px;
  }

  .collaboration-inner {
    padding-right: 55px;
  }

  .history-copy-inner {
    padding-right: 45px;
    padding-left: 55px;
  }

  .history-timeline {
    gap: 35px;
    padding: 0 45px;
  }

  .timeline-arrow-left {
    left: -4px;
  }

  .timeline-arrow-right {
    right: -4px;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 14px;
  }

  .site-header,
  .site-header .navbar {
    min-height: 68px;
  }

  .site-header .navbar {
    padding: 8px 0;
  }

  .navbar-brand img {
    width: 185px;
  }

  .navbar-toggler {
    border: 0;
    box-shadow: none !important;
  }

  .navbar-collapse {
    padding-top: 8px;
  }

  .navbar-nav {
    gap: 0;
  }

  .navbar-dark .navbar-nav .nav-link {
    padding: 8px 0;
    text-align: center;
  }

  .navbar-dark .navbar-nav .nav-link::after {
    display: none;
  }

  .intro-photo {
    height: 330px;
  }

  .intro-photo img {
    object-position: center 28%;
  }

  .intro-copy {
    min-height: 345px;
    text-align: center;
  }

  .copy-inner {
    width: 100%;
    padding: 42px 28px 39px;
  }

  .intro-copy h1 {
    margin-bottom: 21px;
    font-size: 26px;
    line-height: 0.98;
  }

  .intro-copy p,
  .intro-copy .lead-copy {
    width: 100%;
    max-width: 320px;
    margin-right: auto;
    margin-bottom: 15px;
    margin-left: auto;
    font-size: 11px;
    line-height: 1.25;
  }

  .intro-copy .btn {
    margin-top: 5px;
  }

  .btn {
    min-width: 112px;
    padding: 9px 16px 8px;
    font-size: 10px;
  }

  .course-banner {
    min-height: 520px;
    align-items: start;
    padding-top: 112px;
    background-position: left center;
  }

  .course-content {
    transform: none;
  }

  .launch-label {
    margin-bottom: 26px;
    padding: 6px 14px 5px 10px;
    font-size: 9px;
  }

  .launch-label::after {
    right: -11px;
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 11px;
  }

  .course-banner h2 {
    margin-bottom: 9px;
    padding: 0 12px;
    font-size: 28px;
    letter-spacing: -0.7px;
  }

  .course-banner p {
    margin-bottom: 27px;
    font-size: 13px;
  }

  .course-content .d-flex {
    flex-direction: column;
    align-items: center;
    gap: 11px !important;
  }

  .floral-divider {
    height: 43px;
  }

  .modules-section {
    min-height: 515px;
    padding-top: 42px;
    background: linear-gradient(to bottom, #f1f1f1 0 42%, var(--sage) 42% 100%);
  }

  .modules-section blockquote {
    width: 90%;
    margin-bottom: 32px;
    font-size: 11px;
    line-height: 1.3;
  }

  .modules-section cite {
    margin-top: 6px;
    font-size: 9px;
  }

  .modules-grid {
    display: block;
    min-height: 370px;
    padding: 0;
  }

  .module-card {
    display: none;
  }

  .module-card:first-child {
    display: block;
  }

  .module-card img {
    width: 216px;
    margin-bottom: 17px;
  }

  .module-card span {
    font-size: 14px;
  }

  .module-card h3 {
    font-size: 27px;
  }

  .module-arrow {
    top: 103px;
    right: calc(50% - 129px);
    width: 23px;
    height: 23px;
    font-size: 23px;
    line-height: 19px;
  }

  .collaboration-copy,
  .collaboration-photo {
    min-height: 0;
  }

  .collaboration-photo {
    height: 360px;
  }

  .collaboration-photo img {
    object-position: center 52%;
  }

  .collaboration-inner {
    width: 100%;
    padding: 49px 38px 45px;
    text-align: center;
  }

  .collaboration-copy h2 {
    margin-bottom: 24px;
    font-size: 27px;
    line-height: 0.95;
  }

  .collaboration-copy p {
    max-width: 290px;
    margin: 0 auto 24px;
    font-size: 11px;
  }

  .collaboration-form {
    max-width: 300px;
    margin: auto;
  }

  .collaboration-form .form-control {
    height: 30px;
    margin-bottom: 11px;
  }

  .collaboration-form .btn {
    margin: 28px auto 0;
  }

  .brands-section {
    padding: 18px 0;
  }

  .brands-list {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 24px;
    padding: 0 18px;
  }

  .brands-list img {
    max-width: min(30%, 130px);
    max-height: 48px;
  }

  .award-section {
    min-height: 560px;
    background-position: 48% center;
  }

  .award-content {
    padding: 0 25px;
    transform: translateY(45px);
  }

  .award-section h2 {
    margin-bottom: 14px;
    font-size: 30px;
    letter-spacing: -0.6px;
  }

  .award-section p {
    margin-bottom: 35px;
    font-size: 11px;
  }

  .footer-content {
    min-height: 183px;
    justify-content: space-between;
    gap: 20px;
    padding: 0 24px;
  }

  .footer-brand img {
    width: 185px;
    margin-bottom: 12px;
  }

  .footer-brand nav {
    gap: 20px;
  }

  .footer-brand a {
    font-size: 7px;
  }

  .footer-instagram {
    width: 30px;
    height: 30px;
  }

  .footer-instagram svg {
    width: 23px;
    height: 23px;
  }

  .footer-pattern {
    height: 72px;
  }

  .history-origin-photo,
  .history-origin-copy {
    min-height: 0;
  }

  .history-origin-photo {
    height: 227px;
  }

  .history-origin-copy {
    min-height: 473px;
  }

  .history-origin-photo img {
    object-position: center 52%;
  }

  .history-copy-inner {
    width: 100%;
    padding: 49px 38px 59px;
    text-align: center;
  }

  .history-eyebrow {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .history-origin h1 {
    margin-bottom: 26px;
    font-size: 26px;
  }

  .history-origin-copy p:not(.history-eyebrow),
  .history-origin-copy .history-lead {
    max-width: 300px;
    margin-right: auto;
    margin-bottom: 22px;
    margin-left: auto;
    font-size: 12px;
    line-height: 1.3;
  }

  .history-accent {
    width: 168px;
    height: 35px;
    margin: 31px auto 0;
    border-radius: 3px;
  }

  .history-awards {
    padding-top: 48px;
    background: linear-gradient(to bottom, #ededed 0 72%, var(--sage) 72% 100%);
  }

  .awards-image {
    width: 238px;
    margin-bottom: 34px;
  }

  .awards-intro {
    padding: 0 28px;
    margin-bottom: 38px;
  }

  .awards-intro h2 {
    max-width: 300px;
    margin-right: auto;
    margin-bottom: 22px;
    margin-left: auto;
    font-size: 29px;
    line-height: 1.06;
  }

  .awards-intro h2 span {
    display: block;
  }

  .awards-intro h2 span:first-child {
    max-width: 275px;
    margin: auto;
  }

  .awards-intro h2 br {
    display: none;
  }

  .awards-intro p {
    max-width: 310px;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
    font-size: 12px;
    line-height: 1.3;
  }

  .history-timeline {
    display: block;
    min-height: 423px;
    padding: 0;
  }

  .timeline-card {
    display: none;
  }

  .timeline-card:first-child {
    display: block;
  }

  .timeline-card img {
    width: 216px;
    margin-bottom: 17px;
  }

  .timeline-card h3 {
    margin-bottom: 10px;
    font-size: 34px;
  }

  .timeline-card p {
    font-size: 13px;
  }

  .timeline-card p em {
    display: none;
  }

  .timeline-arrow {
    top: 101px;
    width: 23px;
    height: 23px;
    font-size: 23px;
  }

  .timeline-arrow-left {
    display: none;
  }

  .timeline-arrow-right {
    right: calc(50% - 132px);
  }

  .history-next {
    min-height: 392px;
  }

  .history-next-content {
    padding: 0 28px;
  }

  .history-next h2 {
    margin-bottom: 30px;
    font-size: 29px;
  }

  .history-next p {
    margin-bottom: 25px;
    font-size: 12px;
  }

  .history-next .btn {
    margin-top: 10px;
  }
}

@media (max-width: 374.98px) {
  .navbar-brand img {
    width: 165px;
  }

  .intro-copy h1,
  .course-banner h2 {
    font-size: 27px;
  }

  .collaboration-inner {
    padding-right: 25px;
    padding-left: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Curso */
.course-page-hero {
  display: grid;
  min-height: 690px;
  place-items: center;
  color: var(--white);
  background: #2a1511 url("historia/header.jpg") center / cover no-repeat;
  text-align: center;
}

.course-page-hero-content {
  transform: translateY(20px);
}

.course-page-hero h1,
.course-heading h2,
.program-copy h2,
.course-dark-content h2,
.how-copy h2 {
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
}

.course-page-hero h1 {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: clamp(43px, 4.4vw, 64px);
  font-weight: 400;
  line-height: 0.93;
}

.course-page-hero p {
  margin-bottom: 26px;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.1;
}

.course-hero-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.course-journey {
  padding: 74px 0 70px;
  background: #efefef;
}

.course-heading {
  margin-bottom: 52px;
  text-align: center;
}

.course-heading p {
  margin-bottom: 5px;
  color: var(--sage);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}

.course-heading h2 {
  margin: 0;
  font-size: 48px;
  line-height: 0.95;
}

.journey-content {
  max-width: 1050px;
  margin: auto;
}

.course-video {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background: #000;
}

.course-video iframe,
.course-video video,
.media-video iframe,
.media-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.media-video {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: inherit;
  background: #000;
}

.journey-text {
  padding-left: 45px;
}

.journey-text p {
  max-width: 430px;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.35;
}

.course-modules {
  display: grid;
  position: relative;
  min-height: 790px;
  padding: 70px 20px 130px;
  place-items: center;
  background: var(--sage);
}

.module-showcase {
  width: min(100%, 1005px);
}

.module-showcase img {
  width: 100%;
  border-radius: 8px;
}

.module-mobile-card {
  display: none;
}

.course-module-slide > img {
  display: none;
}

.course-module-slide > .course-module-frame {
  display: block;
  width: 100%;
  aspect-ratio: 1012 / 512;
  border-radius: 8px;
  object-fit: contain;
}

.course-module-mobile {
  display: none;
}

.course-module-slide > .module-mobile-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 512px;
  border-radius: 8px;
  background: #f4f4f4;
}

.course-module-slide > .module-mobile-card .module-mobile-photo {
  min-height: 512px;
  border-radius: 8px 0 0 8px;
  background-image: url("historia/saboresclasicos.jpg");
  background-position: left center;
  background-size: cover;
  background-repeat: no-repeat;
}

.course-module-slide > .module-mobile-card .module-mobile-copy {
  display: flex;
  min-height: 512px;
  justify-content: center;
  flex-direction: column;
  padding: 55px;
  color: #3f3f3f;
}

.course-carousel-arrow {
  position: absolute;
  top: 44%;
  display: grid;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  place-items: center;
  color: var(--white);
  background: var(--charcoal);
  font-size: 30px;
  line-height: 1;
}

.course-carousel-arrow.arrow-left {
  left: max(30px, calc(50% - 570px));
}

.course-carousel-arrow.arrow-right {
  right: max(30px, calc(50% - 570px));
}

.module-waitlist {
  position: absolute;
  z-index: 5;
  bottom: 60px;
}

.program-copy,
.program-photo {
  min-height: 780px;
}

.program-copy {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: #efefef;
}

.program-inner {
  width: min(100%, 585px);
  padding: 60px 85px 60px 40px;
}

.course-kicker {
  margin-bottom: 8px;
  color: #b26654;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.program-copy h2 {
  margin-bottom: 34px;
  font-size: 48px;
  line-height: 0.95;
}

.program-copy h3 {
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.course-check-list,
.profile-list {
  padding: 0;
  list-style: none;
}

.course-check-list {
  margin-bottom: 30px;
}

.course-check-list li,
.profile-list li {
  position: relative;
  padding-left: 24px;
}

.course-check-list li {
  margin-bottom: 7px;
  font-size: 14px;
}

.course-check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  place-items: center;
  color: var(--white);
  background: #b26654;
  content: "✓";
  font-size: 10px;
}

.program-photo,
.how-photo {
  overflow: hidden;
}

.program-photo img,
.how-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-certifications {
  display: flex;
  min-height: 90px;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 15px 25px;
  background: var(--white);
}

.course-certifications span {
  font-size: 16px;
}

.course-certifications img {
  width: auto;
  max-width: 155px;
  max-height: 50px;
}

.course-purpose,
.course-enrollment {
  display: grid;
  min-height: 520px;
  place-items: center;
  color: var(--white);
  background: #000;
  text-align: center;
}

.course-dark-content {
  max-width: 650px;
  padding: 55px 25px;
}

.course-dark-content h2 {
  margin-bottom: 24px;
  font-size: 50px;
  line-height: 0.95;
}

.course-dark-content p:not(.course-kicker) {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.35;
}

.btn-dark-outline {
  margin-top: 10px;
  border: 1px solid #292929;
  color: var(--white);
  background: transparent;
}

.btn-dark-outline:hover,
.btn-dark-outline:focus {
  border-color: var(--white);
  color: #000;
  background: var(--white);
}

.course-profile {
  min-height: 600px;
  padding: 115px 0 95px;
  color: var(--white);
  background: var(--sage);
}

.profile-heading {
  margin-bottom: 50px;
}

.profile-heading p {
  color: rgba(255, 255, 255, 0.75);
}

.profile-heading h2 {
  font-size: 44px;
}

.profile-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  max-width: 850px;
  margin: auto;
}

.profile-list li {
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.35;
}

.profile-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: #e7c66a;
  content: "●";
}

.how-photo,
.how-copy {
  min-height: 790px;
}

.how-photo img {
  object-position: center 48%;
}

.how-copy {
  display: flex;
  align-items: center;
  background: #efefef;
}

.how-inner {
  max-width: 570px;
  padding: 65px 75px;
}

.how-copy h2 {
  margin-bottom: 30px;
  font-size: 50px;
}

.how-copy p {
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 1.35;
}

.course-enrollment {
  min-height: 500px;
}

@media (max-width: 767.98px) {
  .course-page-hero {
    min-height: 455px;
    align-items: start;
    padding-top: 92px;
    background-position: center;
  }

  .course-page-hero-content {
    transform: none;
  }

  .course-page-hero h1 {
    font-size: 30px;
  }

  .course-page-hero p {
    font-size: 12px;
  }

  .course-hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 11px;
  }

  .course-hero-actions .btn-light-brand {
    display: none;
  }

  .course-journey {
    min-height: 700px;
    padding: 58px 25px 55px;
  }

  .course-heading {
    margin-bottom: 28px;
  }

  .course-heading p {
    font-size: 10px;
  }

  .course-heading h2 {
    font-size: 29px;
  }

  .course-video {
    min-height: 260px;
    margin-bottom: 28px;
  }

  .journey-text {
    padding: 0;
    text-align: center;
  }

  .journey-text p {
    max-width: 300px;
    margin: 0 auto 18px;
    font-size: 10px;
  }

  .course-modules {
    min-height: 760px;
    padding: 44px 23px 118px;
  }

  .module-showcase {
    width: min(100%, 330px);
    max-width: 100%;
  }

  .course-module-slide > .course-module-frame {
    display: none;
  }

  .course-module-mobile {
    display: block;
    overflow: hidden;
    border-radius: 6px;
    background: #f4f4f4;
  }

  .course-module-mobile > img {
    display: block;
    width: 100%;
    height: 240px;
    border-radius: 6px 6px 0 0;
    object-fit: cover;
    object-position: left center;
  }

  .course-module-mobile > div {
    min-height: 340px;
    padding: 25px 30px 28px;
    color: #373735;
  }

  .course-module-mobile p {
    margin-bottom: 8px;
    color: #a75b4b;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
  }

  .course-module-mobile h3 {
    margin-bottom: 16px;
    color: var(--sage);
    font-family: var(--display);
    font-size: 30px;
    font-weight: 500;
    line-height: 0.9;
    text-transform: uppercase;
  }

  .course-module-mobile em {
    display: block;
    margin: -8px 0 15px;
    font-size: 10px;
    line-height: 1.25;
  }

  .course-module-mobile ol {
    padding-left: 17px;
    margin-bottom: 18px;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.25;
  }

  .course-module-mobile strong,
  .course-module-mobile span {
    display: block;
    font-size: 10px;
    line-height: 1.3;
  }

  .course-module-mobile strong {
    margin-bottom: 4px;
    text-transform: uppercase;
  }

  .module-showcase > img {
    display: none;
  }

  .module-mobile-card {
    display: block;
    overflow: hidden;
    border-radius: 4px;
    background: #f4f4f4;
  }

  .course-module-slide > .module-mobile-card {
    display: block;
    min-height: 0;
    border-radius: 4px;
  }

  .module-mobile-photo {
    height: 280px;
    background: url("historia/saboresclasicos.jpg") left center / 550px auto no-repeat;
  }

  .course-module-slide > .module-mobile-card .module-mobile-photo {
    min-height: 0;
    border-radius: 4px 4px 0 0;
    background-size: 550px auto;
  }

  .module-mobile-copy {
    min-height: 350px;
    padding: 25px 30px 28px;
    color: #373735;
  }

  .course-module-slide > .module-mobile-card .module-mobile-copy {
    min-height: 350px;
    padding: 25px 30px 28px;
  }

  .module-mobile-copy p {
    margin-bottom: 8px;
    color: #a75b4b;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
  }

  .module-mobile-copy h3 {
    margin-bottom: 18px;
    color: var(--sage);
    font-family: var(--display);
    font-size: 30px;
    font-weight: 500;
    line-height: 0.85;
    text-transform: uppercase;
  }

  .module-mobile-copy ol {
    padding-left: 17px;
    margin-bottom: 18px;
    font-size: 10px;
  }

  .module-mobile-copy strong,
  .module-mobile-copy span {
    display: block;
    font-size: 9px;
    line-height: 1.25;
    text-transform: uppercase;
  }

  .course-carousel-arrow,
  .module-waitlist {
    display: none;
  }

  .program-copy,
  .program-photo {
    min-height: 0;
  }

  .program-copy {
    min-height: 590px;
    order: 2;
  }

  .program-photo {
    order: 1;
  }

  .program-inner {
    width: 100%;
    padding: 48px 38px 42px;
  }

  .course-kicker {
    font-size: 10px;
  }

  .program-copy h2 {
    margin-bottom: 26px;
    font-size: 30px;
  }

  .program-copy h3 {
    font-size: 10px;
  }

  .course-check-list li {
    margin-bottom: 6px;
    font-size: 10px;
  }

  .program-photo {
    height: 430px;
  }

  .course-certifications {
    min-height: 78px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    width: 100%;
    padding: 13px 18px;
    white-space: normal;
  }

  .course-certifications span {
    font-size: 9px;
  }

  .course-certifications img {
    max-width: min(29%, 105px);
    max-height: 38px;
  }

  .course-purpose,
  .course-enrollment {
    min-height: 430px;
  }

  .course-dark-content h2 {
    font-size: 30px;
  }

  .course-dark-content p:not(.course-kicker) {
    max-width: 310px;
    margin-right: auto;
    margin-left: auto;
    font-size: 10px;
  }

  .course-profile {
    min-height: 640px;
    padding: 70px 35px 58px;
  }

  .profile-heading {
    margin-bottom: 32px;
  }

  .profile-heading h2 {
    font-size: 28px;
  }

  .profile-columns {
    display: block;
  }

  .profile-list {
    margin: 0;
  }

  .profile-list li {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .how-photo,
  .how-copy {
    min-height: 0;
  }

  .how-photo {
    height: 310px;
  }

  .how-inner {
    padding: 45px 35px;
  }

  .how-copy h2 {
    margin-bottom: 25px;
    font-size: 31px;
  }

  .how-copy p {
    font-size: 10px;
  }
}

/* Ajustes finales de componentes */
@media (min-width: 768px) {
  .course-purpose {
    min-height: 670px;
  }
}

/* Curso: bloque de propósito */
.course-purpose {
  position: relative;
  overflow: hidden;
  min-height: 670px;
}

.course-purpose::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.58);
  content: "";
  pointer-events: none;
}

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

.course-purpose .course-dark-content {
  position: relative;
  z-index: 2;
  width: min(100%, 720px);
  max-width: 720px;
  padding: 70px 24px;
}

.course-purpose .course-kicker {
  margin-bottom: 20px;
  color: #dec56d;
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.course-purpose .course-dark-content h2 {
  margin-bottom: 32px;
  color: var(--white);
  font-family: var(--display);
  font-size: 54px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.course-purpose .course-dark-content p:not(.course-kicker) {
  max-width: 620px;
  margin: 0 auto 28px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.25;
}

.course-purpose .btn-dark-outline {
  display: inline-grid;
  width: 248px;
  min-width: 248px;
  height: 52px;
  margin-top: 18px;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  place-items: center;
  color: #3f3f3f;
  background: var(--white);
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 600;
}

.course-purpose .btn-dark-outline:hover,
.course-purpose .btn-dark-outline:focus {
  border-color: #dec56d;
  color: #2f2f2f;
  background: #dec56d;
}

@media (max-width: 767.98px) {
  .course-purpose {
    min-height: 430px;
  }

  .course-purpose .course-dark-content {
    padding: 50px 25px;
  }

  .course-purpose .course-kicker {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .course-purpose .course-dark-content h2 {
    margin-bottom: 24px;
    font-size: 30px;
  }

  .course-purpose .course-dark-content p:not(.course-kicker) {
    max-width: 310px;
    margin-bottom: 20px;
    font-size: 10px;
    line-height: 1.35;
  }

  .course-purpose .btn-dark-outline {
    width: 145px;
    min-width: 145px;
    height: 36px;
    margin-top: 8px;
    font-size: 11px;
  }
}

/* Carruseles */
.carousel-control {
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.carousel-control:hover,
.carousel-control:focus-visible {
  color: var(--white);
  background: #272727;
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
  transform: scale(1.08);
}

.carousel-toolbar {
  position: absolute;
  z-index: 4;
  bottom: 18px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(45, 45, 43, 0.72);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(6px);
  transform: translateX(-50%);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.carousel-dot,
.carousel-toggle {
  border: 0;
  color: var(--white);
  cursor: pointer;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: width 0.25s ease, background-color 0.25s ease;
}

.carousel-dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: #e0a18f;
}

.carousel-dot:focus-visible,
.carousel-toggle:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.carousel-toggle {
  display: grid;
  width: 24px;
  height: 24px;
  padding: 0;
  border-radius: 50%;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  font-size: 10px;
  line-height: 1;
}

[data-carousel] {
  touch-action: pan-y;
}

[data-carousel]:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 6px;
}

.modules-grid .module-card,
.history-timeline .timeline-card {
  will-change: transform, opacity;
}

.modules-grid[data-carousel-mode="rotate"] .module-card,
.history-timeline[data-carousel-mode="rotate"] .timeline-card {
  display: none;
}

.modules-grid .module-card[data-carousel-position="0"],
.history-timeline .timeline-card[data-carousel-position="0"] {
  order: 1;
}

.modules-grid[data-carousel-mode="rotate"] .module-card[data-carousel-position="0"],
.modules-grid[data-carousel-mode="rotate"] .module-card[data-carousel-position="1"],
.modules-grid[data-carousel-mode="rotate"] .module-card[data-carousel-position="2"] {
  display: block;
}

.history-timeline[data-carousel-mode="rotate"] .timeline-card[data-carousel-position="0"],
.history-timeline[data-carousel-mode="rotate"] .timeline-card[data-carousel-position="1"],
.history-timeline[data-carousel-mode="rotate"] .timeline-card[data-carousel-position="2"] {
  display: flex;
}

.modules-grid .module-card[data-carousel-position="1"],
.history-timeline .timeline-card[data-carousel-position="1"] {
  order: 2;
}

.modules-grid .module-card[data-carousel-position="2"],
.history-timeline .timeline-card[data-carousel-position="2"] {
  order: 3;
}

.module-arrow-left {
  right: auto;
  left: -40px;
}

.course-module-slide {
  width: 100%;
  will-change: transform, opacity;
}

[data-carousel].is-leaving .is-active {
  opacity: 0;
  transition: opacity 0.26s ease, transform 0.26s ease;
}

[data-carousel].is-moving-next.is-leaving .is-active {
  transform: translateX(-24px) scale(0.985);
}

[data-carousel].is-moving-prev.is-leaving .is-active {
  transform: translateX(24px) scale(0.985);
}

[data-carousel].is-entering .is-active {
  opacity: 0;
}

[data-carousel].is-moving-next.is-entering .is-active {
  transform: translateX(24px) scale(0.985);
}

[data-carousel].is-moving-prev.is-entering .is-active {
  transform: translateX(-24px) scale(0.985);
}

[data-carousel] .is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition: opacity 0.48s ease, transform 0.48s cubic-bezier(.22,.75,.2,1);
}

.course-module-slide > img {
  width: 100%;
  border-radius: 8px;
}

.course-module-layout {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 512px;
  border-radius: 8px;
  background: #f4f4f4;
}

.course-module-layout img {
  width: 100%;
  height: 100%;
  min-height: 512px;
  aspect-ratio: 1 / 1;
  border-radius: 8px 0 0 8px !important;
  object-fit: cover;
  object-position: left center;
}

.course-module-layout div {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 55px;
}

.course-module-layout p {
  margin-bottom: 10px;
  color: var(--terracotta);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.course-module-layout h3 {
  margin-bottom: 24px;
  color: var(--sage);
  font-family: var(--display);
  font-size: 58px;
  font-weight: 500;
  line-height: 0.88;
  text-transform: uppercase;
}

.course-module-layout ol,
.module-mobile-copy ol {
  padding-left: 25px;
  margin-bottom: 28px;
  color: #3f3f3f;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.15;
}

.course-module-layout strong,
.module-mobile-copy strong {
  display: block;
  margin-bottom: 5px;
  color: #3f3f3f;
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
}

.course-module-layout span {
  display: block;
  color: #3f3f3f;
  font-size: 17px;
  line-height: 1.35;
}

@media (max-width: 991.98px) {
  .module-arrow-left {
    left: 5px;
  }
}

@media (max-width: 767.98px) {
  .modules-grid[data-carousel-mode="rotate"] .module-card,
  .history-timeline[data-carousel-mode="rotate"] .timeline-card {
    display: none;
  }

  .modules-grid[data-carousel-mode="rotate"] .module-card[data-carousel-position],
  .history-timeline[data-carousel-mode="rotate"] .timeline-card[data-carousel-position] {
    display: none;
  }

  .modules-grid[data-carousel-mode="rotate"] .module-card.is-active,
  .history-timeline[data-carousel-mode="rotate"] .timeline-card.is-active {
    display: block;
  }

  .modules-grid[data-carousel-mode="rotate"] .module-card.is-active[data-carousel-position],
  .history-timeline[data-carousel-mode="rotate"] .timeline-card.is-active[data-carousel-position] {
    display: block;
  }

  .modules-grid .module-card,
  .history-timeline .timeline-card {
    display: none;
  }

  .modules-grid .module-card.is-active,
  .history-timeline .timeline-card.is-active {
    display: block;
    animation: carousel-fade 0.28s ease;
  }

  .module-arrow-left {
    display: grid;
    top: 128px;
    right: auto;
    left: calc(50% - 129px);
    place-items: center;
  }

  .modules-grid .module-arrow:not(.module-arrow-left) {
    top: 128px;
  }

  .timeline-arrow-left {
    display: grid;
    right: auto;
    left: calc(50% - 145px);
  }

  .timeline-arrow-right {
    right: calc(50% - 145px);
  }

  .course-carousel-arrow {
    display: grid;
    top: 50%;
    width: 28px;
    height: 28px;
    place-items: center;
    font-size: 25px;
  }

  .course-carousel-arrow.arrow-left {
    left: 8px;
  }

  .course-carousel-arrow.arrow-right {
    right: 8px;
  }

  .course-module-layout {
    display: block;
    min-height: 630px;
  }

  .course-module-layout img {
    height: 285px;
    min-height: 0;
    border-radius: 4px 4px 0 0 !important;
  }

  .course-module-layout div {
    min-height: 345px;
    padding: 28px 30px;
  }

  .course-module-layout p {
    font-size: 9px;
  }

  .course-module-layout h3 {
    font-size: 30px;
  }

  .course-module-layout ol,
  .module-mobile-copy ol {
    padding-left: 17px;
    margin-bottom: 18px;
    font-size: 10px;
  }

  .course-module-layout strong,
  .module-mobile-copy strong,
  .course-module-layout span {
    font-size: 10px;
  }

  .modules-grid .carousel-toolbar,
  .history-timeline .carousel-toolbar {
    bottom: -10px;
  }

  .course-modules .carousel-toolbar {
    bottom: 14px;
  }

  .carousel-toolbar {
    gap: 9px;
    padding: 6px 9px;
  }

  .carousel-dot {
    width: 7px;
    height: 7px;
  }

  .carousel-dot.is-active {
    width: 20px;
  }
}

@keyframes carousel-fade {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Sistema tipográfico */
.intro-copy h1,
.course-banner h2,
.module-card h3,
.collaboration-copy h2,
.award-section h2,
.history-origin h1,
.awards-intro h2,
.history-next h2,
.timeline-card h3,
.course-page-hero h1,
.course-heading h2,
.program-copy h2,
.course-dark-content h2,
.profile-heading h2,
.how-copy h2,
.module-mobile-copy h3,
.course-module-layout h3 {
  font-family: var(--display);
  font-weight: 400;
}

.navbar,
.btn,
.launch-label,
.history-eyebrow,
.course-kicker,
.module-card span,
.course-heading p,
.program-copy h3,
input,
textarea,
select {
  font-family: var(--sans);
}

/* Curso */
.course-hero {
  display: grid;
  min-height: 690px;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)),
    url("cursos/header.png") center / cover no-repeat;
  text-align: center;
}

.course-hero h1,
.course-section-heading h2,
.program-copy h2,
.course-dark-content h2,
.how-copy h2 {
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
}

.course-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(43px, 4.4vw, 64px);
  line-height: 0.93;
}

.course-hero p {
  margin-bottom: 26px;
  font-size: 17px;
  line-height: 1.1;
}

.course-journey {
  padding: 74px 0 70px;
  background: #efefef;
}

.course-section-heading {
  margin-bottom: 52px;
  text-align: center;
}

.course-section-heading p {
  margin-bottom: 5px;
  color: var(--sage);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}

.course-section-heading h2 {
  margin: 0;
  font-size: 48px;
  line-height: 0.95;
}

.journey-row {
  max-width: 1050px;
  margin: auto;
}

.course-video {
  display: grid;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  place-items: center;
  color: var(--white);
  background: #000;
  font-size: 36px;
}

.journey-copy {
  padding-left: 45px;
}

.journey-copy p {
  max-width: 430px;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.35;
}

.course-modules {
  display: grid;
  position: relative;
  min-height: 560px;
  padding: 70px 20px 130px;
  place-items: center;
  background: var(--sage);
}

.course-module-card {
  width: min(100%, 1005px);
}

.course-module-card img {
  width: 100%;
  border-radius: 8px;
}

.course-slide-arrow {
  position: absolute;
  top: 44%;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--charcoal);
  font-size: 30px;
  line-height: 1;
}

.course-slide-left {
  left: max(30px, calc(50% - 570px));
}

.course-slide-right {
  right: max(30px, calc(50% - 570px));
}

.modules-waitlist {
  position: absolute;
  bottom: 43px;
}

.program-copy,
.program-photo {
  min-height: 600px;
}

.program-copy {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: #efefef;
}

.program-inner {
  width: min(100%, 585px);
  padding: 60px 85px 60px 40px;
}

.course-kicker {
  margin-bottom: 8px;
  color: #b26654;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.program-copy h2 {
  margin-bottom: 34px;
  font-size: 48px;
  line-height: 0.95;
}

.program-copy h3 {
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.course-check-list,
.profile-list {
  padding: 0;
  list-style: none;
}

.course-check-list {
  margin-bottom: 30px;
}

.course-check-list li,
.profile-list li {
  position: relative;
  padding-left: 24px;
}

.course-check-list li {
  margin-bottom: 7px;
  font-size: 14px;
}

.course-check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  place-items: center;
  color: var(--white);
  background: #b26654;
  content: "✓";
  font-size: 10px;
}

.program-photo {
  overflow: hidden;
}

.program-photo img,
.how-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-certifications {
  display: flex;
  min-height: 90px;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 15px 25px;
  background: var(--white);
}

.course-certifications span {
  font-size: 16px;
}

.course-certifications img {
  width: auto;
  max-width: 155px;
  max-height: 50px;
}

.course-purpose,
.course-enrollment {
  display: grid;
  min-height: 520px;
  place-items: center;
  color: var(--white);
  background: #000;
  text-align: center;
}

.course-dark-content {
  max-width: 650px;
  padding: 55px 25px;
}

.course-dark-content h2 {
  margin-bottom: 24px;
  font-size: 50px;
  line-height: 0.95;
}

.course-dark-content p:not(.course-kicker) {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.35;
}

.btn-dark-outline {
  margin-top: 10px;
  border: 1px solid #292929;
  color: var(--white);
  background: transparent;
}

.btn-dark-outline:hover {
  border-color: var(--white);
  color: #000;
  background: var(--white);
}

.course-profile {
  padding: 90px 0 80px;
  color: var(--white);
  background: var(--sage);
}

.profile-heading {
  margin-bottom: 50px;
}

.profile-heading p {
  color: rgba(255, 255, 255, 0.75);
}

.profile-heading h2 {
  font-size: 44px;
}

.profile-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  max-width: 850px;
  margin: auto;
}

.profile-list li {
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.35;
}

.profile-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: #e7c66a;
  content: "●";
}

.how-photo,
.how-copy {
  min-height: 650px;
}

.how-photo {
  overflow: hidden;
}

.how-photo img {
  object-position: center 48%;
}

.how-copy {
  display: flex;
  align-items: center;
  background: #efefef;
}

.how-inner {
  max-width: 570px;
  padding: 65px 75px;
}

.how-copy h2 {
  margin-bottom: 30px;
  font-size: 50px;
}

.how-copy p {
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 1.35;
}

.course-enrollment {
  min-height: 500px;
}

@media (max-width: 767.98px) {
  .course-hero {
    min-height: 455px;
    align-items: start;
    padding-top: 92px;
    background-position: center;
  }

  .course-hero h1 {
    font-size: 30px;
  }

  .course-hero p {
    font-size: 12px;
  }

  .course-hero-content .d-flex {
    flex-direction: column;
    align-items: center;
    gap: 11px !important;
  }

  .course-journey {
    padding: 45px 25px 42px;
  }

  .course-section-heading {
    margin-bottom: 28px;
  }

  .course-section-heading p {
    font-size: 10px;
  }

  .course-section-heading h2 {
    font-size: 29px;
  }

  .course-video {
    min-height: 195px;
    margin-bottom: 28px;
  }

  .journey-copy {
    padding: 0;
    text-align: center;
  }

  .journey-copy p {
    max-width: 300px;
    margin: 0 auto 18px;
    font-size: 10px;
  }

  .course-modules {
    min-height: 760px;
    padding: 44px 23px 118px;
  }

  .course-module-card {
    overflow: hidden;
    width: 100%;
    height: 478px;
    border-radius: 4px;
    background: #f4f4f4;
  }

  .course-module-card img {
    width: auto;
    max-width: none;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    object-position: left center;
  }

  .course-slide-arrow {
    display: none;
  }

  .modules-waitlist {
    display: none;
  }

  .program-copy,
  .program-photo {
    min-height: 0;
  }

  .program-inner {
    width: 100%;
    padding: 48px 38px 42px;
  }

  .course-kicker {
    font-size: 10px;
  }

  .program-copy h2 {
    margin-bottom: 26px;
    font-size: 30px;
  }

  .program-copy h3 {
    font-size: 10px;
  }

  .course-check-list li {
    margin-bottom: 6px;
    font-size: 10px;
  }

  .program-photo {
    height: 280px;
  }

  .course-certifications {
    min-height: 78px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    width: 100%;
    padding: 13px 18px;
    white-space: normal;
  }

  .course-certifications span {
    font-size: 9px;
  }

  .course-certifications img {
    max-width: min(29%, 105px);
    max-height: 38px;
  }

  .course-purpose,
  .course-enrollment {
    min-height: 430px;
  }

  .course-dark-content h2 {
    font-size: 30px;
  }

  .course-dark-content p:not(.course-kicker) {
    max-width: 310px;
    margin-right: auto;
    margin-left: auto;
    font-size: 10px;
  }

  .course-profile {
    padding: 52px 35px 45px;
  }

  .profile-heading {
    margin-bottom: 32px;
  }

  .profile-heading h2 {
    font-size: 28px;
  }

  .profile-columns {
    display: block;
  }

  .profile-list {
    margin: 0;
  }

  .profile-list li {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .how-photo,
  .how-copy {
    min-height: 0;
  }

  .how-photo {
    height: 310px;
  }

  .how-inner {
    padding: 45px 35px;
  }

  .how-copy h2 {
    margin-bottom: 25px;
    font-size: 31px;
  }

  .how-copy p {
    font-size: 10px;
  }
}

@media (min-width: 768px) {
  .course-purpose {
    min-height: 670px;
  }
}

/* Curso: CTA final de inscripcion */
.course-enrollment {
  position: relative;
  overflow: hidden;
  min-height: 430px;
}

.course-enrollment::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.62);
  content: "";
  pointer-events: none;
}

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

.course-enrollment .course-dark-content {
  position: relative;
  z-index: 2;
  width: min(100%, 720px);
  max-width: 720px;
  padding: 55px 24px;
}

.course-enrollment .course-kicker {
  margin-bottom: 10px;
  color: #dec56d;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.course-enrollment .course-dark-content h2 {
  margin-bottom: 25px;
  color: var(--white);
  font-family: var(--display);
  font-size: 48px;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.course-enrollment .course-dark-content p:not(.course-kicker) {
  margin-bottom: 25px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.course-enrollment .course-dark-content p strong {
  font-weight: 700;
}

.course-enrollment .btn-light-brand {
  display: inline-grid;
  width: 150px;
  min-width: 150px;
  height: 34px;
  padding: 0 14px;
  border: 1px solid var(--white);
  border-radius: 1px;
  place-items: center;
  color: #3e3e3e;
  background: var(--white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .course-enrollment {
    min-height: 430px;
  }

  .course-enrollment .course-dark-content {
    padding: 50px 24px;
  }

  .course-enrollment .course-kicker {
    font-size: 10px;
  }

  .course-enrollment .course-dark-content h2 {
    margin-bottom: 22px;
    font-size: 30px;
  }

  .course-enrollment .course-dark-content p:not(.course-kicker) {
    font-size: 10px;
  }

  .course-enrollment .btn-light-brand {
    width: 120px;
    min-width: 120px;
    height: 31px;
    font-size: 9px;
  }
}
