:root {
  --violeta-header: #22123F;
  --violeta-botones: #5B2070;
  --verde-agua: #D4E7D0;
  --rosa: #FFABB6;
  --crema: #F4E7C2;
  --amarillo: #EDFF61;
  --amarillo-fluo: #E0FF37;
  --violeta-azulado-logo: #968CFF;
  --blanco: #ffffff;
  --negro: #0b0b0b;
}

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

html {
  scroll-behavior: smooth;
  background: var(--violeta-header);
}

body {
  margin: 0;
  color: var(--negro);
  font-family: "Roboto", Arial, sans-serif;
  background: var(--violeta-header);
}

.motion-enhanced.motion-page-enter main,
.motion-enhanced.motion-page-enter .site-footer {
  animation: pageFadeIn 400ms cubic-bezier(.22,.61,.36,1) both;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
}

.content-title {
  max-width: 617px;
  margin: 0 0 50px;
  color: #22123F;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.18;
}

.gesture-title {
  font-family: "Reenie Beanie", cursive;
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
}

.section-label {
  margin: 0 0 14px;
  color: var(--violeta-botones);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1.5px;
}

.button,
.button-outline,
.button-small-outline,
.media-button,
.social-pill,
.join-button {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 2px solid var(--violeta-botones);
  border-radius: 999px;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

a.button:hover,
a.button:focus-visible,
a.button-outline:hover,
a.button-outline:focus-visible,
a.button-small-outline:hover,
a.button-small-outline:focus-visible,
a.media-button:hover,
a.media-button:focus-visible,
a.social-pill:hover,
a.social-pill:focus-visible,
a.join-button:hover,
a.join-button:focus-visible {
  color: var(--button-hover-color, var(--blanco));
  background: var(--button-hover-bg, var(--violeta-botones));
  border-width: 2px;
  border-style: solid;
  transform: translateY(-2px);
}

.motion-enhanced .content-motion-button {
  --content-button-reveal-y: 12px;
  --content-button-parallax-y: 0px;
  --content-button-motion-y: calc(var(--content-button-reveal-y) + var(--content-button-parallax-y));
  opacity: 0;
  transform: translate3d(0, var(--content-button-motion-y), 0);
  transition: opacity 460ms cubic-bezier(.22,.61,.36,1), transform 460ms cubic-bezier(.22,.61,.36,1), background-color 180ms ease, color 180ms ease;
  will-change: opacity, transform;
}

.motion-enhanced .content-motion-button.is-visible {
  --content-button-reveal-y: 0px;
  opacity: 1;
}

.motion-enhanced a.content-motion-button:hover,
.motion-enhanced a.content-motion-button:focus-visible {
  transform: translate3d(0, calc(var(--content-button-motion-y, 0px) - 2px), 0);
}

.motion-enhanced a.content-motion-button:active {
  transform: translate3d(0, var(--content-button-motion-y, 0px), 0) scale(.985);
  transition-duration: 90ms;
}

.button img,
.button-outline img,
.button-small-outline img,
.media-button img,
.social-pill img,
.join-button img {
  flex: 0 0 auto;
  object-fit: contain;
  transition: filter 180ms ease;
}

a.button:hover img,
a.button:focus-visible img,
a.button-outline:hover img,
a.button-outline:focus-visible img,
a.button-small-outline:hover img,
a.button-small-outline:focus-visible img,
a.media-button:hover img,
a.media-button:focus-visible img,
a.social-pill:hover img,
a.social-pill:focus-visible img,
a.join-button:hover img,
a.join-button:focus-visible img {
  filter: var(--button-icon-hover-filter, brightness(0) invert(1));
}

.button-yellow {
  --button-hover-bg: var(--violeta-botones);
  --button-hover-color: var(--blanco);
  --button-icon-hover-filter: brightness(0) invert(1);
  border-color: var(--amarillo-fluo);
  color: var(--violeta-botones);
  background: var(--amarillo-fluo);
}

.button-yellow:hover,
.button-yellow:focus-visible {
  border-color: var(--violeta-botones);
}

.button-yellow img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(51%) saturate(1431%) hue-rotate(264deg) brightness(88%) contrast(89%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--violeta-header);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 20px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  transition: transform 180ms ease;
}

.brand:hover {
  transform: translateY(-2px);
}

.brand img {
  width: 205px;
  max-height: 44px;
  object-fit: contain;
}

.desktop-nav,
.header-actions {
  display: none;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 2px solid var(--amarillo-fluo);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: var(--amarillo-fluo);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  padding: 8px 20px 22px;
  background: var(--violeta-header);
  border-top: 1px solid rgba(224, 255, 55, 0.22);
}

.mobile-menu.is-open {
  display: grid;
  gap: 6px;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--blanco);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.2px;
}

.mobile-menu a.active {
  color: var(--amarillo-fluo);
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  color: var(--violeta-header);
  background: var(--amarillo-fluo);
  transform: translateY(-2px);
}

