/* M4RTIAL V101 · experiencia móvil ordenada, compacta y fluida */

.v101 {
  --v101-radius: 18px;
  --v101-control: 42px;
  --v101-ease: cubic-bezier(.22, .76, .24, 1);
  --v100-gold-soft: #efd77e;
  --v100-black: #090908;
}

.v101 .header-controls {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.v101 .header-language {
  margin-left: 0;
}

.v101 .header-language::after {
  right: 13px;
  content: "⌄";
  color: rgba(240, 212, 122, .88);
  font-size: 10px;
}

.v101 .header-language select,
.v101 .menu-toggle {
  height: var(--v101-control);
  min-height: var(--v101-control);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 13px;
  color: #fff;
  background: rgba(18, 18, 16, .72);
  box-shadow: inset 0 1px rgba(255, 255, 255, .06);
  backdrop-filter: blur(14px);
  transition:
    border-color .2s ease,
    background .2s ease,
    transform .2s ease;
}

.v101 .header-language select {
  width: 118px;
  height: 36px;
  min-height: 36px;
  padding: 0 30px 0 14px;
  color: var(--v100-gold-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .045em;
  line-height: 1;
  white-space: nowrap;
}

.v101 .header-language select option {
  color: #fff;
  background: #121210;
}

.v101 .header-language select:hover,
.v101 .header-language select:focus-visible,
.v101 .menu-toggle:hover,
.v101 .menu-toggle:focus-visible,
.v101 .menu-toggle[aria-expanded="true"] {
  border-color: rgba(240, 212, 122, .56);
  background: rgba(34, 31, 22, .94);
}

.v101 .header-language select:focus-visible {
  outline: 2px solid rgba(240, 212, 122, .78);
  outline-offset: 2px;
}

.v101 .menu-toggle {
  width: var(--v101-control);
  padding: 10px;
}

.v101 .menu-toggle span:not(.sr-only) {
  height: 1.5px;
  border-radius: 3px;
}

.v101 .button,
.v101 .planner-switch button,
.v101 .mobile-actionbar a,
.v101 .quick-paths a,
.v101 .day-tabs button {
  border-radius: 12px;
}

.v101 .reveal {
  transform: translateY(28px);
  transition-duration: .68s;
  transition-timing-function: var(--v101-ease);
}

.v101 .reveal[data-reveal="left"],
.v101 .reveal[data-reveal="right"] {
  transform: translateY(28px);
}

.v101 .reveal.is-visible {
  transform: none;
}

.v101 [data-stagger] > * {
  transform: translateY(16px);
  transition-duration: .48s;
  transition-timing-function: var(--v101-ease);
}

.v101 [data-stagger].is-visible > *,
.v101 .is-visible [data-stagger] > * {
  transition-delay: calc(var(--item-index, 0) * 55ms + 60ms);
}

.v101.is-ready .hero-v100-media img {
  animation: v101-hero-enter 1.25s var(--v101-ease) both;
}

@keyframes v101-hero-enter {
  from {
    opacity: .65;
    transform: scale(1.045);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.v101 .button-gold {
  position: relative;
  overflow: hidden;
}

.v101 .button-gold::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(110deg, transparent 32%, rgba(255, 255, 255, .38) 50%, transparent 68%);
  transform: translateX(-130%);
}

.v101 .button-gold:hover::after,
.v101 .button-gold:focus-visible::after {
  transform: translateX(130%);
  transition: transform .75s var(--v101-ease);
}

.v101 .program-card,
.v101 .method-v100-card,
.v101 .faq-compact,
.v101 .contact-card-v100,
.v101 .price-card {
  transition:
    transform .35s var(--v101-ease),
    box-shadow .35s var(--v101-ease),
    border-color .25s ease;
}

.v101 .program-card:active,
.v101 .price-card:active {
  transform: scale(.985);
}

.v101 .mobile-carousel-status {
  margin-top: 13px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.v101 .mobile-carousel-status i {
  width: 5px;
  height: 5px;
  border-radius: 99px;
  display: block;
  background: rgba(255, 255, 255, .25);
  transition: width .22s ease, background .22s ease;
}

.v101 .mobile-carousel-status i.is-active {
  width: 19px;
  background: var(--v100-gold-soft);
}

.v101 .mobile-actionbar {
  display: none;
}

@media (max-width: 850px) {
  .v101 .nav {
    z-index: 125;
    inset: 72px 12px auto;
    height: auto;
    max-height: calc(100dvh - 88px);
    padding: 8px 16px 14px;
    gap: 0;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 20px;
    background:
      radial-gradient(circle at 100% 0%, rgba(213, 169, 54, .16), transparent 34%),
      rgba(9, 9, 8, .97);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .5);
    backdrop-filter: blur(22px);
    transform-origin: top right;
  }

  .v101 .nav.open {
    animation: v101-menu-enter .26s var(--v101-ease) both;
  }

  .v101 .nav > a {
    min-height: 42px;
    padding: 8px 3px !important;
    display: flex;
    align-items: center;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 780;
    letter-spacing: -.01em;
    text-transform: none;
  }

  .v101 .nav-login {
    min-height: 42px !important;
    margin-top: 6px;
    border: 0;
    border-radius: 12px;
    justify-content: center;
    font-size: 12px !important;
    font-weight: 900 !important;
  }

  @keyframes v101-menu-enter {
    from {
      opacity: 0;
      transform: translateY(-8px) scale(.98);
    }

    to {
      opacity: 1;
      transform: none;
    }
  }
}

@media (max-width: 700px) {
  .v101 {
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
  }

  .v101 .container {
    width: calc(100% - 24px);
  }

  .v101 .section {
    padding: 49px 0;
  }

  .v101 .site-header,
  .v101 .site-header.scrolled {
    height: 62px;
  }

  .v101 .site-header {
    background: linear-gradient(180deg, rgba(9, 9, 8, .82), rgba(9, 9, 8, .18));
  }

  .v101 .site-header.scrolled,
  .v101.menu-open .site-header {
    border-color: rgba(255, 255, 255, .09);
    background: rgba(9, 9, 8, .94);
  }

  .v101 .nav-shell {
    width: calc(100% - 20px);
    gap: 8px;
  }

  .v101 .brand {
    min-width: 0;
    gap: 7px;
  }

  .v101 .brand img {
    width: 36px;
    height: 36px;
  }

  .v101 .brand strong {
    font-size: 15px;
    letter-spacing: .055em;
  }

  .v101 .brand small {
    margin-top: 3px;
    font-size: 5.5px;
    letter-spacing: .13em;
  }

  .v101 {
    --v101-control: 38px;
  }

  .v101 .header-language select {
    width: 112px;
    height: 34px;
    min-height: 34px;
    padding: 0 29px 0 12px;
    border-radius: 11px;
    font-size: 9.5px;
  }

  .v101 .nav {
    inset: 68px 10px auto;
    max-height: calc(100dvh - 82px);
  }

  .v101 .section-heading {
    margin-bottom: 21px;
  }

  .v101 .section-heading h2,
  .v101 .method-v100 h2,
  .v101 .faq-compact h2,
  .v101 .contact-card-v100 h2 {
    max-width: 560px;
    font-size: clamp(34px, 10.6vw, 45px);
    line-height: .91;
  }

  .v101 .section-heading > p {
    margin-top: 13px;
    font-size: 12px;
    line-height: 1.55;
  }

  .v101 .eyebrow {
    margin-bottom: 11px;
    gap: 8px;
    font-size: 8px;
    letter-spacing: .14em;
  }

  .v101 .eyebrow span {
    width: 20px;
  }

  .v101 .hero.hero-v100,
  .v101 .hero-v100-content {
    min-height: clamp(650px, 92svh, 760px);
  }

  .v101 .hero-v100-media img {
    object-position: 57% 30%;
  }

  .v101 .hero-v100-shade {
    background:
      linear-gradient(180deg, rgba(9, 9, 8, .1) 0%, rgba(9, 9, 8, .12) 28%, rgba(9, 9, 8, .86) 58%, #090908 100%);
  }

  .v101 .hero-v100-copy {
    padding: 90px 0 calc(67px + env(safe-area-inset-bottom));
  }

  .v101 .hero-v100 h1 {
    max-width: 490px;
    margin-bottom: 13px;
    font-size: clamp(43px, 13.2vw, 58px);
    line-height: .86;
  }

  .v101 .hero-v100 .hero-lead {
    max-width: 470px;
    margin-bottom: 17px;
    font-size: 12px;
    line-height: 1.5;
  }

  .v101 .hero-v100 .hero-actions {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .v101 .hero-v100 .button {
    min-height: 44px;
    padding-inline: 14px;
    border-radius: 12px;
    gap: 10px;
    font-size: 10px;
  }

  .v101 .hero-v100 .text-link {
    min-height: 44px;
    padding: 0 2px;
    border-bottom: 0;
    font-size: 10px;
  }

  .v101 .hero-v100 .hero-points {
    margin-top: 17px;
    padding-top: 13px;
  }

  .v101 .hero-v100 .hero-points strong {
    font-size: 18px;
  }

  .v101 .hero-v100 .hero-points span {
    font-size: 6.5px;
    letter-spacing: .05em;
  }

  .v101 .quick-paths {
    overflow: visible;
  }

  .v101 .quick-paths .container {
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(3, 1fr);
  }

  .v101 .quick-paths a {
    min-width: 0;
    min-height: 54px;
    padding: 8px 7px;
    border-radius: 0;
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .v101 .quick-paths a:first-child {
    border-left: 0;
  }

  .v101 .quick-paths span,
  .v101 .quick-paths b {
    display: none;
  }

  .v101 .quick-paths strong {
    font-size: 8.5px;
    line-height: 1.25;
  }

  .v101 .visual-programs {
    margin-right: -12px;
    grid-template-columns: repeat(3, min(79vw, 325px));
    gap: 9px;
    padding: 2px 12px 8px 0;
    scroll-padding-inline: 0 12px;
    scrollbar-width: none;
  }

  .v101 .visual-programs::-webkit-scrollbar,
  .v101 .price-grid-v100::-webkit-scrollbar {
    display: none;
  }

  .v101 .program-card {
    min-height: 355px;
    border-radius: var(--v101-radius);
  }

  .v101 .program-card > div {
    right: 18px;
    bottom: 17px;
    left: 18px;
  }

  .v101 .program-card h3 {
    margin-top: 6px;
    font-size: 32px;
  }

  .v101 .program-card p {
    font-size: 10px;
  }

  .v101 .discipline-pills {
    margin-top: 10px;
  }

  .v101 .discipline-pills a {
    min-height: 57px;
    padding: 10px;
  }

  .v101 .discipline-pills strong {
    font-size: 10px;
  }

  .v101 .discipline-pills span {
    margin-top: 2px;
    font-size: 8px;
    line-height: 1.25;
  }

  .v101 .planner-v100 .section-heading {
    margin-bottom: 18px;
  }

  .v101 .planner-switch {
    margin-bottom: 14px;
    padding: 4px;
    border-radius: 14px;
  }

  .v101 .planner-switch button {
    min-height: 42px;
    font-size: 9px;
  }

  .v101 .planner-v100 .schedule-shell {
    border-radius: var(--v101-radius);
  }

  .v101 .planner-v100 .schedule-swipe-hint {
    padding: 9px 12px;
    font-size: 8px;
  }

  .v101 .planner-v100 .day-tabs {
    grid-template-columns: repeat(6, minmax(76px, 1fr));
  }

  .v101 .planner-v100 .day-tabs button {
    min-height: 54px;
    border-radius: 0;
    font-size: 16px;
  }

  .v101 .planner-v100 .day-tabs button span {
    margin-top: 2px;
    font-size: 6.5px;
  }

  .v101 .planner-v100 .day-panels {
    padding: 7px 12px;
  }

  .v101 .planner-v100 .day-panel article {
    min-height: 49px;
    padding: 8px 3px;
    grid-template-columns: 102px 1fr auto;
    gap: 8px;
  }

  .v101 .planner-v100 .day-panel time {
    font-size: 13px;
  }

  .v101 .planner-v100 .day-panel strong {
    font-size: 8.5px;
    letter-spacing: .055em;
  }

  .v101 .planner-v100 .day-panel article > span {
    padding-right: 0;
    font-size: 7px;
  }

  .v101 .planner-v100 .schedule-cta {
    padding: 12px;
    gap: 7px;
    font-size: 8px;
  }

  .v101 .planner-v100 .schedule-cta a {
    min-height: 40px;
    padding: 0 12px;
    border-radius: 11px;
    align-items: center;
    color: var(--v100-black);
    background: var(--v100-gold-soft);
    font-size: 9px;
  }

  .v101 .price-grid-v100 {
    margin-right: -12px;
    padding: 2px 12px 8px 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(84vw, 330px);
    grid-template-columns: none;
    gap: 9px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .v101 .planner-v100 .price-card,
  .v101 .planner-v100 .price-card.featured {
    min-height: 255px;
    padding: 21px;
    border-radius: var(--v101-radius);
    scroll-snap-align: start;
  }

  .v101 .planner-v100 .price-card h3 {
    margin-bottom: 12px;
    font-size: 27px;
  }

  .v101 .planner-v100 .price-card > p:not(.price-name) {
    margin: 15px 0 8px;
    font-size: 10px;
  }

  .v101 .price-value {
    padding: 14px 0;
  }

  .v101 .price-value strong {
    font-size: 39px;
  }

  .v101 .planner-v100 .price-card a {
    margin-top: 11px;
    padding-top: 11px;
    font-size: 8px;
  }

  .v101 .mobile-carousel-status {
    display: flex;
  }

  .v101 .planner-v100 .other-prices {
    grid-template-columns: 1fr 1fr;
    border-radius: 14px;
    overflow: hidden;
  }

  .v101 .planner-v100 .other-prices div {
    min-height: 48px;
    padding: 11px;
    border-right: 1px solid rgba(255, 255, 255, .1);
  }

  .v101 .planner-v100 .other-prices div:nth-child(even) {
    border-right: 0;
  }

  .v101 .planner-v100 .other-prices span {
    font-size: 6.5px;
  }

  .v101 .planner-v100 .other-prices strong {
    font-size: 9px;
  }

  .v101 .price-note {
    margin-top: 12px;
    font-size: 8px;
    line-height: 1.45;
  }

  .v101 .method-v100-layout {
    gap: 24px;
  }

  .v101 .method-v100-copy > p:not(.eyebrow) {
    margin: 14px 0 17px;
    font-size: 12px;
    line-height: 1.6;
  }

  .v101 .method-v100-copy li {
    padding: 12px 0;
    grid-template-columns: 31px 1fr;
    gap: 10px;
  }

  .v101 .method-v100-copy strong {
    font-size: 11px;
  }

  .v101 .method-v100-copy li p {
    font-size: 9px;
  }

  .v101 .method-v100-card,
  .v101 .method-v100-card img {
    min-height: 345px;
  }

  .v101 .method-v100-card {
    border-radius: var(--v101-radius);
  }

  .v101 .location-card {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 14px;
    border-radius: 13px;
  }

  .v101 .location-card strong {
    font-size: 12px;
  }

  .v101 .location-card p,
  .v101 .location-card a {
    font-size: 8.5px;
  }

  .v101 .contact-v100-grid {
    gap: 10px;
  }

  .v101 .faq-compact,
  .v101 .contact-card-v100 {
    padding: 22px 18px;
    border-radius: var(--v101-radius);
  }

  .v101 .faq-compact h2 {
    margin-bottom: 17px;
  }

  .v101 .faq-compact summary {
    min-height: 49px;
    gap: 12px;
    font-size: 10.5px;
  }

  .v101 .faq-compact details p {
    margin-bottom: 14px;
    font-size: 10px;
    line-height: 1.55;
  }

  .v101 .contact-card-v100 h2 {
    margin-bottom: 13px;
  }

  .v101 .contact-card-v100 > p:not(.eyebrow) {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .v101 .contact-card-v100 .button {
    min-height: 44px;
    padding-inline: 15px;
    font-size: 10px;
  }

  .v101 .contact-links {
    margin-top: 18px;
  }

  .v101 .contact-links a {
    min-height: 48px;
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .v101 .contact-links span {
    font-size: 7.5px;
  }

  .v101 .contact-links strong {
    min-width: 0;
    overflow-wrap: anywhere;
    font-size: 9.5px;
  }

  .v101 .footer-v100 {
    padding: 28px 0 20px;
  }

  .v101 .footer-v100-main {
    gap: 17px;
  }

  .v101 .footer-v100-main .brand img {
    width: 38px;
    height: 38px;
  }

  .v101 .footer-v100-links {
    gap: 10px 17px;
    font-size: 8.5px;
  }

  .v101 .footer-v100-legal {
    margin-top: 17px;
    padding-top: 13px;
    gap: 8px 14px;
    font-size: 6.5px;
  }

  .v101 .mobile-actionbar {
    position: fixed;
    z-index: 140;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 6px 7px calc(6px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    border-top-color: rgba(255, 255, 255, .1);
    background: rgba(8, 8, 7, .9);
    box-shadow: 0 -10px 32px rgba(0, 0, 0, .18);
    backdrop-filter: blur(22px);
  }

  .v101 .mobile-actionbar a {
    min-height: 43px;
    display: flex;
    gap: 6px;
    color: #d2cec5;
    background: transparent;
    font-size: 8.5px;
  }

  .v101 .mobile-actionbar a span {
    color: var(--v100-gold-soft);
    font-size: 10px;
    font-weight: 900;
  }

  .v101 .mobile-actionbar a strong {
    font: inherit;
    font-weight: 850;
  }

  .v101 .mobile-actionbar a[data-action="primary"] {
    color: var(--v100-black);
    background: var(--v100-gold-soft);
  }

  .v101 .mobile-actionbar a[data-action="primary"] span {
    color: inherit;
    font-size: 15px;
  }

  .v101.inner-page {
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
  }

  .v101.inner-page .inner-hero {
    min-height: 0;
    padding: 92px 0 45px;
  }

  .v101.inner-page .inner-hero-grid {
    gap: 24px;
  }

  .v101.inner-page .inner-hero h1 {
    font-size: clamp(48px, 15vw, 64px);
    line-height: .82;
  }

  .v101.inner-page .inner-hero p:not(.eyebrow) {
    margin: 17px 0 20px;
    font-size: 12px;
    line-height: 1.55;
  }

  .v101.inner-page .inner-hero .button,
  .v101.inner-page .detail-cta .button {
    min-height: 44px;
    padding-inline: 15px;
    border-radius: 12px;
    font-size: 10px;
  }

  .v101.inner-page .inner-hero-visual {
    height: 330px;
    border-radius: var(--v101-radius);
  }

  .v101.inner-page .detail-grid {
    gap: 1px;
    overflow: hidden;
    border-radius: var(--v101-radius);
  }

  .v101.inner-page .detail-card {
    min-height: 0;
    padding: 22px 20px;
  }

  .v101.inner-page .detail-card h2 {
    margin: 25px 0 9px;
    font-size: 29px;
  }

  .v101.inner-page .detail-card p {
    font-size: 11px;
    line-height: 1.6;
  }

  .v101.inner-page .detail-cta {
    padding: 47px 0;
  }

  .v101.inner-page .detail-cta .container {
    gap: 22px;
  }

  .v101.inner-page .detail-cta h2 {
    font-size: clamp(37px, 11vw, 48px);
  }

  .v101.inner-page .related-links {
    padding: 20px 0;
    overflow: hidden;
  }

  .v101.inner-page .related-links .container {
    width: 100%;
    padding: 0 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .v101.inner-page .related-links .container::-webkit-scrollbar {
    display: none;
  }

  .v101.inner-page .related-links a {
    flex: 0 0 auto;
    min-height: 39px;
    padding: 0 12px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    font-size: 8px;
  }

  .v101.inner-page .site-footer {
    padding: 32px 0 20px;
  }

  .v101.inner-page .footer-main {
    padding-bottom: 28px;
    gap: 28px 16px;
  }

  .v101.inner-page .footer-bottom {
    font-size: 8px;
  }

  .v101.inner-page .floating-whatsapp {
    display: none;
  }
}

@media (max-width: 360px) {
  .v101 .brand small {
    display: none;
  }

  .v101 .header-controls {
    gap: 6px;
  }

  .v101 .header-language::after {
    right: 10px;
  }

  .v101 .header-language select {
    width: 98px;
    padding-right: 25px;
    padding-left: 10px;
    font-size: 8.75px;
    letter-spacing: .02em;
  }
}

@media (max-width: 370px) {
  .v101 .brand small {
    display: none;
  }

  .v101 .hero-v100 h1 {
    font-size: 42px;
  }

  .v101 .hero-v100 .hero-actions {
    grid-template-columns: 1fr;
  }

  .v101 .hero-v100 .text-link {
    display: none;
  }

  .v101 .planner-v100 .day-panel article {
    grid-template-columns: 94px 1fr;
  }

  .v101 .planner-v100 .day-panel article > span {
    display: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .v101 .program-card:hover,
  .v101 .method-v100-card:hover,
  .v101 .price-card:hover {
    transform: translateY(-5px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .v101.is-ready .hero-v100-media img,
  .v101 .nav.open {
    animation: none;
  }

  .v101 .button-gold::after {
    display: none;
  }
}