.mobile-menu .button-mobile-whatsapp {
  --button-hover-bg: var(--amarillo-fluo);
  --button-hover-color: var(--violeta-header);
  width: fit-content;
  min-width: 60%;
  max-width: 70%;
  justify-content: center;
  align-self: flex-start;
  margin-top: 16px;
  padding: 0 22px;
  border: 2px solid var(--amarillo-fluo);
  color: var(--amarillo-fluo);
}

.hero {
  display: flex;
  flex-direction: column;
  background: var(--crema);
  margin-top: 0;
}

.hero-image {
  position: relative;
  overflow: hidden;
  order: 1;
  aspect-ratio: 2162 / 1517;
  min-height: 0;
  margin: 0;
  border: 0;
  background: transparent;
}

.hero-image img {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 110%;
  min-height: 0;
  object-fit: cover;
  object-position: center 38%;
}

.hero-image img,
.hero-motion {
  transform: translate3d(0, calc(-50% + var(--hero-parallax-y, 0px)), 0);
  animation: heroBreathing 8s ease-in-out infinite;
  will-change: transform;
}

@keyframes heroBreathing {
  0%,
  100% {
    transform: translate3d(0, calc(-50% + var(--hero-parallax-y, 0px) - 5px), 0);
  }

  50% {
    transform: translate3d(0, calc(-50% + var(--hero-parallax-y, 0px) + 5px), 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image img,
  .hero-motion {
    animation: none;
    transform: translate3d(0, -50%, 0);
    will-change: auto;
  }
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  order: 2;
  padding: 42px 24px 48px;
  background: var(--crema);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  min-height: 28px;
  margin: 0 0 26px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--amarillo-fluo);
  background: #988BFF;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.hero h1 {
  max-width: 520px;
  margin: 0;
  color: var(--violeta-header);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.12;
}

.hero h1 span {
  display: block;
}

.hero-description {
  max-width: 500px;
  margin: 28px 0 30px;
  font-size: 15px;
  line-height: 1.7;
}

.hero .button-outline {
  color: var(--violeta-botones);
  background: transparent;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.6px;
}

.social-strip {
  background: linear-gradient(
    90deg,
    var(--verde-agua) 0%,
    var(--crema) 33%,
    var(--rosa) 72%,
    rgba(91, 32, 112, 0.5) 100%
  );
}

.social-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
  min-height: 76px;
  padding: 16px 20px;
}

.social-strip p {
  margin: 0;
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: 20px;
  line-height: 1.2;
}

.social-strip-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.social-pill {
  gap: 8px;
  color: var(--violeta-botones);
  background: transparent;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.social-pill img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.social-pill img[src$="youtube-violeta.svg"] {
  width: 22px;
  height: 16px;
}

.about-home {
  background: var(--blanco);
}

.about-home-grid {
  display: grid;
  gap: 48px;
  padding: 64px 24px 72px;
}

.about-home-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-home-carousel {
  position: relative;
  width: min(100%, 370px);
  aspect-ratio: 37 / 34;
  overflow: hidden;
  background: var(--blanco);
}

.about-home-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.about-home-slide.is-active {
  opacity: 1;
}

.about-home-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.motion-enhanced .about-home-slide img.home-about-motion {
  opacity: 0;
  transform: translate3d(0, calc(12px + var(--about-parallax-y, 0px)), 0);
  transition: opacity 520ms cubic-bezier(.22,.61,.36,1), transform 520ms cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}

.motion-enhanced .about-home-slide img.home-about-motion.is-visible {
  opacity: 1;
  transform: translate3d(0, var(--about-parallax-y, 0px), 0);
}

.about-home-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 500px;
}

.about-home .section-label {
  margin: 0 0 24px;
  color: var(--violeta-botones);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.about-home h2 {
  margin: 0 0 28px;
  color: var(--violeta-botones);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.16;
}

.about-home-copy p:not(.section-label) {
  max-width: 500px;
  margin: 0;
  font-size: 14px;
  line-height: 1.66;
}

.about-home-copy .featured-note {
  margin-top: 22px;
  font-weight: 700;
}

.about-home .button-outline {
  margin-top: 26px;
  color: var(--violeta-botones);
  background: transparent;
  font-family: "Roboto Mono", "Courier New", monospace;
  font-size: 14px;
  font-weight: 600;
}

.pillars {
  background: var(--verde-agua);
}

.pillars .section-container {
  max-width: 1110px;
  margin: 0 auto;
  padding: 64px 24px 72px;
}

.pillars-heading {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.pillars-heading h2 {
  margin: 0;
  color: var(--negro);
}

.pillars-heading p {
  margin: 16px 0 0;
  color: var(--negro);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: 14px;
  line-height: 1.45;
}

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.pillar-card {
  display: flex;
  min-height: 191px;
  cursor: pointer;
  flex-direction: column;
  padding: 20px;
  border-radius: 16px;
  background: var(--blanco);
  box-shadow: 0 8px 24px rgba(34, 18, 63, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pillar-card:hover,
.pillar-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(34, 18, 63, 0.16);
}

.pillar-card-heading {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.pillar-card-heading img {
  width: 100%;
  height: 44px;
  object-fit: contain;
}

.pillar-card-heading .pillar-icon-wide {
  width: 100%;
}

.pillar-card h3 {
  margin: 0;
  color: var(--violeta-header);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.15;
}

.pillar-card h4 {
  margin: 0 0 14px;
  color: var(--violeta-header);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
}

.pillar-card p {
  margin: 0;
  color: #6E6878;
  font-size: 13px;
  line-height: 1.32;
}

.podcast-home {
  background: #2D1A3E;
  color: var(--blanco);
}

.podcast-home-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 24px 78px;
  text-align: center;
}

.podcast-logo {
  width: 170px;
  max-height: 40px;
  object-fit: contain;
  margin-bottom: 36px;
}

.podcast-home h2 {
  margin: 0;
  color: var(--blanco);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}

.podcast-home p {
  max-width: 410px;
  margin: 22px 0 0;
  color: var(--blanco);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: 17px;
  line-height: 1.45;
}

.podcast-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  margin-top: 40px;
}

.podcast-home .media-button {
  gap: 16px;
  width: min(100%, 338px);
  min-height: 86px;
  font-family: "Roboto Mono", "Courier New", monospace;
  font-size: 15px;
  font-weight: 600;
}

.media-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.media-button-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.media-button-icon img[src$="youtube-fluo.svg"] {
  width: 56px;
  height: 40px;
}

.community-hero {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  background:
    linear-gradient(115deg, rgba(212, 231, 208, 0.96) 0%, rgba(244, 231, 194, 0.9) 38%, rgba(255, 171, 182, 0.86) 72%, rgba(91, 32, 112, 0.42) 100%),
    var(--verde-agua);
}

.community-hero img {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 110%;
  min-height: 198px;
  object-fit: cover;
  object-position: center;
}

.community-page {
  background: var(--blanco);
}

.community-page-inner {
  max-width: 820px;
  padding: 64px 24px 82px;
}

.community-subtitle {
  max-width: 617px;
  margin: 0;
  color: var(--negro);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.66;
}

.community-podcast-logo {
  width: 233px;
  max-width: 100%;
  height: auto;
  margin-top: 58px;
  object-fit: contain;
}

.community-body {
  margin-top: 38px;
}

.community-body > p {
  max-width: 650px;
  margin: 0;
  color: var(--negro);
  font-size: 16px;
  line-height: 1.66;
}

.community-actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 34px;
}

.community-media-button {
  gap: 16px;
  width: min(100%, 338px);
  min-height: 100px;
  font-family: "Roboto Mono", "Courier New", monospace;
  font-size: 15px;
  font-weight: 600;
}

.community-topics {
  margin-top: 58px;
}

.community-topics p {
  max-width: 658px;
  margin: 0;
  color: var(--violeta-header);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: 19px;
  line-height: 1.45;
}

.purpose-hero {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 48px 24px;
  background:
    linear-gradient(110deg, var(--verde-agua) 0%, var(--crema) 30%, var(--rosa) 64%, rgba(152, 139, 255, 0.72) 100%),
    var(--verde-agua);
  text-align: center;
}

.purpose-hero-logo {
  width: min(100%, 360px);
  max-width: calc(100vw - 48px);
  height: auto;
  object-fit: contain;
}

.purpose-page {
  background: var(--blanco);
}

.purpose-page-grid {
  display: grid;
  gap: 56px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 82px;
}

.purpose-main {
  width: 100%;
  min-width: 0;
  max-width: 516px;
}

.purpose-icon {
  width: 118px;
  height: 118px;
  object-fit: contain;
}

.purpose-main blockquote {
  margin: 34px 0 0;
  color: #7370FF;
}

.purpose-main blockquote p {
  margin: 0;
}

.purpose-main cite {
  display: block;
  margin-top: 16px;
  color: #7370FF;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1.4px;
}

.purpose-copy {
  margin-top: 48px;
}

.purpose-copy p {
  margin: 0;
  color: var(--negro);
  font-size: 15px;
  line-height: 1.66;
}

.purpose-challenges {
  margin-top: 42px;
}

.purpose-challenges ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.purpose-challenges li {
  padding-left: 22px;
  color: var(--violeta-header);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: 17px;
  line-height: 1.35;
  position: relative;
}

.purpose-challenges li::before {
  position: absolute;
  left: 0;
  top: 0.43em;
  width: 9px;
  height: 9px;
  border: 2px solid #F4C46A;
  border-radius: 50%;
  content: "";
}

.podcast-yoga-transition {
  height: 10px;
  background: linear-gradient(
    90deg,
    #988BFF 0%,
    var(--rosa) 32%,
    var(--crema) 58%,
    var(--amarillo) 100%
  );
}

.yoga-home {
  display: grid;
  background: var(--rosa);
}

.yoga-home-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 56px 24px 64px;
}

.yoga-home .section-label {
  margin: 0 0 18px;
  color: var(--violeta-botones);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.35px;
}

.yoga-home h2 {
  margin: 0 0 18px;
  color: var(--blanco);
}

.yoga-home-copy > p:not(.section-label) {
  max-width: 596px;
  margin: 0;
  color: var(--negro);
  font-size: 15px;
  line-height: 1.7;
}

.yoga-home .button-light {
  --button-hover-bg: var(--violeta-botones);
  --button-hover-color: var(--blanco);
  margin-top: 32px;
  border-color: var(--violeta-botones);
  color: var(--violeta-botones);
  background: transparent;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.yoga-home-image {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.yoga-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.yoga-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.yoga-slide.is-active {
  opacity: 1;
}

.yoga-slide img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

@media (prefers-reduced-motion: reduce) {
  .yoga-slide {
    transition: none;
  }
}

.series-transition {
  height: 10px;
  background: linear-gradient(
    90deg,
    var(--rosa) 0%,
    var(--crema) 42%,
    var(--verde-agua) 72%,
    var(--amarillo) 100%
  );
}

.series-wrapper {
  background: var(--blanco);
}

.series-home {
  position: relative;
  display: grid;
  gap: 32px;
  padding: 48px 24px 56px;
  overflow: hidden;
  background: var(--blanco);
}

.series-home::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 18px;
  background: linear-gradient(
    180deg,
    var(--rosa) 0%,
    var(--crema) 38%,
    var(--verde-agua) 70%,
    var(--amarillo) 100%
  );
}

.series-poster,
.series-copy,
.series-production {
  position: relative;
  z-index: 1;
}

.series-poster {
  width: min(100%, 199px);
  justify-self: center;
}

.series-poster img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.series-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 582px;
}

.series-copy .section-label {
  margin: 0 0 24px;
  color: var(--violeta-botones);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.series-copy h2 {
  margin: 0 0 18px;
  color: var(--violeta-header);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.18;
}

.series-copy p:not(.section-label) {
  margin: 0;
  color: #545454;
  font-size: 14px;
  line-height: 1.7;
}

.series-copy .button-small-outline {
  margin-top: 28px;
  color: var(--violeta-botones);
  background: transparent;
  font-family: "Roboto Mono", "Courier New", monospace;
  font-size: 13px;
  font-weight: 600;
}

.series-production {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.series-production p {
  margin: 0;
  color: #545454;
  font-size: 14px;
  line-height: 1.4;
}

.series-production img {
  width: 160px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.series-yellow-edge {
  display: none;
}

.join-home {
  background: var(--amarillo);
}

.join-home-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 58px 24px 64px;
  text-align: center;
}

.join-home h2 {
  margin: 0;
  color: var(--violeta-header);
}

.join-home p {
  max-width: 658px;
  margin: 18px 0 0;
  color: var(--violeta-header);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: 15px;
  line-height: 1.6;
}

.join-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin-top: 28px;
}

.join-button {
  gap: 10px;
  color: var(--violeta-botones);
  background: transparent;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.join-button img {
  width: 24px;
  height: 24px;
}

.about-page-hero {
  display: grid;
  margin-top: 0;
  overflow: hidden;
  border: 0;
  background: var(--blanco);
}

.about-page-hero-image {
  min-height: 190px;
  margin: 0;
  border: 0;
  overflow: hidden;
}

.about-page-hero-image img {
  position: relative;
  top: 50%;
  display: block;
  width: 100%;
  height: 110%;
  min-height: 209px;
  object-fit: cover;
  object-position: center;
}

.about-page-content {
  background: var(--blanco);
}

.about-page-grid {
  display: grid;
  gap: 56px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 72px;
}

.about-page-story {
  max-width: 516px;
}

.about-page-text {
  color: var(--negro);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.66;
}

.about-page-text p {
  margin: 0 0 24px;
}

.about-page-text p:last-child {
  margin-bottom: 0;
}

.about-page-text strong {
  font-weight: 700;
}

.about-page-text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about-foundation-block {
  margin-top: 28px;
}

.about-foundation-block p {
  margin-bottom: 0;
}

.about-foundation-block img {
  width: min(100%, 173px);
  height: auto;
  margin: 24px 0 0;
  object-fit: contain;
}

.about-page-photo {
  width: 284px;
  max-width: 100%;
  height: auto;
  margin-top: 40px;
  object-fit: cover;
}

.side-links {
  color: var(--violeta-botones);
  padding-top: 0;
}

.side-links h2 {
  margin: 0;
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: clamp(21px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.2;
}

.side-links ul {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--violeta-botones);
}

.side-links li {
  border-bottom: 2px solid var(--violeta-botones);
}

.side-links a {
  display: flex;
  align-items: center;
  min-height: 66px;
  color: var(--violeta-botones);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: clamp(18px, 1.8vw, 20px);
  font-weight: 500;
  line-height: 1.24;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: transform 180ms ease, color 180ms ease;
}

.side-links a:hover,
.side-links a:focus-visible {
  color: var(--violeta-header);
  transform: translateY(-2px);
}

.about-page-more {
  background: var(--verde-agua);
}

.about-page-more-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
  padding: 58px 24px 64px;
  text-align: center;
}

.about-page-more h2 {
  margin: 0;
  color: var(--violeta-header);
}

.about-page-more-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.about-page-more-button {
  gap: 10px;
  min-height: 50px;
  padding-right: 28px;
  padding-left: 28px;
  border-color: transparent;
  color: var(--violeta-botones);
  background: var(--blanco);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.2px;
}

.about-page-more-button:hover,
.about-page-more-button:focus-visible {
  border-color: var(--violeta-botones);
  background: var(--violeta-botones);
  color: var(--blanco);
}

.about-page-more-button img {
  width: 26px;
  height: 26px;
}

.motion-enhanced .motion-reveal-link {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition: opacity 460ms ease, transform 460ms cubic-bezier(.22,.61,.36,1);
}

.motion-enhanced .motion-reveal-link.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: no-preference) {
  .pillar-card-heading img,
  .purpose-icon,
  .services-yoga-icon,
  .services-conferences-icon,
  .about-page-more-button img {
    transition: transform 260ms cubic-bezier(.22,.61,.36,1), filter 260ms cubic-bezier(.22,.61,.36,1), opacity 260ms cubic-bezier(.22,.61,.36,1);
  }

  .pillar-card:hover .pillar-card-heading img,
  .pillar-card:focus-visible .pillar-card-heading img,
  .purpose-icon:hover,
  .purpose-icon:focus-visible,
  .services-yoga-icon:hover,
  .services-yoga-icon:focus-visible,
  .services-conferences-icon:hover,
  .services-conferences-icon:focus-visible,
  .about-page-more-button:hover img,
  .about-page-more-button:focus-visible img {
    opacity: 0.98;
    filter: brightness(1.03) saturate(1.06);
    transform: scale(1.025) translateY(-2px);
  }
}

.services-hero {
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: 260px;
  overflow: hidden;
  background:
    linear-gradient(110deg, var(--verde-agua) 0%, var(--crema) 32%, var(--rosa) 66%, rgba(152, 139, 255, 0.72) 100%),
    var(--verde-agua);
}

.services-hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.service-hero-slide,
.auto-fade-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.service-hero-slide.is-active,
.auto-fade-slide.is-active {
  opacity: 1;
}

.service-hero-slide img {
  position: relative;
  top: 50%;
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center;
}

.service-hero-slide:nth-child(1) img {
  object-position: center 28%;
}

.service-hero-slide:nth-child(2) img {
  object-position: center 24%;
}

.service-hero-slide:nth-child(3) img {
  object-position: center 44%;
}

.service-hero-slide:nth-child(4) img {
  object-position: center 34%;
}

.services-hero-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: linear-gradient(110deg, rgba(212, 231, 208, 0.94) 0%, rgba(244, 231, 194, 0.82) 34%, rgba(255, 171, 182, 0.72) 68%, rgba(152, 139, 255, 0.64) 100%);
}

.services-hero-icon {
  width: min(100%, 420px);
  height: auto;
  object-fit: contain;
}

.services-yoga {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  background: var(--blanco);
}

.services-section-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 24px 72px;
}

.services-yoga-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 760px;
  min-width: 0;
  margin: 0 auto;
  text-align: center;
}

.services-yoga-icon {
  width: min(100%, 220px);
  height: auto;
  margin-bottom: 30px;
  object-fit: contain;
}

.services-yoga-header .content-title {
  width: 100%;
  margin-right: auto;
  margin-bottom: 18px;
  margin-left: auto;
  text-align: center;
}

.services-yoga-subtitle {
  width: 100%;
  max-width: 650px;
  margin: 0 0 24px;
  color: var(--violeta-botones);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: 20px;
  line-height: 1.35;
}

.services-yoga-header p:not(.services-yoga-subtitle) {
  width: 100%;
  max-width: 650px;
  margin: 0;
  color: var(--negro);
  font-size: 15px;
  line-height: 1.66;
}

.services-yoga-header .services-featured {
  margin-top: 22px;
  color: var(--violeta-header);
  font-weight: 700;
}

.services-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.services-actions .button-outline,
.services-final-cta .button-outline {
  gap: 10px;
  color: var(--violeta-botones);
  background: transparent;
  font-family: "Roboto Mono", "Courier New", monospace;
  font-size: 14px;
  font-weight: 600;
}

.services-button-icon {
  width: 22px;
  height: 22px;
}

.services-button-icon[src$="youtube-violeta.svg"] {
  width: 24px;
  height: 17px;
}

.services-button-icon-whatsapp {
  filter: brightness(0) saturate(100%) invert(18%) sepia(51%) saturate(1431%) hue-rotate(264deg) brightness(88%) contrast(89%);
}

.services-info-grid {
  display: grid;
  min-width: 0;
  gap: 32px;
  margin-top: 58px;
}

.services-info-column {
  display: grid;
  min-width: 0;
  gap: 32px;
}

.services-yoga-header > *,
.services-info-block {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

.services-info-block p {
  margin: 0;
  color: var(--negro);
  font-size: 15px;
  line-height: 1.66;
}

.services-duo-block {
  margin-top: 58px;
  padding: 36px 24px;
  border-radius: 16px;
  background: rgba(255, 171, 182, 0.15);
}

.services-duo-header {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.services-duo-header h2 {
  margin: 0;
  color: var(--violeta-header);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
  line-height: 1.18;
}

.services-duo-header p {
  margin: 18px 0 0;
  color: var(--negro);
  font-size: 15px;
  line-height: 1.66;
}

.services-duo-content {
  display: grid;
  gap: 32px;
  margin-top: 34px;
}

.services-duo-copy {
  display: grid;
  gap: 32px;
}

.services-duo-copy ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-duo-copy li {
  position: relative;
  padding-left: 20px;
  color: var(--negro);
  font-size: 15px;
  line-height: 1.66;
}

.services-duo-copy li::before {
  position: absolute;
  left: 0;
  content: "•";
}

.services-duo-copy strong,
.services-duo-copy span {
  display: block;
}

.services-duo-image {
  min-height: 320px;
}

.services-duo-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
}

.services-apda-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 650px;
  margin: 54px auto 0;
  text-align: center;
}

.services-apda-block p {
  margin: 0;
  color: var(--negro);
  font-size: 15px;
  line-height: 1.66;
}

.services-apda-block p + p {
  margin-top: 18px;
}

.services-apda-block img {
  width: min(100%, 220px);
  height: auto;
  margin-top: 24px;
  object-fit: contain;
}

.services-photo-strip {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  background: var(--rosa);
}

.services-photo-grid {
  display: grid;
}

.services-photo-frame {
  height: 260px;
  overflow: hidden;
}

.services-photo-frame img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, -5px, 0);
}

.services-photo-frame:nth-child(n+2) {
  display: none;
}

.services-photo-frame:nth-child(1) img {
  object-position: center 24%;
}

.services-photo-frame:nth-child(2) img {
  object-position: center 43%;
}

.services-photo-frame:nth-child(3) img {
  object-position: center 39%;
}

@keyframes servicesPhotoFloat {
  0%,
  100% {
    transform: translate3d(0, -8px, 0);
  }

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

.services-start {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  background: var(--rosa);
}

.services-start-inner,
.services-final-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 58px 24px 64px;
  text-align: center;
}

.services-final-inner {
  padding-top: 58px;
  padding-bottom: 64px;
}

.services-final-inner .button-outline {
  margin-top: 30px;
}

.services-start h2,
.services-final-cta h2 {
  margin: 0;
  color: var(--violeta-header);
}

.services-start h2 {
  color: var(--blanco);
}

.services-conferences {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  background: var(--blanco);
}

.services-conferences-grid {
  display: grid;
  width: 100%;
  gap: 56px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 82px;
}

.services-conferences-main {
  width: 100%;
  min-width: 0;
  max-width: 516px;
}

.services-participations {
  min-width: 0;
  max-width: 100%;
}

.services-conferences-icon {
  width: 154px;
  height: 118px;
  object-fit: contain;
}

.services-conferences-main .content-title {
  margin-top: 48px;
}

.services-conferences-main p {
  margin: 0;
  color: var(--negro);
  font-size: 15px;
  line-height: 1.66;
}

.services-pax-credit {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 44px;
  color: var(--negro);
  font-size: 13px;
  line-height: 1.4;
}

.services-pax-credit img {
  width: auto;
  height: 29px;
  object-fit: contain;
}

.services-final-cta {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  background: #E4F7FF;
}

@media (prefers-reduced-motion: reduce) {
  .auto-fade-slide {
    transition: none;
  }

  .services-photo-frame img {
    animation: none;
  }
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 134px;
  padding: 0;
  background: #2D1A3E;
  text-align: center;
}

.home-footer {
  background: var(--violeta-header);
}

.footer-main {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 26px 24px 20px;
}

.footer-logo {
  width: 242px;
  max-width: 80vw;
  height: auto;
  object-fit: contain;
}

.footer-main p {
  margin: 0;
  color: var(--blanco);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: 14px;
  line-height: 1.15;
}

.footer-institutions {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 20px;
  width: 100%;
  max-width: 960px;
  margin: 0 auto 18px;
  padding: 4px 24px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.82);
  text-align: center;
}

.footer-institutions-title {
  margin: 0;
  color: var(--blanco);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: 15px;
  line-height: 1.25;
}

.footer-institutions-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.footer-institutions-logos img {
  width: auto;
  max-width: 170px;
  height: 34px;
  object-fit: contain;
}

.footer-institutions-logos img[src$="pax-logo-bco.png"] {
  height: 42px;
}

.footer-institutions-logos img[src$="apda-logo-bco.svg"] {
  height: 46px;
}

.footer-team {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 27px;
  padding: 10px 24px 13px;
  color: var(--amarillo-fluo);
  background: var(--violeta-header);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: 10px;
  line-height: 1.35;
}

.internal-footer {
  background: var(--violeta-header);
}

.internal-footer .footer-main {
  padding: 34px 24px 38px;
}

.internal-footer .footer-team {
  padding: 12px 24px 16px;
  background: var(--violeta-header);
}

.internal-footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.internal-footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  border: 2px solid var(--amarillo-fluo);
  border-radius: 999px;
  color: var(--amarillo-fluo);
  background: transparent;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.internal-footer-social:hover,
.internal-footer-social:focus-visible {
  color: var(--violeta-header);
  background: var(--amarillo-fluo);
  transform: translateY(-2px);
}

.internal-footer-social img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  transition: filter 180ms ease;
}

.internal-footer-social img[src$="youtube.svg"] {
  width: 22px;
  height: 16px;
}

.internal-footer-social:hover img,
.internal-footer-social:focus-visible img {
  filter: brightness(0) saturate(100%) invert(8%) sepia(35%) saturate(2236%) hue-rotate(237deg) brightness(94%) contrast(96%);
}

@media (min-width: 480px) {
  .hero-copy {
    padding-right: 40px;
    padding-left: 40px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .about-home-grid {
    padding-right: 40px;
    padding-left: 40px;
  }

  .pillars .section-container {
    padding-right: 40px;
    padding-left: 40px;
  }

  .podcast-home-inner {
    padding-right: 40px;
    padding-left: 40px;
  }

  .yoga-home-copy {
    padding-right: 40px;
    padding-left: 40px;
  }

  .series-home,
  .join-home-inner {
    padding-right: 40px;
    padding-left: 40px;
  }

  .services-section-inner,
  .services-start-inner,
  .services-conferences-grid,
  .services-final-inner {
    padding-right: 40px;
    padding-left: 40px;
  }
}

@media (min-width: 700px) {
  .footer-institutions {
    grid-template-columns: auto auto;
    gap: 30px;
    justify-content: center;
    justify-items: start;
    text-align: left;
  }

  .footer-institutions-logos {
    gap: 41px;
    justify-self: start;
  }
}

@media (min-width: 768px) {
  .content-title {
    margin-bottom: 58px;
    font-size: 48px;
    line-height: 1.2;
  }

  .hero {
    display: grid;
    grid-template-columns: 42.22fr 57.78fr;
    height: 484px;
    min-height: 484px;
  }

  .hero-copy,
  .hero-image {
    order: initial;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 23px 48px 0 64px;
  }

  .eyebrow {
    margin-bottom: 38px;
  }

  .hero-description {
    margin: 28px 0 28px;
  }

  .hero-image {
    aspect-ratio: auto;
    min-height: 484px;
    background: var(--verde-agua);
  }

  .hero-image img {
    position: relative;
    left: auto;
    height: 110%;
    min-height: 532px;
    object-position: center;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 1.2;
  }

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

  .podcast-actions {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }

  .podcast-home .media-button {
    min-height: 100px;
  }

  .community-actions {
    flex-direction: row;
    gap: 22px;
  }

  .community-media-button {
    width: 338px;
  }

  .purpose-page-grid {
    --side-links-desktop-offset: 500px;
    grid-template-columns: minmax(0, 516px) minmax(300px, 415px);
    justify-content: space-between;
    gap: 80px;
    padding: 78px 80px 92px;
  }

  .side-links {
    padding-top: var(--side-links-desktop-offset, 0);
  }

  .yoga-home {
    grid-template-columns: 56fr 44fr;
    min-height: 346px;
  }

  .yoga-home-copy {
    justify-content: center;
    padding: 54px 48px 54px 64px;
  }

  .yoga-home-image {
    min-height: 346px;
  }

  .yoga-home-image img {
    min-height: 346px;
  }

  .series-home {
    grid-template-columns: 199px minmax(0, 1fr) 191px;
    align-items: center;
    gap: 52px;
    min-height: 277px;
    padding: 0 100px 0 76px;
  }

  .series-home::before {
    width: 76px;
  }

  .series-poster {
    align-self: stretch;
    width: 199px;
  }

  .series-poster img {
    height: 100%;
  }

  .series-production {
    align-self: end;
    margin-bottom: 18px;
    transform: translateX(-20px);
  }

  .series-yellow-edge {
    position: absolute;
    inset: 0 0 0 auto;
    display: block;
    width: 100px;
    background: var(--amarillo);
  }

  .join-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-team {
    min-height: 33px;
    padding-top: 10px;
    padding-bottom: 12px;
    white-space: nowrap;
  }

  .services-hero,
  .services-hero-overlay {
    min-height: 330px;
  }

  .services-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px;
  }

  .services-duo-block {
    padding: 44px;
  }

  .services-duo-content {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
    align-items: stretch;
    gap: 48px;
  }

  .services-photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services-photo-frame,
  .services-photo-frame:nth-child(n+2) {
    display: block;
  }

  .services-photo-frame {
    height: 280px;
  }

  .services-photo-frame img {
    animation: servicesPhotoFloat 8.8s ease-in-out infinite;
  }

  .services-photo-frame:nth-child(2) img {
    animation-delay: -2.8s;
  }

  .services-photo-frame:nth-child(3) img {
    animation-delay: -5.6s;
  }

  .services-conferences-grid {
    --side-links-desktop-offset: 282px;
    grid-template-columns: minmax(0, 516px) minmax(300px, 415px);
    justify-content: space-between;
    gap: 80px;
    padding: 78px 80px 92px;
  }
}

@media (min-width: 900px) {
  .about-home-grid {
    grid-template-columns: 42.22fr 57.78fr;
    gap: 0;
    align-items: center;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .about-home-media {
    justify-content: flex-start;
    padding-left: 42px;
  }

  .about-home-copy {
    padding-left: 20px;
  }

  .about-home h2 {
    font-size: 35px;
  }
}

@media (min-width: 1024px) {
  .header-inner {
    min-height: 72px;
    padding: 0 63px;
  }

  .brand img {
    width: 290px;
    max-height: 48px;
  }

  .desktop-nav,
  .header-actions {
    display: flex;
    align-items: center;
  }

  .desktop-nav {
    gap: 34px;
    margin-left: auto;
  }

  .desktop-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--blanco);
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: transform 180ms ease, color 180ms ease;
  }

  .desktop-nav a.active {
    color: var(--amarillo-fluo);
  }

  .desktop-nav a:hover,
  .desktop-nav a:focus-visible {
    color: var(--amarillo-fluo);
    transform: translateY(-2px);
  }

  .header-actions {
    gap: 20px;
  }

  .site-header .button-header {
    --button-hover-bg: var(--amarillo-fluo);
    --button-hover-color: var(--violeta-header);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 133px;
    min-height: 44px;
    padding: 0 19px;
    border: 2px solid var(--amarillo-fluo);
    border-radius: 999px;
    color: var(--blanco);
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
  }

  .header-socials {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-left: 0;
  }

  .header-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    aspect-ratio: 1 / 1;
    margin: 0;
    border: 2px solid transparent;
    border-radius: 50%;
    background: transparent;
    transition: transform 180ms ease, border-color 180ms ease;
  }

  .header-socials a:hover,
  .header-socials a:focus-visible {
    border-color: var(--amarillo-fluo);
    background: transparent;
    transform: translateY(-2px);
  }

  .header-socials img {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  .header-socials img[src$="youtube.svg"] {
    width: 24px;
    height: 18px;
  }

  .menu-toggle,
  .mobile-menu {
    display: none;
  }

  .hero-copy {
    padding-left: 80px;
  }

  .social-strip-inner {
    min-height: 70px;
    gap: 28px;
  }

  .about-home-grid {
    padding-right: 80px;
    padding-left: 80px;
  }

  .pillars .section-container {
    padding: 60px 80px;
  }

  .pillars-heading {
    margin-bottom: 46px;
  }

  .pillar-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
  }

  .podcast-home-inner {
    padding-top: 76px;
    padding-bottom: 74px;
  }

  .community-hero {
    min-height: 260px;
  }

  .community-hero img {
    min-height: 286px;
  }

  .community-page-inner {
    padding: 76px 80px 194px;
  }

  .community-subtitle {
    font-size: 18px;
  }

  .purpose-hero {
    min-height: 275px;
  }

  .services-hero,
  .services-hero-overlay {
    min-height: 360px;
  }

  .purpose-hero-logo {
    width: 420px;
  }

  .purpose-page-grid {
    padding-right: 99px;
    padding-left: 80px;
  }

  .yoga-home-copy {
    padding-left: 80px;
  }

  .gesture-title {
    font-size: 48px;
  }

  .services-section-inner {
    padding: 78px 80px 86px;
  }

  .services-conferences-grid {
    padding-right: 99px;
    padding-left: 80px;
  }

}

@media (min-width: 768px) {
  .about-page-hero {
    position: relative;
    display: block;
    height: 275px;
    overflow: hidden;
  }

  .about-page-hero-image {
    position: absolute;
    top: 0;
    height: 275px;
    min-height: 275px;
  }

  .about-page-hero-image-left {
    left: 0;
    width: 55.07%;
  }

  .about-page-hero-image-right {
    right: 0;
    width: 60.84%;
  }

  .about-page-hero-image img {
    height: 110%;
    min-height: 303px;
  }

  .about-page-grid {
    --side-links-desktop-offset: 116px;
    grid-template-columns: minmax(0, 516px) minmax(300px, 415px);
    justify-content: space-between;
    gap: 80px;
    padding: 78px 80px 92px;
  }
}

@media (min-width: 1024px) {
  .about-page-grid {
    padding-right: 99px;
    padding-left: 80px;
  }
}
