﻿    :root {
      --bg: #FAF8F3;
      --paper: #FAF8F3;
      --dark: #333333;
      --olive: #7d8141;
      --text: #333333;
      --white: #ffffff;
      --orange: #f29310;
    }


    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: #FAF8F3;
      color: var(--text);
      font-family: "Nunito", sans-serif;
    }

    html,
    body,
    body * {
      font-family: "Nunito", sans-serif !important;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    a,
    li,
    span,
    small,
    strong,
    em,
    label,
    button,
    input,
    textarea,
    select,
    option,
    th,
    td,
    blockquote,
    figcaption {
      font-family: "Nunito", sans-serif !important;
    }

    .page {
      width: 100%;
      margin: 0;
      border: none;
      background: #FAF8F3;
      overflow: hidden;
      box-shadow: none;
    }

    body.teens-page {
      background:
        linear-gradient(180deg,
          #333333 0%,
          #333333 16%,
          #4c3945 28%,
          #77415f 40%,
          #aa4b83 51%,
          #db55aa 60%,
          #fc59bb 67%,
          #e077b9 74%,
          #b16f93 82%,
          #735362 91%,
          #333333 100%);
    }

    body.teens-page .page,
    body.teens-page main {
      background: transparent;
    }

    .page,
    .hero,
    .therapies,
    .light,
    .method,
    .stats,
    .centers,
    .franchise,
    .form-block,
    .footer {
      width: 100%;
    }

    section {
      padding: 30px;
    }

    .hero {
      background: var(--dark);
      /* min-height: 650px; */
      color: #f6f6f6;
      padding-top: 78px;
      padding-bottom: 0;
      margin-bottom: 0;
      position: relative;
    }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      transform: none;
      width: 100%;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 22px;
      background: #2f3237;
      z-index: 100;
    }

    .header-logo {
      margin: 0;
      font-size: 24px;
      font-weight: 900;
      line-height: .9;
      letter-spacing: .5px;
      color: #f1f1f1;
      opacity: 0;
      transform: translateY(-6px);
      transition: opacity .3s ease, transform .3s ease;
      pointer-events: none;
    }

    .site-header.scrolled .header-logo {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .header-logo-img {
      height: 44px;
      width: auto;
      display: block;
      filter: brightness(0) invert(1);
    }

    .therapies-page .header-logo {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .about-page .header-logo {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .metodo-page .header-logo {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .franquicia-page .header-logo {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .centro-page .header-logo {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .nav {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 24px;
      font-size: 16px;
      font-weight: 600;
      margin-right: 0;
    }

    .nav a {
      color: #f1f1f1;
      text-decoration: none;
    }

    .nav a {
      font-size: 20px;
      display: inline-block;
      transform-origin: center;
      transition: transform .25s ease;
    }

    .nav a:hover {
      transform: scale(1.125);
    }

    .nav .orange {
      color: var(--orange);
      font-weight: 800;
    }

    .nav .pill {
      min-width: auto;
      padding: 10px 16px;
      font-size: 20px;
      font-weight: 800;
      border-radius: 20px;
      background: #8a9044;
    }

    .nav a.nav-active {
      background: #f29310;
      color: #ffffff;
      border-radius: 999px;
      padding: 8px 14px;
      transform: none;
    }

    .mobile-menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255, 255, 255, .35);
      border-radius: 10px;
      background: transparent;
      color: #fff;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      padding: 0;
      z-index: 30;
    }

    .mobile-menu-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      background: currentColor;
      border-radius: 999px;
      transition: transform .25s ease, opacity .25s ease;
    }

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

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

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

    .mobile-nav-overlay {
      position: fixed;
      inset: 0;
      background: #333333;
      color: #ffffff;
      z-index: 1250;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-12px);
      transition: opacity .28s ease, transform .28s ease;
      display: flex;
      flex-direction: column;
    }

    .mobile-nav-overlay.is-open {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .mobile-nav-overlay.is-open~.back-to-top {
      opacity: 0 !important;
      pointer-events: none !important;
      transform: translateY(20px) !important;
    }

    .mobile-nav-head {
      height: 76px;
      padding: 0 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid rgba(255, 255, 255, .14);
    }

    .mobile-nav-logo {
      margin: 0;
      font-size: 32px;
      line-height: .82;
      font-weight: 900;
      color: #ffffff;
      text-decoration: none;
      display: inline-block;
    }

    .mobile-nav-close {
      width: 42px;
      height: 42px;
      border: none;
      border-radius: 10px;
      background: rgba(255, 255, 255, .08);
      color: #ffffff;
      font-size: 34px;
      line-height: 1;
      cursor: pointer;
    }

    .mobile-nav-links {
      display: grid;
      padding-bottom: 20px;
    }

    .mobile-nav-links a {
      color: #ffffff;
      text-decoration: none;
      font-size: 28px;
      font-weight: 700;
      padding: 24px 20px;
      border-bottom: 1px solid rgba(255, 255, 255, .14);
    }

    .mobile-nav-links a.mobile-nav-accent {
      color: #f29310;
    }

    .mobile-nav-links a[data-drawer="contacto"] {
      color: #7d8141;
      text-decoration: none;
      font-size: 28px;
      font-weight: 700;
      padding: 24px 20px;
    }

    .mobile-nav-links a.nav-active {
      background: #f29310;
      color: #ffffff;
      margin: 14px 20px 0;
      width: calc(100% - 40px);
      text-align: center;
      border-bottom: none;
      border-radius: 999px;
      display: inline-flex;
      justify-content: center;
      padding: 14px 20px;
    }

    .pill {
      background: var(--olive);
      color: var(--white);
      min-width: 20%;
      border-radius: 999px;
      padding: 15px 30px;
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
      text-decoration: none;
      font-size: 20px;
    }

    .hero-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
      /*height: 572px; */
      /*gap: 8px; */
    }

    .logo {
      font-size: clamp(72px, 8vw, 130px);
      font-weight: 900;
      line-height: .84;
      letter-spacing: 1px;
      margin: 0;
    }

    .logo-img {
      width: 100%;
      max-width: 520px;
      height: auto;
      display: block;
    }

    .logo-wrap {
      padding-left: 0;
      padding-bottom: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .art {
      position: relative;
      min-height: 100px;
      display: flex;
      justify-content: flex-end;
      align-items: flex-end;
      align-self: stretch;
      padding-top: 30px;
    }

    .hero-img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center bottom;
      display: block;
    }

    .therapies {
      background: var(--paper);
      text-align: center;
    }

    h2 {
      margin: 0 0 48px;
      color: var(--olive);
      font-size: 40px;
      line-height: 1.1;
      font-weight: 800;
      margin-top: 50px;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 28px;
      max-width: 1060px;
      margin: 0 auto;
    }

    .card {
      border: 2px solid var(--olive);
      border-radius: 28px;
      padding: 28px;
      text-align: left;
      background: var(--paper-2);
      min-height: 282px;
    }

    .card small {
      color: #7d8141;
      font-size: 25px;
      font-weight: 600;
    }

    .card h3 {
      margin: 10px 0 10px;
      color: #7d8141;
      font-size: 35px;
      line-height: 1.02;
    }

    .card p {
      margin: 0 0 18px;
      font-size: 20px;
      line-height: 1.1;
    }

    .card .pill {
      background: #bcbda5;
      color: #131313;
      font-size: 20px;
      padding: 14px 26px;
      min-width: 240px;
    }

    .card .pill.pill-infantil {
      background: #aeb538;
      color: #ffffff;
    }

    .card .pill.pill-teens {
      background: linear-gradient(135deg, #DD64A2, #a8f084);
      color: #ffffff;
    }

    .card .pill.pill-familias {
      background: #a0a07d;
      color: #ffffff;
    }

    .light {
      background: #ffffff;
      text-align: center;
    }

    .lead {
      max-width: 980px;
      margin: 0 auto;
      color: #767b37;
      font-size: 40px;
      line-height: 1.12;
      font-weight: 800;
      padding-top: 50px;
    }

    .sub {
      max-width: 860px;
      margin: 30px auto 42px;
      color: #7d8141;
      font-size: 20px;
      line-height: 1.24;
    }

    .video-wrap {
      max-width: 800px;
      margin: 0 auto 50px;
      border-radius: 20px;
      overflow: hidden;
      background: #000;
    }

    .hero-video {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 20px;
    }

    .actions {
      display: flex;
      gap: 18px;
      justify-content: center;
      padding-bottom: 50px;
    }

    .btn-outline {
      border: 1px solid #7d8141;
      border-radius: 999px;
      background: transparent;
      padding: 12px 26px;
      font-size: 20px;
    }


    button,
    .btn,
    .pill,
    .btn-outline {
      display: inline-flex;
      transform-origin: center;
      transition: transform .25s ease;
    }

    button:hover,
    .btn:hover,
    .pill:hover,
    .btn-outline:hover {
      transform: scale(1.05);
      cursor: pointer;
    }

    .method {
      background: var(--paper);
      text-align: center;
    }

    .steps {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 22px;
      margin-top: 56px;
      text-align: center;
      font-size: 40px;
    }

    .step {
      flex: 1;
    }

    .step .foot {
      width: 140px;
      height: 160px;
      margin: 0 auto 14px;
      background-image: url("../img/Recurso_2.png");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      position: relative;
    }

    .step .foot .foot-number {
      position: absolute;
      top: 60%;
      left: 45%;
      transform: translate(-50%, -50%);
      color: #fff;
      font-family: "Nunito", sans-serif;
      font-size: 40px;
      font-weight: 900;
      line-height: 1;
    }

    .steps .step:nth-child(1) .foot {
      margin-top: 80px;
    }

    .steps .step:nth-child(2) .foot {
      margin-top: 50px;
    }

    .steps .step:nth-child(3) .foot {
      margin-top: 20px;
    }

    .steps .step:nth-child(4) .foot {
      margin-top: 0;
    }

    .method .step .foot {
      opacity: 0;
      transform: translateY(20px);
    }

    .method.is-visible .step .foot {
      animation: footprintIn .5s ease-out forwards;
    }

    .method.is-visible .step:nth-child(1) .foot {
      animation-delay: 0s;
    }

    .method.is-visible .step:nth-child(2) .foot {
      animation-delay: .3s;
    }

    .method.is-visible .step:nth-child(3) .foot {
      animation-delay: .6s;
    }

    .method.is-visible .step:nth-child(4) .foot {
      animation-delay: .9s;
    }

    @keyframes footprintIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

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

    .step h4 {
      font-size: 30px;
      margin: 8px 0;
      color: #2e2f31;
      line-height: 1.04;
    }

    .step p {
      margin: 0;
      color: #474747;
      font-size: 20px;
      line-height: 1.05;
    }

    .cta-right {
      margin-top: 50px;
      text-align: right;
      padding-right: 26px;
      color: #2f3032;
      font-size: 25px;
      font-weight: 800;
    }

    .stats {
      background: var(--dark);
      color: #fff;
      text-align: center;
      padding-top: 40px;
      padding-bottom: 58px;
    }

    .stats .title {
      font-size: 40px;
      line-height: 1.14;
      max-width: 1120px;
      margin: 0 auto 44px;
      font-weight: 700;
    }

    .numbers {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      align-items: start;
      justify-items: center;
    }

    .numbers strong {
      display: block;
      font-size: 40px;
      font-weight: 800;
      line-height: 1;
    }

    .numbers strong .rating-star {
      display: inline-block;
      width: 32px;
      height: 32px;
      margin-left: 6px;
      vertical-align: -4px;
      overflow: visible;
      fill: #ffd84a;
      stroke: #cc9b00;
      stroke-width: 4;
    }

    .numbers span {
      display: block;
      font-size: 20px;
      line-height: 1.05;
      margin-top: 6px;
      text-transform: uppercase;
    }

    .centers {
      background: #ffffff;
      text-align: center;
    }

    .center-wrap {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 28px;
      margin-top: 28px;
      align-items: stretch;
      background-color: white;
    }

    .map {
      position: relative;
      height: 540px;
      border-radius: 28px;
      overflow: hidden;
      min-height: 540px;
    }

    .map iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }

    .list {
      border: 1px solid #7d8141;
      border-radius: 28px;
      height: 540px;
      padding: 16px;
      text-align: left;
      background: transparent;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .list-sticky {
      flex-shrink: 0;
    }

    .list-scroll {
      overflow-y: auto;
      flex: 1;
      scroll-behavior: smooth;
      scrollbar-width: thin;
      scrollbar-color: var(--olive) transparent;
    }

    .list-scroll::-webkit-scrollbar {
      width: 8px;
    }

    .list-scroll::-webkit-scrollbar-track {
      background: transparent;
    }

    .list-scroll::-webkit-scrollbar-thumb {
      background: var(--olive);
      border-radius: 999px;
    }

    .list-filters {
      display: flex;
      gap: 10px;
      margin-bottom: 12px;
    }

    .filter-btn {
      border: 1px solid var(--olive);
      border-radius: 999px;
      background: transparent;
      color: var(--olive);
      font-family: "Nunito", sans-serif;
      font-size: 14px;
      font-weight: 800;
      padding: 10px 18px;
      line-height: 1;
      cursor: pointer;
    }

    .filter-btn.active {
      background: var(--olive);
      color: #fff;
    }

    .search-wrap {
      position: relative;
      margin-bottom: 16px;
    }

    .search {
      width: 100%;
      border: 1px solid var(--olive);
      border-radius: 999px;
      height: 45px;
      padding: 0 54px 0 26px;
      font-family: "Nunito", sans-serif;
      font-size: 16px;
      background: transparent;
      color: #333333;
      outline: none;
    }

    .search::placeholder {
      color: #7d8141;
    }

    .search-icon {
      position: absolute;
      right: 22px;
      top: 50%;
      transform: translateY(-50%);
      color: #7d8141;
      font-size: 18px;
      pointer-events: none;
      line-height: 1;
    }

    .no-results {
      margin: 10px 4px 0;
      color: #7d8141;
      font-size: 16px;
      font-weight: 700;
      display: none;
    }

    .location {
      background: #FAF8F3;
      border-radius: 28px;
      padding: 16px 20px;
      margin-bottom: 14px;
      box-shadow: 0 3px 0 rgba(0, 0, 0, .12);
      cursor: pointer;
    }

    .list-scroll .location {
      display: block;
    }

    .location .name {
      color: var(--olive);
      font-size: 20px;
      font-weight: 800;
    }

    .location p {
      margin: 7px 0;
      color: #7d8141;
      font-size: 14px;
    }

    .location .phone-link {
      color: #7d8141;
      text-decoration: none;
      font-weight: 700;
    }

    .location .phone-link:hover {
      text-decoration: underline;
    }


    .location-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 10px;
    }

    .tag {
      border-radius: 999px;
      padding: 4px 10px;
      font-size: 11px;
      font-weight: 800;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 0.3px;
    }

    .tag-logopedia {
      background: #ec728f;
    }

    .tag-psicologia,
    .tag-psicopedagogia {
      background: #3876b3;
    }

    .tag-to,
    .tag-fisioterapia {
      background: #f29310;
    }

    .tag-at {
      background: #aeb538;
    }

    .tag-psicologia-teens {
      background: linear-gradient(135deg, #7d39b3 0%, #b0ebe5 100%);
    }

    .tag-psicopedagogia-teens {
      background: linear-gradient(135deg, #7d39b3 0%, #a8f084 100%);
    }

    .location-info {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-top: 10px;
    }

    .location-left {
      flex: 1;
    }

    .location-left p {
      margin: 4px 0;
      font-size: 14px;
      color: #474747;
    }

    .location-right {
      display: flex;
      flex-direction: column;
      gap: 8px;
      align-items: flex-end;
    }

    .btn-cita {
      border: 1.5px solid #7d8141;
      border-radius: 999px;
      padding: 3px 16px;
      font-size: 13px;
      font-weight: 700;
      color: #7d8141;
      background: transparent;
      text-decoration: none;
      white-space: nowrap;
    }

    .btn-ver {
      text-align: center;
      background: #7d8141;
      border-radius: 999px;
      padding: 8px 16px;
      font-size: 13px;
      font-weight: 600;
      color: #fff;
      text-decoration: none;
      white-space: nowrap;
    }

    .btn-cita:hover,
    .btn-ver:hover {
      transform: scale(1.05);
    }

    .btn-outline {
      font-size: 20px;
      padding: 10px 16px;
      min-width: auto;
      text-decoration: none;
      background-color: #f29310;
      color: white;
      font-weight: 600;
      border: none;
    }

    .btn-outline--franquicia {
      min-width: 0;
      width: auto;
      max-width: 420px;
      align-self: flex-start;
      border: 1px solid #7d8141;
      padding: 12px 24px;
      border-radius: 999px;
      background: transparent;
      color: #7d8141;
      font-weight: 600;
      font-size: 18px;
      line-height: 1;
      text-decoration: none;
      transition: background-color .25s ease, color .25s ease, transform .25s ease;
      cursor: pointer;
    }

    .btn-outline--franquicia:hover {
      color: #ffffff;
      background-color: #7d8141;
    }

    .franchise {
      display: grid;
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      grid-template-columns: 65% 45%;
      gap: 0;
      align-items: stretch;
      background: #FAF8F3;
      overflow: visible;
      min-height: 430px;
      padding-top: 0;
      padding-bottom: 0;
      position: relative;
    }

    .franchise-copy {
      min-height: 430px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 56px 64px;
      position: relative;
      z-index: 1;
    }

    .franchise-copy h2 {
      color: #7d8141;
      margin: 0 0 8px;
      font-size: clamp(40px, 4vw, 58px);
      line-height: 1.02;
      font-weight: 800;
    }

    .franchise-copy .sub {
      margin: 0 0 12px;
      max-width: 560px;
      color: #7d8141;
      font-size: 20px;
      line-height: 1.12;
      font-weight: 600;
    }

    .franchise-copy .sub--small {
      margin: 0 0 24px;
      max-width: 520px;
      color: #7d8141;
      font-size: 20px;
      line-height: 1.32;
      font-weight: 600;
    }

    .franchise-media {
      height: 430px;
      position: relative;
      z-index: 0;
      overflow: visible;
    }

    .franchise-img {
      position: absolute;
      top: 55%;
      right: 0;
      transform: translate(-20%, -55%);
      width: min(760px, 55vw);
      height: 100%;
      object-fit: contain;
      object-position: right center;
      display: block;
      z-index: 3;
    }

    .form-block {
      background: #ffffff;
      text-align: center;
      position: relative;
      font-family: "Nunito", sans-serif;
      font-size: 40px;
    }

    .form-block,
    .form-block * {
      font-family: "Nunito", sans-serif;
    }

    .form-block h2 {
      font-size: 40px;
    }

    .form-block .sub {
      font-size: 20px;
    }

    .form {
      max-width: 800px;
      margin: 24px auto 8px;
      display: grid;
      gap: 14px;
      font-size: 16px;
    }

    .field {
      border: 1px solid var(--olive);
      border-radius: 28px;
      height: 50px;
      padding: 14px 26px;
      color: #7d8141;
      font-size: 16px;
      text-align: left;
      background: transparent;
    }

    .textarea {
      height: 132px;
    }

    .submit {
      margin: 14px auto 0;
      width: 190px;
    }

    .form-block .submit {
      font-size: 16px;
    }

    .form-privacy {
      margin: 4px 0 14px;
    }

    .form-privacy-label {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--olive);
      font-size: 14px;
      font-weight: 700;
      line-height: 1.35;
      text-align: left;
    }

    .form-privacy-label input {
      width: 16px;
      height: 16px;
      margin-top: 2px;
      flex: 0 0 16px;
    }

    .form-privacy-label a {
      color: inherit;
      font-weight: 800;
      text-decoration: underline;
    }

    .appointment-overlay {
      position: fixed;
      inset: 0;
      background: rgba(17, 17, 17, .45);
      backdrop-filter: blur(3px);
      -webkit-backdrop-filter: blur(3px);
      display: flex;
      justify-content: flex-end;
      opacity: 0;
      pointer-events: none;
      transition: opacity .28s ease;
      z-index: 1200;
    }

    .appointment-overlay.is-open {
      opacity: 1;
      pointer-events: auto;
    }

    .appointment-drawer {
      width: 42vw;
      max-width: 700px;
      min-width: 360px;
      height: 100vh;
      background: #fff;
      color: #111;
      transform: translateX(100%);
      transition: transform .32s ease;
      display: flex;
      flex-direction: column;
      box-shadow: -18px 0 40px rgba(0, 0, 0, .12);
      font-family: "Nunito", sans-serif;
    }

    .appointment-overlay.is-open .appointment-drawer {
      transform: translateX(0);
    }

    .appointment-header {
      position: sticky;
      top: 0;
      z-index: 3;
      background: #fff;
      border-bottom: 1px solid #e5e5e5;
      padding: 18px 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .appointment-header h3 {
      margin: 0;
      font-size: 30px;
      color: #111;
    }

    .appointment-close {
      width: 38px;
      height: 38px;
      border-radius: 999px;
      border: none;
      background: #f3f3f3;
      color: #111;
      font-size: 24px;
      line-height: 1;
      cursor: pointer;
    }

    .appointment-form {
      display: flex;
      flex-direction: column;
      min-height: 0;
      flex: 1;
    }

    .appointment-body {
      flex: 1;
      overflow: auto;
      padding: 18px 22px 112px;
    }

    .appointment-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
      margin-bottom: 18px;
    }

    .appointment-step {
      border: 1px solid #e5e5e5;
      border-radius: 999px;
      padding: 8px 10px;
      font-size: 13px;
      text-align: center;
      color: #666;
      background: #fff;
    }

    .appointment-step.is-active {
      border-color: #7d8141;
      color: #7d8141;
      font-weight: 800;
      background: #f8f8f1;
    }

    .appointment-step.is-completed {
      border-color: #b9a15b;
      color: #7d8141;
      background: #fffdf7;
    }

    .appointment-step-panel {
      display: none;
    }

    .appointment-step-panel.is-active {
      display: block;
    }

    .appointment-section-title {
      margin: 8px 0 10px;
      color: #111;
      font-size: 21px;
      font-weight: 800;
    }

    .appointment-field {
      margin-bottom: 12px;
    }

    .appointment-label {
      display: block;
      margin-bottom: 6px;
      color: #333;
      font-size: 14px;
      font-weight: 700;
    }

    .appointment-privacy-label {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: #333;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.3;
    }

    .appointment-privacy-label input {
      width: 16px;
      height: 16px;
      margin-top: 1px;
      flex: 0 0 16px;
    }

    .appointment-privacy-label a {
      color: inherit;
      font-weight: 800;
      text-decoration: underline;
    }

    .appointment-input,
    .appointment-select,
    .appointment-textarea {
      width: 100%;
      border: 1px solid #e5e5e5;
      border-radius: 12px;
      padding: 11px 12px;
      font-family: "Nunito", sans-serif;
      font-size: 14px;
      color: #111;
      background: #fff;
    }

    .appointment-textarea {
      min-height: 110px;
      resize: vertical;
    }

    .appointment-error {
      color: #b42318;
      font-size: 12px;
      margin-top: 5px;
      min-height: 16px;
    }

    .appointment-error:empty {
      display: none;
    }

    .appointment-filter-row {
      display: flex;
      gap: 8px;
      margin: 10px 0 12px;
    }

    .appointment-filter {
      border: 1px solid #e5e5e5;
      background: #fff;
      color: #444;
      border-radius: 999px;
      padding: 7px 12px;
      font-size: 12px;
      font-weight: 800;
      cursor: pointer;
    }

    .appointment-filter.is-active {
      border-color: #7d8141;
      color: #7d8141;
      background: #f8f8f1;
    }

    .appointment-center-list {
      display: grid;
      gap: 10px;
    }

    .appointment-center-card {
      border: 1px solid #e5e5e5;
      border-radius: 14px;
      padding: 12px;
      cursor: pointer;
      background: #fff;
    }

    .appointment-center-card:hover {
      border-color: #d7d7d7;
    }

    .appointment-center-card.is-selected {
      border-color: #7d8141;
      box-shadow: 0 0 0 2px rgba(125, 129, 65, .14);
    }

    .appointment-center-head {
      display: flex;
      justify-content: space-between;
      gap: 8px;
      align-items: start;
    }

    .appointment-center-name {
      margin: 0;
      font-size: 15px;
      font-weight: 800;
      color: #111;
    }

    .appointment-center-type {
      font-size: 11px;
      font-weight: 800;
      color: #7d8141;
      border: 1px solid #b9a15b;
      border-radius: 999px;
      padding: 3px 8px;
    }

    .appointment-center-meta {
      margin: 6px 0 0;
      font-size: 13px;
      color: #555;
    }

    .appointment-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 8px;
    }

    .appointment-tag {
      font-size: 11px;
      padding: 3px 8px;
      border-radius: 999px;
      border: 1px solid #e5e5e5;
      color: #444;
      background: #fafafa;
    }

    .appointment-segmented {
      display: inline-flex;
      border: 1px solid #e5e5e5;
      border-radius: 999px;
      overflow: hidden;
      margin-bottom: 12px;
      background: #f8f8f8;
    }

    .appointment-segment {
      border: none;
      background: transparent;
      color: #444;
      padding: 10px 14px;
      font-size: 14px;
      font-weight: 800;
      cursor: pointer;
    }

    .appointment-segment.is-active {
      background: #7d8141;
      color: #fff;
    }

    .appointment-choices {
      display: grid;
      gap: 10px;
      margin-top: 8px;
    }

    .appointment-choice {
      border: 1px solid #e5e5e5;
      border-radius: 14px;
      padding: 12px;
      cursor: pointer;
      background: #fff;
    }

    .appointment-choice:hover {
      border-color: #d7d7d7;
    }

    .appointment-choice.is-selected {
      border-color: #7d8141;
      box-shadow: 0 0 0 2px rgba(125, 129, 65, .14);
    }

    .appointment-choice-title {
      margin: 0;
      font-size: 15px;
      font-weight: 800;
      color: #111;
    }

    .appointment-choice-more {
      margin-top: 6px;
      color: #7d8141;
      font-size: 13px;
      font-weight: 800;
    }

    .appointment-time-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .appointment-footer {
      position: sticky;
      bottom: 0;
      background: #fff;
      border-top: 1px solid #e5e5e5;
      padding: 14px 22px;
      z-index: 2;
    }

    .appointment-actions {
      display: flex;
      gap: 10px;
    }

    .appointment-btn {
      border-radius: 999px;
      padding: 12px 16px;
      font-size: 14px;
      font-weight: 800;
      border: 1px solid #e5e5e5;
      background: #fff;
      color: #333;
      cursor: pointer;
      flex: 1;
    }

    .appointment-btn--primary {
      border-color: #7d8141;
      background: #7d8141;
      color: #fff;
    }

    .appointment-btn[hidden] {
      display: none !important;
    }

    .appointment-success {
      border: 1px solid #b9a15b;
      background: #fffdf7;
      color: #111;
      border-radius: 12px;
      padding: 12px;
      font-size: 14px;
      margin-top: 10px;
      display: none;
    }

    .appointment-success.is-visible {
      display: block;
    }

    .appointment-open {
      overflow: hidden;
    }

    @media (max-width: 900px) {
      .appointment-drawer {
        width: 100vw;
        max-width: 100vw;
        min-width: 0;
      }

      .appointment-time-grid {
        grid-template-columns: 1fr;
      }
    }

    .footer {
      background: #333333;
      color: #ffffff;
      padding: 56px 64px 22px;
      border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .teens-page .footer {
      position: relative;
      margin-top: calc(var(--teens-footer-overlap) * -1);
      padding-top: 176px;
      background: linear-gradient(180deg, rgba(51, 51, 51, 0) 0%, rgba(51, 51, 51, .72) 38%, #333333 68%, #333333 100%);
      border-top: 0;
    }

    .teens-page .footer::before {
      content: "";
      position: absolute;
      top: var(--teens-footer-overlap);
      left: 0;
      right: 0;
      height: 1px;
      background: #ffffff;
      pointer-events: none;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 34px;
    }

    .footer-column {
      min-width: 0;
    }

    .footer-logo {
      margin: 0 0 10px;
      font-size: 44px;
      line-height: .82;
      letter-spacing: .5px;
      font-weight: 900;
      color: #ffffff;
    }

    .footer-tagline {
      margin: 0 0 16px;
      color: #ffffff;
      font-size: 18px;
      font-weight: 700;
    }

    .footer h5 {
      margin: 0 0 14px;
      font-size: 22px;
      color: #ffffff;
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .footer-aef {
      margin-top: 25px;
    }

    .footer-aef p {
      margin: 0 0 8px;
      padding-top: 8px;
      color: #ffffff;
      font-size: 17px;
      font-weight: 700;
      line-height: 1.2;
    }

    .footer-aef-logo {
      width: 140px;
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 16px;
      background: #ffffff;
      padding: 6px;
    }

    .footer a {
      color: rgba(255, 255, 255, .92);
      text-decoration: none;
      font-size: 17px;
      line-height: 1.28;
      transition: color .2s ease;
      width: fit-content;
    }

    .footer a:hover {
      color: #7d8141;
      text-decoration: none;
    }

    .footer-social {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 8px;
      margin-bottom: 25px;
      flex-wrap: wrap;
    }

    .footer .footer-social-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #ffffff;
      color: #333333;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 0;
      line-height: 0;
      box-shadow: 0 5px 12px rgba(0, 0, 0, .16);
      transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
    }

    .footer .footer-social-link svg {
      width: 17px;
      height: 17px;
      display: block;
    }

    .footer .footer-social-link:hover {
      transform: translateY(-2px) scale(1.04);
      background: #7d8141;
      color: #ffffff;
      box-shadow: 0 9px 16px rgba(0, 0, 0, .2);
    }

    .footer-iso-logo {
      width: 350px;
      max-width: 100%;
      height: auto;
      display: block;
      margin-top: 10px;
    }

    .footer-aef--standalone {
      margin-top: 8px;
      display: none;
    }

    .footer-iso-logo--standalone {
      margin-top: 10px;
      display: none;
    }

    .footer-aef--desktop,
    .footer-iso-logo--desktop {
      display: block;
    }

    .footer-bottom {
      margin-top: 30px;
      padding-top: 16px;
      border-top: 1px solid rgba(255, 255, 255, .14);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .footer-bottom p {
      margin: 0;
      color: rgba(255, 255, 255, .85);
      font-size: 14px;
    }

    .footer-legal {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .footer-legal a {
      font-size: 14px;
      color: rgba(255, 255, 255, .9);
    }

    .footer-legal a:hover {
      color: #7d8141;
      transform: none;
    }

    @media (max-width: 1160px) {
      .page {
        width: 100%;
        margin: 0;
      }

      .site-header {
        width: 100%;
        padding: 0 16px;
      }

      .header-logo {
        font-size: 24px;
      }

      section {
        padding: 40px 24px;
      }

      .nav {
        gap: 12px;
        font-size: 14px;
        flex-wrap: wrap;
      }

      .nav a {
        font-size: 20px;
      }

      .nav .pill {
        font-size: 20px;
        padding: 10px 16px;
      }

      .hero-content {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .logo-wrap {
        padding-bottom: 10px;
      }

      .logo {
        font-size: 76px;
      }

      .art {
        height: 300px;
      }

      h2 {
        font-size: 42px;
      }

      .cards,
      .steps,
      .numbers,
      .center-wrap,
      .franchise {
        grid-template-columns: 1fr;
      }

      .franchise {
        min-height: 0;
        overflow: hidden;
      }

      .franchise-copy {
        min-height: 0;
        padding: 30px 22px 20px;
      }

      .franchise-copy h2 {
        font-size: 40px;
      }

      .franchise-copy .sub {
        font-size: 20px;
        margin-bottom: 8px;
      }

      .franchise-copy .sub--small {
        font-size: 16px;
        margin-bottom: 16px;
      }

      .franchise-media {
        height: 340px;
        overflow: hidden;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        margin-bottom: -2px;
      }

      .franchise-img {
        position: static;
        transform: none;
        width: 120%;
        max-width: none;
        height: auto;
        object-fit: contain;
        object-position: center bottom;
        display: block;
        margin-bottom: -18px;
      }

      .card small {
        font-size: 18px;
      }

      .card h3 {
        font-size: 42px;
      }

      .card p {
        font-size: 30px;
      }

      .lead {
        font-size: 54px;
      }

      .sub {
        font-size: 28px;
      }

      .step h4 {
        font-size: 34px;
      }

      .step p {
        font-size: 26px;
      }

      .stats .title {
        font-size: 23px;
      }

      .numbers strong {
        font-size: 54px;
      }

      .numbers span {
        font-size: 26px;
      }

      .footer {
        grid-template-columns: 1fr;
        font-size: 20px;
      }

      .footer h5 {
        font-size: 28px;
      }

      .field {
        font-size: 22px;
        height: 54px;
      }

      .form-block h2 {
        font-size: 20px;
      }

      .form-block .sub {
        font-size: 18px;
      }

      .form-block .field {
        font-size: 16px;
      }

      .form-block .submit {
        font-size: 16px;
      }
    }

    .back-to-top {
      position: fixed;
      bottom: 100px;
      right: 20px;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: #7d8141;
      border: 0;
      outline: none;
      color: #ffffff;
      font-size: 22px;
      font-weight: 800;
      cursor: pointer;
      z-index: 9999;
      box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .3s ease, transform .3s ease;
      pointer-events: none;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
    }

    .back-to-top.visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .back-to-top:hover {
      background: #7d8141;
      color: #ffffff;
    }

    body.backtop-on-dark .back-to-top:not(.back-to-top--orange) {
      background: #ffffff;
      color: #7d8141;
    }

    body.backtop-on-dark .back-to-top:not(.back-to-top--orange):hover {
      background: #ffffff;
      color: #7d8141;
    }

    .back-to-top--orange {
      bottom: 36px;
      right: 20px;
      background: #f29310 !important;
      border-color: #f29310 !important;
      color: #ffffff !important;
    }

    .back-to-top--orange.visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .back-to-top--orange:hover {
      background: #f29310 !important;
      border-color: #f29310 !important;
      color: #ffffff !important;
    }

    .back-to-top--orange svg {
      display: block;
      width: 22px;
      height: 22px;
      fill: currentColor;
    }

    .teens-page .back-to-top:not(.back-to-top--orange),
    .teens-page .back-to-top:not(.back-to-top--orange):hover {
      background: #ffffff !important;
      border-color: #ffffff !important;
      color: #fc59bb !important;
    }

    body.teens-page.backtop-on-dark .back-to-top:not(.back-to-top--orange),
    body.teens-page.backtop-on-dark .back-to-top:not(.back-to-top--orange):hover {
      background: #ffffff !important;
      border-color: #ffffff !important;
      color: #fc59bb !important;
    }

    .teens-page .back-to-top:not(.back-to-top--orange) svg {
      fill: #fc59bb;
    }

    .teens-page .back-to-top--orange,
    .teens-page .back-to-top--orange:hover {
      background: #a8f084 !important;
      border-color: #a8f084 !important;
      color: #333333 !important;
    }

    .teens-page .back-to-top--orange svg {
      fill: #333333;
    }

    body.centers-in-view .back-to-top:not(.back-to-top--orange) {
      background: #7d8141;
      color: #ffffff;
    }

    body.teens-page.centers-in-view .back-to-top:not(.back-to-top--orange),
    body.teens-page.centers-in-view .back-to-top:not(.back-to-top--orange):hover {
      background: #ffffff !important;
      border-color: #ffffff !important;
      color: #fc59bb !important;
    }

    body.teens-page.backtop-on-dark .back-to-top:not(.back-to-top--orange),
    body.teens-page.backtop-on-dark .back-to-top:not(.back-to-top--orange):hover {
      background: #ffffff !important;
      border-color: #ffffff !important;
      color: #fc59bb !important;
    }

    .mobile-fixed-actions {
      position: fixed;
      left: 50%;
      bottom: 16px;
      transform: translateX(-50%);
      z-index: 1300;
      display: none;
      align-items: center;
      gap: 10px;
      width: calc(100% - 32px);
      max-width: 460px;
    }

    .appointment-open .mobile-fixed-actions {
      opacity: 0;
      pointer-events: none;
      transform: translateX(-50%) translateY(14px);
    }

    .appointment-open .back-to-top {
      opacity: 0 !important;
      pointer-events: none !important;
      transform: translateY(16px);
    }

    .mobile-action {
      border: 0;
      outline: none;
      text-decoration: none;
      font-family: "Nunito", sans-serif;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
    }

    .back-to-top:focus,
    .mobile-action:focus {
      outline: none;
    }

    .back-to-top:focus-visible,
    .mobile-action:focus-visible {
      box-shadow: 0 0 0 3px rgba(56, 118, 179, .28), 0 6px 18px rgba(0, 0, 0, .18);
    }

    .mobile-action--icon {
      width: 52px;
      height: 52px;
      background: #eeeeee;
      color: #7d8141;
      flex-shrink: 0;
    }

    .mobile-action--primary {
      height: 52px;
      flex: 1;
      background: #7d8141;
      color: #ffffff;
      gap: 8px;
      font-size: 16px;
      font-weight: 800;
      padding: 0 18px;
      cursor: pointer;
    }

    .teens-page .mobile-action--icon {
      background: #ffffff;
      color: #7d39b3;
    }

    .teens-page .mobile-action--primary {
      background: #a8f084;
      color: #333333;
    }

    .mobile-action svg {
      width: 22px;
      height: 22px;
      display: block;
    }

    @media (max-width: 1024px) {
      body {
        overflow-x: hidden;
      }

      section {
        padding: 56px 20px;
      }

      .site-header {
        height: 62px;
        padding: 0 16px;
        justify-content: space-between;
      }

      .header-logo {
        opacity: 0;
        transform: translateY(-6px);
        pointer-events: none;
        font-size: 22px;
      }

      .mobile-menu-toggle {
        display: inline-flex;
      }

      .nav {
        display: none;
      }

      .hero {
        padding-top: 62px;
      }

      .hero-content {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .logo {
        font-size: clamp(48px, 14vw, 76px);
      }

      .logo-wrap {
        padding-bottom: 12px;
        justify-content: center;
      }

      .art {
        justify-content: center;
        min-height: 0;
        padding-top: 12px;
      }

      .hero-img {
        max-height: 360px;
      }

      h2 {
        font-size: clamp(30px, 5.6vw, 40px);
        margin-bottom: 28px;
      }

      .lead {
        font-size: clamp(30px, 6vw, 42px);
      }

      .sub {
        font-size: clamp(18px, 3.3vw, 22px);
        margin: 18px auto 28px;
      }

      .cards {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .card {
        min-height: 0;
        padding: 22px;
      }

      .card small {
        font-size: 18px;
      }

      .card h3 {
        font-size: clamp(36px, 9vw, 46px);
      }

      .card p {
        font-size: 22px;
      }

      .card .pill {
        width: 100%;
        min-width: 0;
        padding: 14px 20px;
      }

      .actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
      }

      .actions .btn-outline,
      .actions .pill {
        width: 100%;
        justify-content: center;
      }

      .video-wrap {
        max-width: 100%;
        border-radius: 14px;
      }

      .hero-video {
        border-radius: 14px;
      }

      .steps {
        flex-direction: column;
        gap: 24px;
        margin-top: 26px;
      }

      .steps .step:nth-child(1) .foot,
      .steps .step:nth-child(2) .foot,
      .steps .step:nth-child(3) .foot,
      .steps .step:nth-child(4) .foot {
        margin-top: 0;
      }

      .step .foot {
        width: 92px;
        height: 108px;
        margin-bottom: 10px;
      }

      .step .foot .foot-number {
        font-size: 22px;
      }

      .step h4 {
        font-size: 26px;
      }

      .step p {
        font-size: 18px;
      }

      .cta-right {
        text-align: center;
        padding-right: 0;
        font-size: 21px;
      }

      .numbers {
        grid-template-columns: 1fr 1fr;
        gap: 18px 12px;
      }

      .numbers strong {
        font-size: clamp(34px, 7vw, 44px);
      }

      .numbers span {
        font-size: 16px;
      }

      .center-wrap {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }

      .map {
        order: 1;
        height: 320px;
        min-height: 320px;
        width: 100%;
      }

      .list {
        order: 2;
        height: 420px;
        min-height: 0;
      }

      .location {
        padding: 14px;
      }

      .location-info {
        flex-direction: column;
        align-items: flex-start;
      }

      .location-right {
        width: 100%;
        align-items: stretch;
      }

      .btn-cita,
      .btn-ver {
        text-align: center;
      }

      .franchise {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        grid-template-columns: 1fr;
      }

      .franchise-copy {
        padding: 34px 20px 20px;
        text-align: center;
        align-items: center;
      }

      .franchise-copy h2,
      .franchise-copy .sub,
      .franchise-copy .sub--small {
        text-align: center !important;
      }

      .franchise-media {
        height: 340px;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        overflow: hidden;
        margin-bottom: -2px;
      }

      .franchise-img {
        position: static;
        transform: none;
        width: 120%;
        max-width: none;
        height: auto;
        object-fit: contain;
        object-position: center bottom;
        display: block;
        margin-bottom: -18px;
      }

      .appointment-drawer {
        width: 100vw;
        max-width: 100vw;
        min-width: 0;
        height: 100vh;
        border-radius: 0;
      }

      .appointment-header {
        padding: 14px 16px;
      }

      .appointment-body {
        padding: 14px 16px 108px;
      }

      .appointment-footer {
        padding: 12px 16px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
      }

      .footer {
        padding: 44px 20px 110px;
      }

      .footer-social {
        justify-content: flex-start;
      }

      .footer-bottom {
        margin-top: 26px;
      }
    }

    @media (max-width: 768px) {
      body {
        padding-bottom: 92px;
      }

      .back-to-top {
        bottom: 200px;
        right: 8px;
        width: 40px;
        height: 40px;
      }

      .back-to-top--orange {
        display: none !important;
      }

      .mobile-fixed-actions {
        display: flex;
      }

      section {
        padding: 46px 20px;
      }

      .step .foot {
        width: 165px;
        height: 185px;
      }

      .step .foot .foot-number {
        font-size: 36px;
      }

      .hero-img {
        max-height: 300px;
      }

      .card {
        border-radius: 22px;
      }

      .card h3 {
        font-size: 40px;
      }

      .card p {
        font-size: 20px;
      }

      .numbers {
        grid-template-columns: 1fr 1fr;
      }

      .list-filters {
        flex-wrap: wrap;
      }

      .appointment-steps {
        grid-template-columns: 1fr 1fr;
      }

      .footer {
        display: grid;
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: left;
      }

      .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 28px;
      }

      .footer-column {
        width: 100%;
      }

      .footer h5 {
        font-size: 28px;
        line-height: 1.1;
        margin-bottom: 16px;
        margin-top: 20px;
      }

      .footer-social {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-start;
      }

      .footer-aef--desktop,
      .footer-iso-logo--desktop {
        display: none;
      }

      .footer-aef--standalone,
      .footer-iso-logo--standalone {
        display: block;
      }

      .footer-iso-logo {
        width: 250px !important;
        max-width: none !important;
      }
    }

    @media (max-width: 480px) {
      section {
        padding: 40px 16px;
      }

      .site-header {
        height: 62px;
        padding: 0 12px;
      }

      .nav {
        inset: 62px 0 auto 0;
        padding: 12px 16px 20px;
      }

      .header-logo {
        font-size: 20px;
      }

      .lead {
        font-size: 28px;
      }

      .sub {
        font-size: 16px;
      }

      .card {
        padding: 18px;
      }

      .card h3 {
        font-size: 34px;
      }

      .card p {
        font-size: 18px;
      }

      .step h4 {
        font-size: 22px;
      }

      .step p {
        font-size: 16px;
      }

      .numbers {
        grid-template-columns: 1fr;
      }

      .map {
        height: 280px;
        min-height: 280px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .footer {
        padding: 38px 16px 110px;
      }

      .footer-logo {
        font-size: 38px;
      }

      .footer h5 {
        font-size: 24px;
      }

      .footer a {
        font-size: 17px;
      }

      .footer-social {
        justify-content: center;
      }

      .footer-bottom {
        gap: 10px;
      }

      .footer-legal {
        gap: 10px 14px;
      }

      .back-to-top {
        width: 40px;
        height: 40px;
        right: 8px;
        bottom: 100px;
      }

      .back-to-top--orange {
        display: none !important;
      }
    }

    @media (min-width: 769px) {
      .mobile-fixed-actions {
        display: none;
      }
    }

    .about-page {
      background: #333333;
      color: #ffffff;
    }

    .about-page .nav a.about-nav-active,
    .about-page .mobile-nav-links a.about-nav-active {
      color: #ffffff;
      font-weight: 600;
    }

    .about-page .mobile-nav-links a.about-nav-active {
      margin: 14px 20px 0;
      width: calc(100% - 40px);
      text-align: center;
      border-bottom: none;
      display: inline-flex;
      justify-content: center;
    }

    .about-page .footer {
      margin-top: 0;
    }

    .about-hero {
      background: #333333;
      padding: 120px 64px 68px;
      position: relative;
      overflow: hidden;
    }

    .about-hero-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      align-items: center;
      gap: 32px;
    }

    .about-hero h1 {
      margin: 0;
      color: #ffffff;
      font-size: clamp(56px, 8vw, 200px);
      line-height: .9;
      font-weight: 900;
      letter-spacing: .2px;
    }

    .about-hero-art {
      justify-self: end;
      width: min(420px, 100%);
      aspect-ratio: 1 / 1;
      border-radius: 999px;
      overflow: hidden;
      border: 8px solid rgba(255, 255, 255, .1);
      box-shadow: 0 26px 56px rgba(0, 0, 0, .35);
      position: relative;
      background: radial-gradient(circle at 30% 30%, #4a4a4a 0%, #2f2f2f 100%);
    }

    .about-hero-art img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .about-intro {
      background: #333333;
      text-align: center;
      padding: 26px 64px 70px;
    }

    .about-intro p {
      max-width: 980px;
      margin: 0 auto 28px;
      color: #ffffff;
      font-size: 31px;
      line-height: 1.28;
      font-weight: 600;
    }

    .about-video-placeholder {
      max-width: 980px;
      height: 420px;
      border-radius: 26px;
      margin: 0 auto;
      border: 2px solid rgba(255, 255, 255, .22);
      background: linear-gradient(145deg, #3b3b3b 0%, #2f2f2f 100%);
      display: grid;
      place-items: center;
      color: #d6d6d6;
      font-size: 26px;
      font-weight: 700;
      letter-spacing: .03em;
    }

    .about-transition {
      background: #333333;
      text-align: center;
      padding: 24px 64px 70px;
    }

    .about-transition p {
      margin: 0;
      color: #ffffff;
      font-size: 36px;
      line-height: 1.24;
      font-weight: 700;
    }

    .about-transition strong {
      display: block;
      margin-top: 10px;
      color: #ffffff;
      font-size: 54px;
      line-height: 1.02;
      font-weight: 900;
      letter-spacing: .02em;
    }

    .about-story {
      background: #333333;
      padding: 0 64px 70px;
    }

    .about-story-grid {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 18px 44px rgba(0, 0, 0, .24);
    }

    .about-story-media {
      min-height: 520px;
      background: #d4d4d4;
      display: grid;
      place-items: center;
      color: #6f6f6f;
      font-size: 60px;
      font-weight: 800;
      text-transform: lowercase;
      letter-spacing: .04em;
    }

    .about-story-copy {
      background: #ffffff;
      color: #7d8141;
      padding: 54px 52px;
    }

    .about-story-copy h2 {
      margin: 0 0 20px;
      color: #7d8141;
      font-size: 46px;
      line-height: 1.05;
      text-align: left;
    }

    .about-story-copy p {
      margin: 0;
      color: #7d8141;
      font-size: 24px;
      line-height: 1.38;
      font-weight: 600;
    }

    .about-cards {
      background: #333333;
      padding: 0 30px 60px;
    }

    .about-cards-grid {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .about-card {
      background: #ffffff;
      color: #7d8141;
      border-radius: 30px;
      padding: 30px 28px 28px;
      min-height: 360px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .about-card-icon {
      width: 54px;
      height: 54px;
      border-radius: 16px;
      background: #f6f3e9;
      color: #7d8141;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .about-card-img {
      width: 120px;
      height: auto;
      display: block;
      margin: 0 auto 24px;
      object-fit: contain;
    }

    .about-card h3 {
      margin: 0;
      color: #7d8141;
      font-size: 34px;
      line-height: 1.04;
      font-weight: 800;
    }

    .about-card p {
      margin: 0;
      color: #7d8141;
      font-size: 22px;
      line-height: 1.33;
      font-weight: 600;
    }

    .about-foundation-logo {
      width: 120px;
      height: 120px;
      border-radius: 20px;
      object-fit: contain;
      background: #faf8f3;
      border: 1px solid #e8e2d5;
      padding: 10px;
    }

    .about-more {
      margin-top: auto;
      border: none;
      background: #7d8141;
      color: #ffffff;
      border-radius: 999px;
      padding: 12px 20px;
      font-size: 18px;
      font-weight: 800;
      width: fit-content;
      cursor: pointer;
    }

    @media (max-width: 1024px) {
      .about-hero-inner {
        grid-template-columns: 1fr;
      }

      .about-hero-art {
        justify-self: center;
        width: min(360px, 88vw);
      }

      .about-story-grid {
        grid-template-columns: 1fr;
      }

      .about-cards-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .about-hero {
        padding: 96px 20px 42px;
      }

      .about-hero h1 {
        text-align: center;
        font-size: clamp(44px, 14vw, 70px);
      }

      .about-intro,
      .about-transition,
      .about-story,
      .about-cards {
        padding-left: 20px;
        padding-right: 20px;
      }

      .about-intro p {
        font-size: 23px;
      }

      .about-video-placeholder {
        width: 100%;
        height: 240px;
        font-size: 20px;
      }

      .about-transition p {
        font-size: 26px;
      }

      .about-transition strong {
        font-size: 36px;
      }

      .about-story-media {
        min-height: 240px;
        font-size: 42px;
      }

      .about-story-copy {
        padding: 30px 24px;
      }

      .about-story-copy h2 {
        font-size: 34px;
      }

      .about-story-copy p,
      .about-card p {
        font-size: 19px;
      }

      .about-card {
        min-height: 0;
      }

      .about-card h3 {
        font-size: 30px;
      }
    }

    .about-page .about-hero {
      padding: 78px 0 92px;
      min-height: auto;
    }

    .about-page .header-logo {
      opacity: 1;
      transform: none;
      pointer-events: auto;
    }

    .about-page .about-hero-inner {
      max-width: none;
      width: 100%;
      grid-template-columns: minmax(320px, 1fr) minmax(560px, 760px);
      align-items: end;
      gap: 18px;
      padding-left: 64px;
    }

    .about-page .about-hero h1 {
      justify-self: center;
      text-align: center;
      margin-left: 24px;
    }

    .about-page .about-hero-art {
      border: 0;
      box-shadow: none;
      border-radius: 0;
      width: 100%;
      max-width: 760px;
      aspect-ratio: auto;
      background: transparent;
      overflow: hidden;
      position: relative;
      justify-self: end;
      margin-right: 0;
    }

    .about-page .about-hero-art::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: clamp(44px, 9vw, 86px);
      background: linear-gradient(to bottom, rgba(51, 51, 51, 0), #333333 90%);
      pointer-events: none;
    }

    .about-page .about-hero-art img {
      width: 100%;
      height: auto;
      object-fit: contain;
      object-position: right bottom;
      display: block;
    }

    .about-page .about-intro {
      padding: 24px 18px 28px;
    }

    .about-page .about-intro p {
      max-width: 920px;
      font-size: 25px;
      line-height: 1.38;
      opacity: .95;
      margin-bottom: 18px;
    }

    .about-page .about-video-placeholder {
      max-width: 800px;
      height: 450px;
      border-radius: 999;
      margin-top: 70px;
      margin-bottom: 70px;
      border: 0;
      background: #cfcfcf;
      padding: 0;
      overflow: hidden;
    }

    .about-video-player {
      width: 100%;
      height: 100%;
      display: block;
      background: #cfcfcf;
    }

    .about-page .about-transition {
      padding: 16px 18px 32px;
    }

    .about-page .about-transition p {
      font-size: 25px;
      line-height: 1.4;
      opacity: .9;
    }

    .about-page .about-transition strong {
      margin-top: 3px;
      font-size: 18px;
      letter-spacing: .08em;
      margin-bottom: 50px;
    }

    .about-page .about-story {
      padding: 0;
      background: #333333;
    }

    .about-page .about-story-grid {
      max-width: 100%;
      min-height: 650px;
      border-radius: 0;
      box-shadow: none;
      grid-template-columns: .95fr 1.05fr;
    }

    .about-page .about-story-media {
      min-height: 290px;
      background: #ffffff;
      overflow: hidden;
      position: relative;
    }

    .about-page .about-story-media::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 45%;
      pointer-events: none;
      background: linear-gradient(to bottom,
          rgba(250, 248, 243, 0) 0%,
          rgba(250, 248, 243, .35) 35%,
          rgba(250, 248, 243, .75) 68%,
          rgba(250, 248, 243, 1) 100%);
      z-index: 2;
    }

    .about-page .about-story-media::before {
      content: "";
      position: absolute;
      width: 180px;
      height: 130px;
      left: 6px;
      top: 56px;
      background: radial-gradient(circle at 20% 20%, #3f3f3f 0 18px, transparent 19px),
        radial-gradient(circle at 60% 38%, #606060 0 14px, transparent 15px),
        radial-gradient(circle at 88% 60%, #6a6a6a 0 12px, transparent 13px),
        radial-gradient(circle at 36% 78%, #4f4f4f 0 16px, transparent 17px);
      opacity: .95;
    }

    .about-page .about-story-media img {
      position: absolute;
      left: 8px;
      bottom: 1;
      width: 92%;
      height: auto;
      object-fit: contain;
      z-index: 1;
    }

    .about-page .about-story-copy {
      padding: 28px 18px;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .about-page .about-story-copy h2 {
      font-size: 40px;
      font-weight: 800;
      line-height: .95;
      margin-bottom: 14px;
      text-align: center;
    }

    .about-page .about-story-copy p {
      font-size: 20px;
      line-height: 1.32;
      text-align: center;
      padding: 50px;
    }

    .about-page .about-join-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 28px;
      padding: 14px 28px;
      border-radius: 999px;
      background: #f29310;
      color: #ffffff;
      font-family: "Nunito", sans-serif;
      font-weight: 800;
      font-size: 18px;
      text-decoration: none;
      box-shadow: 0 8px 18px rgba(0, 0, 0, .14);
      transition: transform .25s ease, box-shadow .25s ease;
      align-self: center;
      text-align: center;
    }

    .about-page .about-join-btn:hover {
      transform: scale(1.04);
      box-shadow: 0 10px 22px rgba(0, 0, 0, .18);
    }

    .about-page .about-cards {
      padding: 18px 8px 50px;
      background: #FAF8F3;
    }

    .about-page .about-cards-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 25px;
      margin-top: 50px;

    }

    .about-page .about-card {
      border-radius: 8px;
      padding: 30px;
      min-height: 238px;
      gap: 20px;
      align-items: center;
      text-align: center;
      background: #ffffff;
      box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
    }

    .about-page .about-card-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: transparent;
    }

    .about-page .about-card h3 {
      font-size: 40px;
      line-height: .92;
      color: #7d8141;
      margin-top: 2px;
    }

    .about-page .about-card p {
      font-size: 20px;
      line-height: 1.22;
      color: #7d8141;
      max-width: 95%;
    }

    .about-page .about-foundation-logo {
      width: 180px;
      height: 100px;
      border-radius: 0;
      padding: 0;
      border: none;
      background: transparent;
    }

    .about-page .about-more {
      font-size: 16px;
      padding: 10px 15px;
      margin-top: 0;
      background: #f29310;
      border-radius: 999px;
      line-height: 1.1;
      box-shadow: none;
    }

    @media (max-width: 900px) {
      .about-page .about-hero-inner {
        grid-template-columns: 1fr;
      }

      .about-page .about-hero-art {
        max-width: 260px;
        justify-self: end;
      }

      .about-page .about-story-grid {
        grid-template-columns: 1fr;
      }

      .about-page .about-cards-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .about-page .about-card {
        min-height: 0;
        padding: 18px 14px;
      }

      .about-page .about-card p {
        font-size: 14px;
      }

      .about-page .about-card h3 {
        font-size: 24px;
      }
    }

    @media (max-width: 768px) {
      .about-page {
        overflow-x: hidden;
      }

      .about-page .about-hero {
        padding: 94px 0 34px;
        overflow: hidden;
      }

      .about-page .about-hero-inner {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-left: 0;
        padding-right: 0;
      }

      .about-page .about-hero h1 {
        margin-left: 0;
        font-size: clamp(54px, 16vw, 78px);
        line-height: .92;
        width: 100%;
        text-align: center;
      }

      .about-page .about-hero-art {
        width: 100%;
        max-width: none;
        justify-self: stretch;
        margin-right: 0;
      }

      .about-page .about-hero-art img {
        width: 100%;
        max-width: none;
        object-fit: contain;
        object-position: right bottom;
        margin-right: 0;
        display: block;
      }

      .about-page .about-hero-art::after {
        height: clamp(90px, 24vw, 150px);
        background: linear-gradient(to bottom, rgba(51, 51, 51, 0) 0%, rgba(51, 51, 51, .65) 55%, #333333 100%);
      }

      .about-page .about-intro {
        padding: 18px 20px 20px;
      }

      .about-page .about-intro p {
        font-size: 20px;
        line-height: 1.35;
        margin-bottom: 14px;
      }

      .about-page .about-video-placeholder {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        margin-top: 22px;
        margin-bottom: 26px;
        border-radius: 18px;
      }

      .about-page .about-transition {
        padding: 12px 20px 24px;
      }

      .about-page .about-transition p {
        font-size: 22px;
        line-height: 1.35;
      }

      .about-page .about-transition strong {
        font-size: 18px;
        line-height: 1.05;
        margin-top: 8px;
        margin-bottom: 6px;
      }

      .about-page .about-story-grid {
        grid-template-columns: 1fr;
        min-height: 0;
      }

      .about-page .about-story-media {
        min-height: 0;
        aspect-ratio: auto;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding-top: 10px;
        padding-bottom: 0;
      }

      .about-page .about-story-media::before {
        display: none;
      }

      .about-page .about-story-media::after {
        background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, .35) 35%,
            rgba(255, 255, 255, .75) 68%,
            rgba(255, 255, 255, 1) 100%);
      }

      .about-page .about-story-media img {
        position: static;
        width: 78%;
        height: auto;
        max-width: 380px;
        object-fit: contain;
        object-position: center bottom;
        z-index: 1;
      }

      .about-page .about-story-copy {
        padding: 26px 20px;
      }

      .about-page .about-story-copy h2 {
        font-size: 32px;
        margin-top: 50px;
      }

      .about-page .about-story-copy p {
        font-size: 18px;
        line-height: 1.38;
        padding: 0;
      }

      .about-page .about-join-btn {
        width: auto;
        max-width: 90%;
        text-align: center;
        font-size: 16px;
        padding: 13px 22px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 50px;
      }

      .about-page .about-cards {
        padding: 20px 10px 34px;
        margin: 0;
      }

      .about-page .about-cards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 100%;
        margin-top: 0;
      }

      .about-page .about-card {
        border-radius: 18px;
        padding: 18px 16px 16px;
        min-height: 0;
        width: 100%;
        max-width: none;
      }

      .about-page .about-card h3 {
        font-size: 28px;
      }

      .about-page .about-card p {
        font-size: 18px;
        line-height: 1.35;
        max-width: 100%;
      }

      .about-page .about-card-img {
        width: 104px;
        margin: 0 auto 14px;
      }

      .about-page .about-foundation-logo {
        width: 140px;
        height: auto;
      }
    }

    button,
    .btn,
    .pill,
    .btn-outline,
    .btn-outline--franquicia,
    .btn-cita,
    .btn-ver,
    .back-to-top,
    .filter-btn,
    .appointment-btn,
    .appointment-segment,
    .appointment-filter {
      text-align: center;
      justify-content: center;
      align-items: center;
    }

    /* Therapies page */
    body.therapies-page {
      font-family: "Nunito", sans-serif;
      background: #333333;
      color: #fff;
    }

    .therapies-hero {
      background: #333333;
      color: #ffffff;
      text-align: center;
      padding: 120px 24px 16px;
    }

    .therapies-hero h1 {
      margin: 0;
      font-size: clamp(44px, 6vw, 64px);
      font-weight: 800;
      line-height: 1.05;
    }

    .therapies-hero p {
      margin: 35px 0 0;
      font-size: clamp(20px, 2.6vw, 30px);
      font-weight: 600;
      color: rgba(255, 255, 255, .92);
    }

    .therapies-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      background-color: #333333;
      align-items: start;
      row-gap: 0;
    }

    .terapias-infantiles-wrap,
    .terapias-adolescentes-wrap,
    .terapias-familiares-wrap {
      --cards-progress: 0;
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: start;
      height: 560px;
      min-height: 560px;
      max-height: 560px;
      margin-top: 50px;
      position: relative;
    }

    #terapias-infantiles,
    #terapias-adolescentes,
    #terapias-familiares {
      scroll-margin-top: 84px;
    }

    .terapias-infantiles-wrap::before,
    .terapias-adolescentes-wrap::before,
    .terapias-familiares-wrap::before {
      content: "";
      position: absolute;
      left: calc(50% + 18px);
      top: 74px;
      bottom: 74px;
      width: 3px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .38);
      z-index: 40;
      pointer-events: none;
    }

    .terapias-infantiles-wrap::after,
    .terapias-adolescentes-wrap::after,
    .terapias-familiares-wrap::after {
      content: "";
      position: absolute;
      left: calc(50% + 18px);
      width: 3px;
      height: 56px;
      border-radius: 999px;
      background: #7d8141;
      top: calc(74px + (100% - 148px - 56px) * var(--cards-progress, 0));
      z-index: 41;
      pointer-events: none;
    }

    .terapias-adolescentes-wrap::before,
    .terapias-adolescentes-wrap::after {
      left: 18px;
    }

    .terapias-sticky-img {
      position: relative;
      top: 0;
      height: 560px;
      overflow: visible;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 0;
    }

    .terapias-sticky-img img {
      width: 100%;
      height: auto;
      max-height: 100%;
      object-fit: contain;
      object-position: center center;
      display: block;
      transform: translateY(-110px) rotate(100deg);
      transform-origin: center center;
    }

    .terapias-infantiles-wrap .terapias-sticky-img {
      overflow: visible;
    }

    .terapias-infantiles-wrap .terapias-sticky-img img {
      width: 82%;
      max-height: 520px;
      transform: translateY(1) rotate(100deg);
    }

    .terapias-adolescentes-wrap .terapias-sticky-img img {
      transform: translateY(0) rotate(0deg);
      -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 72%, rgba(0, 0, 0, 0) 100%);
      mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 72%, rgba(0, 0, 0, 0) 100%);
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-size: 100% 100%;
      mask-size: 100% 100%;
    }

    .terapias-familiares-wrap .terapias-sticky-img img {
      transform: translateY(0) rotate(0deg);
      -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 72%, rgba(0, 0, 0, 0) 100%);
      mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 72%, rgba(0, 0, 0, 0) 100%);
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-size: 100% 100%;
      mask-size: 100% 100%;
    }

    .terapias-adolescentes-wrap .terapias-sticky-img::after,
    .terapias-familiares-wrap .terapias-sticky-img::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 170px;
      background: linear-gradient(to bottom, rgba(51, 51, 51, 0), #333333 90%);
      pointer-events: none;
      z-index: 20;
    }

    .terapias-adolescentes-wrap .terapias-sticky-img::after {
      display: none;
    }

    .terapias-familiares-wrap .terapias-sticky-img::after {
      display: none;
    }

    .terapias-adolescentes-wrap .terapias-cards-scroll {
      order: 1;
    }

    .terapias-adolescentes-wrap .terapias-sticky-img {
      order: 2;
    }

    .terapias-cards-scroll {
      --cards-progress: 0;
      background: transparent;
      position: relative;
      top: 0;
      height: 560px;
      overflow-y: auto;
      overflow-x: hidden;
      scroll-snap-type: y proximity;
      scroll-behavior: smooth;
      scroll-padding-top: 24px;
      scroll-padding-bottom: 24px;
      overscroll-behavior: contain;
      padding: 20px 22px 20px 54px;
      touch-action: pan-y;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      isolation: isolate;
    }

    .terapias-cards-scroll::-webkit-scrollbar {
      width: 0;
      height: 0;
    }

    .terapias-cards-scroll::before {
      display: none;
    }

    .terapias-cards-scroll::after {
      display: none;
    }

    .terapias-cards-next {
      display: none;
      border: 0;
      border-radius: 999px;
      background: #f29310;
      color: #ffffff;
      width: 46px;
      height: 46px;
      font-size: 28px;
      font-weight: 800;
      line-height: 1;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
    }

    .terapia-card {
      width: 100%;
      height: 560px;
      min-height: 560px;
      max-height: 560px;
      position: relative;
      z-index: 1;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding: 16px 22px 16px 44px;
      opacity: .82;
      transform: scale(.985);
      filter: none;
      pointer-events: auto;
      transition: opacity .22s ease-out, transform .22s ease-out;
      scroll-snap-align: start;
    }

    .terapia-card.is-active,
    .terapia-card.active {
      opacity: 1;
      transform: scale(1);
      filter: none;
    }

    .terapia-card:nth-child(2).is-active {
      transition-delay: .08s;
    }

    .terapia-card:nth-child(3).is-active {
      transition-delay: .1s;
    }

    .terapia-card:nth-child(4).is-active {
      transition-delay: .15s;
    }

    .terapia-card:nth-child(5).is-active {
      transition-delay: .2s;
    }

    .terapia-card:nth-child(6).is-active {
      transition-delay: .25s;
    }

    .terapia-card-inner {
      position: relative;
      max-width: 460px;
      width: 460px;
      min-height: 320px;
      text-align: center;
      background: #ffffff;
      border: 1px solid #eceff5;
      border-radius: 18px;
      padding: 28px 24px;
      box-shadow: 0 16px 32px rgba(19, 23, 35, .08);
      display: flex;
      flex-direction: column;
      justify-content: center;
      transition: box-shadow .22s ease-out;
    }

    .terapia-card.is-active .terapia-card-inner,
    .terapia-card.active .terapia-card-inner {
      box-shadow: 0 18px 36px rgba(19, 23, 35, .14);
    }

    .terapia-card-title {
      font-size: 32px;
      font-weight: 800;
      margin: 0 0 20px;
      font-family: "Nunito", sans-serif;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      box-sizing: border-box;
    }

    .terapia-card-text {
      font-size: 18px;
      line-height: 1.6;
      color: #7d8141;
      font-family: "Nunito", sans-serif;
      margin: 0;
      line-height: 1;
    }

    .terapia-card-subtitle {
      margin: -6px 0 18px;
      font-family: "Nunito", sans-serif;
      font-size: 24px;
      font-weight: 900;
      line-height: 1.18;
    }

    .terapia-card-list {
      display: grid;
      gap: 9px;
      margin: 0;
      padding: 0;
      color: #a0a07d;
      font-family: "Nunito", sans-serif;
      font-size: 18px;
      line-height: 1.28;
      list-style: none;
      text-align: left;
      width: 100%;
    }

    .terapia-card-list--purple {
      color: #6c4394;
      font-weight: 600;
    }

    .terapia-card-list li {
      position: relative;
      padding-left: 22px;
    }

    .terapia-card-list li::before {
      content: "✔";
      position: absolute;
      left: 0;
      top: .02em;
      width: auto;
      height: auto;
      border-radius: 0;
      background: transparent;
      color: currentColor;
      font-size: .88em;
      font-weight: 900;
      line-height: 1;
      transform: none;
    }

    .card-icon {
      position: absolute;
      top: 28px;
      right: 24px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0;
      pointer-events: none;
    }

    .card-icon img {
      width: 96px;
      height: 96px;
      object-fit: contain;
      mix-blend-mode: multiply;
    }

    .terapias-infantiles-wrap .terapia-card:nth-child(1) .terapia-card-text {
      color: #aeb538;
    }

    .terapias-infantiles-wrap .terapia-card:nth-child(2) .terapia-card-text {
      color: #ec728f;
    }

    .terapias-infantiles-wrap .terapia-card:nth-child(3) .terapia-card-text {
      color: #3876b3;
    }

    .terapias-infantiles-wrap .terapia-card:nth-child(4) .terapia-card-text {
      color: #f29310;
    }

    .terapias-infantiles-wrap .terapia-card:nth-child(5) .terapia-card-text {
      color: #3876b3;
    }

    .terapias-infantiles-wrap .terapia-card:nth-child(6) .terapia-card-text {
      color: #aeb538;
    }

    .terapias-infantiles-wrap .terapia-card:nth-child(7) .terapia-card-text {
      color: #f29310;
    }

    .terapias-infantiles-wrap .terapia-card:nth-child(8) .terapia-card-text,
    .terapias-infantiles-wrap .terapia-card:nth-child(9) .terapia-card-text,
    .terapias-infantiles-wrap .terapia-card:nth-child(10) .terapia-card-text {
      color: #a0a07d;
    }


    .therapy-block {
      height: 450px;
      min-height: 450px;
      max-height: 450px;
    }

    .therapy-placeholder {
      background: #333333;
      width: 100%;
      height: 100%;
      min-height: 450px;
      display: block;
      object-fit: cover;
    }

    .therapy-content {
      height: 450px;
      min-height: 450px;
      max-height: 450px;
      background: #ffffff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 48px;
    }

    .therapy-content h2 {
      margin: 0 0 16px;
      font-size: clamp(38px, 4vw, 56px);
      line-height: 1.02;
    }

    .therapy-content p {
      margin: 0;
      max-width: 660px;
      font-size: clamp(24px, 2.8vw, 34px);
      line-height: 1.12;
      font-weight: 600;
      color: #aeb538;
    }

    .therapy-content .extra {
      margin-top: 16px;
      font-size: clamp(16px, 2vw, 24px);
      font-weight: 800;
      letter-spacing: .03em;
    }

    .therapy-title--infantil {
      color: #aeb538;
    }

    .therapy-title--adolescentes {
      color: #DD64A2;
    }

    .therapy-title--familiares {
      color: #a0a07d;
    }

    .therapies-cta {
      background: #333333;
      color: #ffffff;
      text-align: center;
      padding: 78px 24px 86px;
    }

    .therapies-cta h2 {
      margin: 0 0 30px;
      font-size: clamp(38px, 5vw, 62px);
      line-height: 1.04;
      color: #ffffff;
    }

    .therapies-cta-actions {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .therapies-cta .btn-cita {
      background: #f29310;
      color: #ffffff;
      border: 1px solid #f29310;
      border-radius: 999px;
      padding: 14px 28px;
      text-decoration: none;
      font-size: 20px;
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .therapies-cta .btn-centro {
      background: transparent;
      color: #f29310;
      border: 2px solid #f29310;
      border-radius: 999px;
      padding: 12px 28px;
      text-decoration: none;
      font-size: 20px;
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    @media (min-width: 1025px) {

      .terapias-infantiles-wrap .terapia-card:nth-child(1) .terapia-card-inner,
      .terapias-adolescentes-wrap .terapia-card:nth-child(1) .terapia-card-inner,
      .terapias-familiares-wrap .terapia-card:nth-child(1) .terapia-card-inner {
        align-items: center;
        text-align: center;
      }

      .terapias-infantiles-wrap .terapia-card:nth-child(1) .card-icon--section,
      .terapias-adolescentes-wrap .terapia-card:nth-child(1) .card-icon--section,
      .terapias-familiares-wrap .terapia-card:nth-child(1) .card-icon--section {
        position: static;
        width: 100%;
        justify-content: center;
        margin: 0 0 34px;
      }

      .terapias-infantiles-wrap .terapia-card:nth-child(1) .card-icon--section img,
      .terapias-adolescentes-wrap .terapia-card:nth-child(1) .card-icon--section img,
      .terapias-familiares-wrap .terapia-card:nth-child(1) .card-icon--section img {
        width: 154px;
        height: auto;
      }

      .terapias-infantiles-wrap .terapia-card:nth-child(1) .terapia-card-title,
      .terapias-infantiles-wrap .terapia-card:nth-child(1) .terapia-card-text,
      .terapias-infantiles-wrap .terapia-card:nth-child(1) .terapia-card-text strong,
      .terapias-adolescentes-wrap .terapia-card:nth-child(1) .terapia-card-title,
      .terapias-adolescentes-wrap .terapia-card:nth-child(1) .terapia-card-text,
      .terapias-adolescentes-wrap .terapia-card:nth-child(1) .terapia-card-text strong,
      .terapias-familiares-wrap .terapia-card:nth-child(1) .terapia-card-title,
      .terapias-familiares-wrap .terapia-card:nth-child(1) .terapia-card-text,
      .terapias-familiares-wrap .terapia-card:nth-child(1) .terapia-card-text strong {
        text-align: center;
      }

      .terapias-infantiles-wrap .terapia-card:nth-child(4) .terapia-card-title,
      .terapias-infantiles-wrap .terapia-card:nth-child(5) .terapia-card-title,
      .terapias-infantiles-wrap .terapia-card:nth-child(6) .terapia-card-title {
        margin-top: 112px;
      }

      .terapias-infantiles-wrap .terapia-card:nth-child(4) .terapia-card-text,
      .terapias-infantiles-wrap .terapia-card:nth-child(5) .terapia-card-text,
      .terapias-infantiles-wrap .terapia-card:nth-child(6) .terapia-card-text {
        padding-right: 0;
      }

      .terapias-infantiles-wrap .terapia-card:nth-child(8) .card-icon,
      .terapias-infantiles-wrap .terapia-card:nth-child(9) .card-icon,
      .terapias-infantiles-wrap .terapia-card:nth-child(10) .card-icon {
        top: auto;
        right: 28px;
        bottom: 24px;
      }
    }

    @media (max-width: 1024px) {
      .therapies-grid {
        grid-template-columns: 1fr;
      }

      .terapias-infantiles-wrap,
      .terapias-adolescentes-wrap,
      .terapias-familiares-wrap {
        grid-template-columns: 1fr;
        min-height: auto;
        height: auto;
        max-height: none;
        margin-top: 24px;
        padding-bottom: 34px;
      }

      .terapias-adolescentes-wrap .terapias-cards-scroll,
      .terapias-adolescentes-wrap .terapias-sticky-img {
        order: initial;
      }

      .terapias-sticky-img {
        position: relative;
        top: 0;
        height: auto;
        min-height: 0;
        padding: 0 20px;
      }

      .terapias-sticky-img img {
        width: min(92vw, 520px);
        max-height: 300px;
        transform: none !important;
        margin: 0 auto;
      }

      .terapias-cards-scroll {
        position: relative;
        top: 0;
        height: auto;
        overflow-x: auto;
        overflow-y: hidden;
        display: flex;
        gap: 16px;
        padding: 14px 20px 18px;
        scroll-snap-type: x mandatory;
        touch-action: pan-x;
        justify-content: flex-start;
      }

      .terapia-card {
        flex: 0 0 calc(100vw - 40px);
        width: calc(100vw - 40px);
        min-height: 0;
        height: auto;
        padding: 0;
        opacity: 1;
        transform: none;
        scroll-snap-align: center;
      }

      .terapia-card-inner {
        width: 100%;
        max-width: 100%;
        min-height: 340px;
        margin: 0 auto;
      }

      .terapias-cards-next {
        display: inline-flex;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -26px;
        z-index: 50;
      }

      /* En móvil, Terapias Infantiles se muestra completa sin carrusel horizontal. */
      #terapias-infantiles .terapias-cards-scroll {
        display: grid;
        grid-auto-flow: row;
        gap: 14px;
        overflow: visible;
        padding: 14px 20px 0;
        touch-action: auto;
        scroll-snap-type: none;
      }

      #terapias-infantiles .terapia-card {
        flex: none;
        width: 100%;
        scroll-snap-align: none;
      }

      #terapias-infantiles .terapias-cards-next {
        display: none;
      }

      .terapias-infantiles-wrap::before,
      .terapias-adolescentes-wrap::before,
      .terapias-familiares-wrap::before,
      .terapias-infantiles-wrap::after,
      .terapias-adolescentes-wrap::after,
      .terapias-familiares-wrap::after {
        display: none;
      }

      .terapias-infantiles-wrap::before,
      .terapias-adolescentes-wrap::before,
      .terapias-familiares-wrap::before {
        background: rgba(255, 255, 255, .38);
      }

      .terapias-infantiles-wrap::after,
      .terapias-adolescentes-wrap::after,
      .terapias-familiares-wrap::after {
        width: calc(88px * var(--cards-progress, 0));
        background: #7d8141;
      }
    }

    @media (max-width: 768px) {

      html,
      body.therapies-page {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
      }

      body.therapies-page .page {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
      }

      body.therapies-page .therapies-grid {
        width: 100%;
        max-width: 100%;
        margin: 0;
        justify-items: center;
        padding-left: 0;
        padding-right: 0;
      }

      body.therapies-page .therapies-grid .terapias-infantiles-wrap,
      body.therapies-page .therapies-grid .terapias-adolescentes-wrap,
      body.therapies-page .therapies-grid .terapias-familiares-wrap {
        width: 100%;
        justify-items: center;
        align-items: center;
        margin-top: 0;
        padding-bottom: 0;
      }

      .terapias-infantiles-wrap .terapias-sticky-img,
      .terapias-adolescentes-wrap .terapias-sticky-img,
      .terapias-familiares-wrap .terapias-sticky-img {
        margin-top: 50px;
        padding-bottom: 0;
      }

      .terapias-infantiles-wrap .terapias-sticky-img img,
      .terapias-adolescentes-wrap .terapias-sticky-img img,
      .terapias-familiares-wrap .terapias-sticky-img img {
        width: min(125vw, 900px);
        max-height: 560px;
        transform: rotate(-5deg) !important;
        margin: 0 0 0 -14vw;
      }

      .terapias-infantiles-wrap .terapias-cards-scroll,
      .terapias-adolescentes-wrap .terapias-cards-scroll,
      .terapias-familiares-wrap .terapias-cards-scroll {
        width: 100%;
        margin-left: 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0;
        justify-content: flex-start;
        touch-action: pan-x pan-y;
        overscroll-behavior: auto;
        scroll-padding-left: 0;
        scroll-padding-right: 0;
        scroll-snap-stop: always;
        gap: 0;
      }

      .terapias-infantiles-wrap .terapia-card,
      .terapias-adolescentes-wrap .terapia-card,
      .terapias-familiares-wrap .terapia-card {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        max-width: none;
        margin: 0;
        scroll-snap-align: start;
        box-sizing: border-box;
        display: grid;
        place-items: center;
        min-height: auto;
        padding: 0;
      }

      #terapias-infantiles .terapias-cards-scroll {
        position: relative;
        top: 0;
        height: auto;
        overflow-x: auto;
        overflow-y: hidden;
        display: flex;
        gap: 0;
        padding: 0;
        scroll-snap-type: x mandatory;
        touch-action: pan-x pan-y;
        overscroll-behavior: auto;
        justify-content: flex-start;
        scroll-padding-left: 0;
        scroll-padding-right: 0;
      }

      #terapias-infantiles .terapia-card {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        max-width: none;
        margin: 0;
        scroll-snap-align: start;
      }

      .terapias-cards-scroll .terapia-card,
      .terapias-cards-scroll .terapia-card-inner,
      .terapias-cards-scroll .terapia-card-title,
      .terapias-cards-scroll .terapia-card-text {
        text-align: center;
      }

      .terapias-cards-scroll .terapia-card-inner {
        align-items: center;
        width: calc(100% - 24px);
        margin-left: auto;
        margin-right: auto;
      }

      .terapias-cards-scroll .terapia-card-title,
      .terapias-cards-scroll .terapia-card-text,
      .terapias-cards-scroll .terapia-card-text strong {
        width: 100%;
        max-width: 100%;
        text-align: center;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
        hyphens: auto;
        overflow: visible;
      }

      .terapias-cards-scroll .terapia-card-title {
        font-size: clamp(24px, 7.2vw, 36px);
        line-height: 1.15;
        margin: 0 0 24px;
      }

      .terapias-cards-scroll .terapia-card-text {
        font-size: clamp(16px, 4.6vw, 20px);
        line-height: 1.48;
      }

      /* Override final móvil: slides y card interna a ancho completo */
      .terapias-cards-scroll {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 0;
        scroll-padding-right: 0;
        gap: 0;
      }

      .terapias-cards-scroll>* {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        scroll-snap-align: start;
      }

      .terapias-cards-scroll .terapia-card {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        scroll-snap-align: start !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 60vw !important;
      }

      .terapias-cards-scroll .terapia-card-inner {
        width: calc(100% - 32px) !important;
        max-width: 420px !important;
        margin: 0 auto !important;
        padding: 28px 20px !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
      }

      #terapias-infantiles .terapias-cards-next {
        display: inline-flex;
      }

      .therapies-page .terapias-cards-next {
        left: 70% !important;
        transform: translateX(-50%) !important;
      }

      /* Override final estricto: sin borde y texto centrado */
      .therapies-page .terapias-cards-scroll .terapia-card-inner {
        width: 100%;
        max-width: 100%;
        padding: 36px 64px 36px 32px;
        margin: 0;
        box-sizing: border-box;
        border: none;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        text-align: left;
      }

      .therapies-page .terapias-cards-scroll .terapia-card-title,
      .therapies-page .terapias-cards-scroll .terapia-card-subtitle,
      .therapies-page .terapias-cards-scroll .terapia-card-text,
      .therapies-page .terapias-cards-scroll .terapia-card-list,
      .therapies-page .terapias-cards-scroll .terapia-card-text strong {
        display: block;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: auto;
        text-align: left;
        white-space: normal;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
        box-sizing: border-box;
        overflow: visible;
      }

      .therapies-page .terapias-cards-scroll .terapia-card-list {
        display: grid;
      }

      .therapies-page .terapias-cards-scroll .terapia-card-subtitle {
        font-size: 21px;
        font-weight: 900;
        line-height: 1.22;
        margin: -8px 0 24px;
      }

      .terapias-adolescentes-wrap .terapia-card:nth-child(2) .terapia-card-inner,
      .terapias-adolescentes-wrap .terapia-card:nth-child(3) .terapia-card-inner {
        padding-left: 36px !important;
        padding-right: 72px !important;
      }

      .terapias-adolescentes-wrap .terapia-card:nth-child(2) .terapia-card-title,
      .terapias-adolescentes-wrap .terapia-card:nth-child(2) .terapia-card-subtitle,
      .terapias-adolescentes-wrap .terapia-card:nth-child(2) .terapia-card-list,
      .terapias-adolescentes-wrap .terapia-card:nth-child(3) .terapia-card-title,
      .terapias-adolescentes-wrap .terapia-card:nth-child(3) .terapia-card-subtitle,
      .terapias-adolescentes-wrap .terapia-card:nth-child(3) .terapia-card-list {
        overflow-wrap: anywhere;
        word-break: normal;
      }

      .terapias-adolescentes-wrap .terapia-card:nth-child(2) .terapia-card-list,
      .terapias-adolescentes-wrap .terapia-card:nth-child(3) .terapia-card-list {
        font-size: 16px;
        line-height: 1.32;
        gap: 10px;
      }

      .terapias-familiares-wrap .terapia-card:nth-child(n+2) .terapia-card-inner {
        padding-left: 36px !important;
        padding-right: 88px !important;
      }

      .terapias-familiares-wrap .terapia-card:nth-child(n+2) .terapia-card-title,
      .terapias-familiares-wrap .terapia-card:nth-child(n+2) .terapia-card-subtitle,
      .terapias-familiares-wrap .terapia-card:nth-child(n+2) .terapia-card-text {
        overflow-wrap: anywhere;
        word-break: normal;
      }

      .therapies-page .terapias-cards-scroll .terapia-card-inner:has(.card-icon) .terapia-card-title {
        padding-right: 132px;
      }

      .therapies-page .terapias-cards-scroll .terapia-card-text {
        box-sizing: border-box;
        padding-right: 80px;
      }

      .therapies-page .terapias-cards-scroll .card-icon {
        position: absolute;
        top: 28px;
        right: 128px;
        width: auto;
        display: flex;
        justify-content: center;
        margin: 0;
      }

      .therapies-page .terapias-cards-scroll .card-icon img {
        width: 112px;
        height: 112px;
      }

      .therapies-page .terapias-cards-scroll .card-icon--section img {
        width: 75%;
        max-width: none;
        height: auto;
      }

      .therapies-page .terapias-cards-scroll .card-icon--section {
        position: static;
        width: 100%;
        justify-content: flex-start;
        margin: 2px 0 42px;
      }

      .therapies-page .terapias-cards-scroll .terapia-card-inner:has(.card-icon--section) .terapia-card-title {
        padding-right: 0;
      }

      .therapies-page .terapias-cards-scroll .terapia-card-inner:has(.card-icon--section) {
        align-items: flex-start !important;
        justify-content: center !important;
        text-align: left;
        padding-left: 36px !important;
        padding-right: 36px !important;
      }

      .therapies-page .terapias-cards-scroll .terapia-card-inner:has(.card-icon--section) .card-icon--section {
        justify-content: flex-start;
      }

      .therapies-page .terapias-cards-scroll .terapia-card-inner:has(.card-icon--section) .terapia-card-title,
      .therapies-page .terapias-cards-scroll .terapia-card-inner:has(.card-icon--section) .terapia-card-text,
      .therapies-page .terapias-cards-scroll .terapia-card-inner:has(.card-icon--section) .terapia-card-text strong {
        margin-left: 0;
        margin-right: auto;
        text-align: left;
      }

      .terapias-infantiles-wrap .terapia-card:nth-child(8) .card-icon img,
      .terapias-infantiles-wrap .terapia-card:nth-child(10) .card-icon img {
        width: 142px;
        height: 142px;
      }

      .terapias-infantiles-wrap .terapia-card:nth-child(8) .card-icon {
        right: 104px;
      }

      .terapias-infantiles-wrap .terapia-card:nth-child(5) .terapia-card-title {
        margin-top: 92px;
      }

      .terapias-infantiles-wrap .terapia-card:nth-child(9) .card-icon {
        top: 36px;
        right: 118px;
        bottom: auto;
      }

      .terapias-infantiles-wrap .terapia-card:nth-child(9) .card-icon img {
        width: 158px;
        height: 158px;
      }

      /* Fix definitivo de desplazamiento lateral en móvil */
      .therapies-page .terapias-cards-scroll {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        gap: 0 !important;
        scrollbar-width: none;
      }

      body.therapies-page .therapies-grid .terapias-infantiles-wrap,
      body.therapies-page .therapies-grid .terapias-adolescentes-wrap,
      body.therapies-page .therapies-grid .terapias-familiares-wrap {
        padding-bottom: 52px !important;
        overflow: visible;
      }

      .therapies-page .terapias-cards-scroll::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
      }

      .therapies-page .terapias-cards-scroll>.terapia-card {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        min-height: 430px !important;
        height: 430px !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
      }

      .therapies-page .terapias-cards-scroll>.terapia-card>.terapia-card-inner {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 430px !important;
        height: 430px !important;
        margin: 0 !important;
      }

      .therapies-page .terapias-cards-next,
      #terapias-infantiles .terapias-cards-next {
        display: none !important;
      }

      .therapies-page .terapias-infantiles-wrap::before,
      .therapies-page .terapias-adolescentes-wrap::before,
      .therapies-page .terapias-familiares-wrap::before {
        display: block !important;
        left: 32px;
        right: 32px;
        top: auto;
        bottom: 18px;
        width: auto;
        height: 4px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .42);
        z-index: 55;
        pointer-events: none;
      }

      .therapies-page .terapias-infantiles-wrap::after,
      .therapies-page .terapias-adolescentes-wrap::after,
      .therapies-page .terapias-familiares-wrap::after {
        display: block !important;
        left: calc(32px + (100% - 136px) * var(--cards-progress, 0));
        right: auto;
        top: auto;
        bottom: 18px;
        width: 72px;
        height: 4px;
        border-radius: 999px;
        background: #7d8141;
        z-index: 56;
        pointer-events: none;
      }

      .therapies-page .terapias-cards-scroll::before,
      .therapies-page .terapias-cards-scroll::after {
        display: none !important;
      }

    }

    @media (prefers-reduced-motion: reduce) {

      .terapias-cards-scroll,
      .terapia-card,
      .terapia-card-inner {
        scroll-behavior: auto;
        transition: none;
      }
    }



    /* Metodo Page */
    .metodo-page {
      background: #FAF8F3;
      color: #333333;
      font-family: "Nunito", sans-serif;
    }

    .metodo-page * {
      font-family: "Nunito", sans-serif;
    }

    .metodo-page .metodo-hero {
      background: #333333;
      color: #ffffff;
      padding: 120px 24px 46px;
    }

    .metodo-page .metodo-hero h1 {
      text-align: center;
      font-size: clamp(42px, 6vw, 65px);
      margin: 0 0 34px;
    }

    .metodo-page .steps {
      margin-top: 0;
    }

    .metodo-page .step h4,
    .metodo-page .step p {
      color: #ffffff;
      font-weight: 800;
      font-size: 35px;
    }

    .metodo-page .metodo-hero .step .foot {
      background-image: none;
      position: relative;
    }

    .metodo-page .metodo-hero .step .foot::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url("../img/Recurso_2.png");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      filter: brightness(0) invert(1);
      z-index: 1;
    }

    .metodo-page .metodo-hero .step .foot .foot-number {
      color: #7d8141 !important;
      z-index: 2;
    }

    .metodo-page .step p {
      font-size: 19px;
      line-height: 1.35;
    }

    .metodo-page .cta-right {
      margin-top: 40px;
      margin-bottom: 24px;
      text-align: right;
      color: #ffffff;
      font-size: 24px;
      font-weight: 700;
    }

    .metodo-page .metodo-360-top {
      background: #FAF8F3;
      padding: 64px 24px;
    }

    .metodo-page .metodo-360-head {
      width: 100%;
      max-width: none;
      margin: 0 auto 34px;
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 24px;
      align-items: center;
      justify-items: center;
      background: #FAF8F3;
    }

    .metodo-page .metodo-360-copy {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .metodo-page .metodo-360-copy h2 {
      color: #7d8141;
      margin: 10px 0 16px;
      font-size: clamp(36px, 4.8vw, 58px);
      line-height: 1.05;
      text-align: center;
    }

    .metodo-page .metodo-360-copy .sub {
      margin: 0;
      color: #7d8141;
      font-size: clamp(20px, 2.2vw, 30px);
      line-height: 1.3;
      text-align: center;

    }

    .metodo-page .metodo-arrow {
      margin: 22px auto 0;
      width: 56px;
      height: 56px;
      border: 2px solid #7d8141;
      border-radius: 999px;
      color: #7d8141;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      font-weight: 800;
    }

    .metodo-page .metodo-monstruo-wrap {
      display: flex;
      justify-content: center;
      align-items: flex-end;
    }

    .metodo-page .metodo-monstruo {
      width: min(360px, 92%);
      height: auto;
      display: block;
      margin-bottom: -270px;
    }

    .metodo-page .metodo-360-bottom {
      background: #E0DFCD;
      padding: calc(8% + 34px) 34px 64px;
    }

    .metodo-page .metodo-360-cards {
      width: 100%;
      max-width: none;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      background: transparent;
      border-radius: 20px;
      padding: 0;
    }

    .metodo-page .metodo-card {
      background: #ffffff;
      border-radius: 22px;
      box-shadow: 0 12px 26px rgba(19, 23, 35, .08);
      width: 80%;
      min-height: 380px;
      margin: 0 auto;
      padding: 28px 20px;
      text-align: center;
    }

    .metodo-page .metodo-card img,
    .metodo-page .metodo-card .metodo-icon-placeholder {
      width: 150px;
      height: 150px;
      object-fit: contain;
      margin: 0 auto 35px;
      display: block;
    }

    .metodo-page .metodo-card img.metodo-icon-lg {
      width: 150px;
      height: 150px;
    }

    .metodo-page .metodo-icon-placeholder {
      background: #f0f0f0;
      border-radius: 12px;
    }

    .metodo-page .metodo-card h3 {
      margin: 0 0 10px;
      color: #7d8141;
      font-size: 40px;
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 10px;
      padding-bottom: 20px;
    }

    .metodo-page .metodo-card p {
      margin: 0;
      color: #7d8141;
      font-size: 20px;
      line-height: 1.35;
      padding-top: 25px;
    }

    .metodo-page .metodo-quote {
      background: transparent;
      padding: 12px 0 0;
    }

    .metodo-page .metodo-quote-wrap {
      width: 100%;
      max-width: none;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .metodo-page .metodo-quote-img {
      width: min(980px, 92%);
      height: auto;
      display: block;
      margin: 40px 10px;
    }

    .metodo-page .metodo-quote .foot {
      display: none;
    }

    .metodo-page .metodo-principios {
      background: #ffffff;
      padding: 64px 24px 74px;
      text-align: center;
    }

    .metodo-page .metodo-principios h2 {
      color: #7d8141;
      margin: 0 0 44px;
      font-size: clamp(36px, 5vw, 58px);
      line-height: 1.04;
      margin-bottom: 80px;
    }

    .metodo-page .metodo-principios-grid {
      max-width: 980px;
      margin: 20px auto 36px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px 48px;
      text-align: left;
      color: #ffffff;
      font-size: clamp(20px, 2.2vw, 30px);
      font-weight: 800;
      background: #7d8141;
      border-radius: 22px;
      padding: 28px 30px;
    }

    .metodo-page .metodo-principios-grid p {
      margin: 0;
      line-height: 1.35;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .metodo-page .metodo-principios-grid p::before {
      content: "▷";
      color: #ffffff;
      font-size: 18px;
      line-height: 1;
      transform: translateY(-1px);
    }

    .metodo-page .metodo-principio-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .metodo-page .metodo-principio-toggle {
      margin: 0;
      padding: 0;
      border: 0;
      background: transparent;
      color: #FAF8F3;
      font: inherit;
      font-family: "Nunito", sans-serif !important;
      font-weight: 800;
      line-height: 1.35;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-align: center;
      cursor: pointer;
      transform: none !important;
      transition: none !important;
    }

    .metodo-page .metodo-principio-toggle::before {
      content: "▶";
      color: #FAF8F3;
      font-size: 18px;
      line-height: 1;
      transform: translateY(-1px);
      transition: transform .2s ease, color .2s ease;
    }

    .metodo-page .metodo-principio-item.is-open .metodo-principio-toggle::before {
      color: #FAF8F3;
      transform: translateY(-1px) rotate(90deg);
    }

    .metodo-page .metodo-principio-item:hover .metodo-principio-toggle {
      color: #FAF8F3;
    }

    .metodo-page .metodo-principio-item.is-open .metodo-principio-toggle {
      color: #FAF8F3;
    }

    .metodo-page .metodo-principio-desc {
      margin: 0 auto;
      font-size: clamp(14px, 1.25vw, 19px);
      font-family: "Nunito", sans-serif !important;
      font-weight: 600;
      color: #333333;
      background: #FAF8F3;
      border-radius: 14px;
      padding: 10px 14px;
      width: 100%;
      max-width: 520px;
      text-align: center;
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transform: translateY(-4px);
      white-space: normal;
      overflow-wrap: anywhere;
      transition: max-height .3s ease, opacity .25s ease, transform .25s ease;
    }

    .metodo-page .metodo-principio-desc::before {
      content: none !important;
      display: none !important;
    }

    .metodo-page .metodo-principio-item.is-open .metodo-principio-desc {
      max-height: 260px;
      opacity: 1;
      transform: translateY(0);
      margin: 0 auto 12px;
    }

    .metodo-page .metodo-principios-actions {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      margin-top: 80px;
    }

    .metodo-page .metodo-principios-actions .pill {
      min-width: min(460px, 92vw);
    }

    .metodo-page .metodo-principios-actions .pill-centros {
      background: #f29310;
      color: #ffffff;
    }

    @media (max-width: 1024px) {
      .metodo-page .metodo-360-head {
        grid-template-columns: 1fr;
      }

      .metodo-page .metodo-360-copy {
        text-align: center;
      }

      .metodo-page .metodo-360-cards {
        grid-template-columns: 1fr;
      }

      .metodo-page .metodo-quote-wrap {
        display: flex;
        justify-content: center;
      }

      .metodo-page .metodo-quote-img {
        margin: 0 auto;
      }

      .metodo-page .metodo-principios-grid {
        grid-template-columns: 1fr;
        justify-items: start;
        margin-left: 0;
        margin-right: 0;
      }

      .metodo-page .metodo-principios-grid p {
        width: 100%;
      }
    }

    @media (max-width: 768px) {
      .metodo-page .metodo-hero .step .foot {
        width: 170px;
        height: 190px;
      }

      .metodo-page .metodo-hero {
        padding: 92px 20px 34px;
      }

      .metodo-page .step p {
        font-size: 18px;
      }

      .metodo-page .cta-right {
        font-size: 20px;
        text-align: center;
        margin-top: 56px;
        margin-bottom: 30px;
      }

      .metodo-page .metodo-360-top,
      .metodo-page .metodo-360-bottom,
      .metodo-page .metodo-principios {
        padding-left: 20px;
        padding-right: 20px;
      }

      .metodo-page .metodo-card {
        padding: 24px 18px;
      }

      .metodo-page .metodo-card p {
        font-size: 18px;
      }

      .metodo-page .metodo-360-top {
        padding: 18px 10px 0;
        background: #FAF8F3;
      }

      .metodo-page .metodo-360-bottom {
        padding: 14px 14px 18px;
        background: #E0DFCD;
      }

      .metodo-page .metodo-360-head {
        margin: 0;
        gap: 8px;
        background: #FAF8F3;
        grid-template-columns: 1fr;
        align-items: center;
        justify-items: center;
        padding: 0 4px 12px;
      }

      .metodo-page .metodo-360-copy h2 {
        font-size: 30px;
        line-height: 1.08;
        margin: 0 0 8px;
        text-align: center;
        padding-top: 30px;
        padding-bottom: 30px;
      }

      .metodo-page .metodo-360-copy {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .metodo-page .metodo-360-copy .sub {
        font-size: 18px;
        line-height: 1.25;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 320px;
        padding-bottom: 20px;
      }

      .metodo-page .metodo-arrow {
        width: 24px;
        height: 24px;
        font-size: 14px;
        margin: 10px auto 0;
      }

      .metodo-page .metodo-monstruo-wrap {
        justify-content: center;
        align-items: center;
        width: 100%;
      }

      .metodo-page .metodo-monstruo {
        width: 200px;
        max-width: 2000px;
        margin-top: 30px;
        margin-bottom: -12px;
      }

      .metodo-page .metodo-360-cards {
        border-radius: 8px;
        padding: 0;
        gap: 10px;
        grid-template-columns: 1fr;
      }

      .metodo-page .metodo-card {
        border-radius: 8px;
        width: 100%;
        min-height: unset;
        height: auto;
        padding: 18px 14px 20px;
        box-shadow: 0 4px 10px rgba(19, 23, 35, .08);
      }

      .metodo-page .metodo-card img,
      .metodo-page .metodo-card .metodo-icon-placeholder {
        width: 100px;
        height: 100px;
        margin: 0 auto 14px;
      }

      .metodo-page .metodo-card img.metodo-icon-lg {
        width: 150px;
        height: 150px;
      }

      .metodo-page .metodo-card h3 {
        font-size: 30px;
        margin: 0 0 10px;
      }

      .metodo-page .metodo-card p {
        font-size: 18px;
        line-height: 1.35;
      }

      .metodo-page .metodo-quote {
        background: transparent;
        padding: 10px 0 0;
      }

      .metodo-page .metodo-quote-wrap {
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .metodo-page .metodo-quote-img {
        width: min(100%, 760px);
        padding: 30px 0;
      }

      .metodo-page .metodo-quote .foot {
        width: 34px;
        height: 38px;
      }
    }

    .franquicia-page {
      --blue: #3876b3;
    }

    .franquicia-page .franq-hero {
      position: relative;
      min-height: 100vh;
      background: #2a2a2a url("../img/equipo_andaConmigo.jpg") center 24%/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      padding: 120px 24px 70px;
    }

    .franquicia-page .franq-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, .45);
    }

    .franquicia-page .franq-hero-inner {
      position: relative;
      z-index: 1;
      max-width: 900px;
      transform: translateY(12vh);
    }

    .franquicia-page .franq-hero h1 {
      margin: 0 0 24px;
      font-size: clamp(40px, 6vw, 78px);
      color: #fff;
    }

    .franquicia-page .franq-hero-actions {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .franquicia-page .franq-hero-actions .pill {
      background: #3876b3;
      color: #fff;
    }

    .franquicia-page .franq-btn-outline {
      border: 2px solid #fff;
      background: transparent !important;
      color: #fff;
    }

    .franquicia-page .site-header .nav .pill {
      background: #3876b3;
      color: #fff;
    }

    .franquicia-page .franq-arrow {
      margin: 26px auto 0;
      font-size: 34px;
      animation: franquicia-arrow 1.3s ease-in-out infinite alternate;
      border: 0;
      background: transparent;
      color: #fff;
      cursor: pointer;
      display: flex;
      padding: 0;
    }

    @keyframes franquicia-arrow {
      from {
        transform: translateY(0);
      }

      to {
        transform: translateY(8px);
      }
    }

    .franquicia-page .franq-subhero {
      background: #333333;
      color: #fff;
      text-align: center;
      padding: 48px 0 34px;
    }

    .franquicia-page .franq-subhero p {
      width: 50%;
      max-width: 900px;
      min-width: 320px;
      margin: 0 auto 32px;
      font-size: 30px;
      font-weight: 700;
      line-height: 1.15;
      padding: 30px 0 30px 0;
    }

    .franquicia-page .franq-carousel {
      width: 100%;
      overflow: hidden;
    }

    .franquicia-page .franq-carousel-track {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      cursor: grab;
      user-select: none;
    }

    .franquicia-page .franq-carousel-track.is-dragging {
      cursor: grabbing;
      scroll-behavior: auto;
    }

    .franquicia-page .franq-carousel-track::-webkit-scrollbar {
      display: none;
    }

    .franquicia-page .franq-carousel-track img {
      flex: 0 0 25%;
      width: 25%;
      height: 340px;
      object-fit: cover;
      display: block;
      scroll-snap-align: start;
      pointer-events: none;
    }

    @media (min-width: 901px) {
      .franquicia-page .franq-carousel-track {
        overflow: visible;
        scroll-snap-type: none;
        animation: franquicia-carousel-slide 24s linear infinite;
        width: max-content;
      }

      .franquicia-page .franq-carousel-track img {
        flex: 0 0 25vw;
        width: 25vw;
      }
    }

    @keyframes franquicia-carousel-slide {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    .franquicia-page .franq-section {
      padding: 72px 24px;
      background: #FAF8F3;
    }

    .franquicia-page .franq-section h2 {
      color: var(--blue);
      text-align: center;
      margin-bottom: 30px;
    }

    .franquicia-page .franq-success-title {
      font-size: 60px;
      line-height: .98;
      max-width: 1180px;
      margin-left: auto;
      margin-right: auto;
    }

    .franquicia-page .franq-section h2.franq-success-title--left {
      text-align: left;
    }

    .franquicia-page .franq-two-col {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(360px, .95fr);
      gap: 28px;
      align-items: center;
    }

    .franquicia-page .franq-two-col p {
      margin: 0;
      font-size: 21px;
      line-height: 1.6;
      color: #3876b3;
      width: 100%;
      max-width: 600px;
      margin-left: auto;
      margin-right: 0;
      text-align: center;
    }

    .franquicia-page .franq-inline-arrow {
      margin: 34px auto 0;
      color: #3876b3;
      width: 74px;
      height: 74px;
      border: 0;
      background: transparent;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0;
    }

    .franquicia-page .franq-inline-arrow svg {
      width: 54px;
      height: 54px;
    }

    .franquicia-page .franq-iso-badge {
      display: block;
      width: min(100%, 620px);
      height: auto;
      margin: 0 auto 0 0;
    }

    .franquicia-page .stats {
      background: #333333 url("../img/fondo_banner.webp") center/cover no-repeat;
    }

    .franquicia-page .franq-list {
      max-width: 980px;
      margin: 0 auto;
      display: grid;
      gap: 14px;
    }

    .franquicia-page .franq-list li {
      list-style: none;
      color: #333;
      font-size: 22px;
      font-weight: 700;
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

    .franquicia-page .franq-list li::before {
      content: "";
      flex: 0 0 24px;
      width: 24px;
      height: 24px;
      margin-top: 2px;
      background: url("../img/huella_azul.png") center/contain no-repeat;
    }

    .franquicia-page .franq-center-btn {
      margin: 34px auto 0;
      display: flex;
    }

    .franquicia-page .franq-success-cta {
      margin: 50px auto 44px;
      width: fit-content;
      padding-left: 26px;
      padding-right: 26px;
    }

    .franquicia-page .franq-join-btn {
      background: #f29310;
      color: #fff;
      display: flex;
      width: fit-content;
      justify-content: center;
      margin-top: 100px;
    }

    .franquicia-page .franq-invest-cta {
      background: #f29310;
      color: #fff;
      display: flex;
      width: fit-content;
      justify-content: center;
      margin-top: 100px;
    }

    .franquicia-page .franq-invest {
      background: #333;
      color: #fff;
      text-align: left;
    }

    .franquicia-page .franq-invest h2,
    .franquicia-page .franq-invest .sub {
      color: #fff;
      max-width: 1180px;
      margin-left: auto;
      margin-right: auto;
    }

    .franquicia-page .franq-invest h2 {
      text-align: left;
      margin-bottom: 4px;
      font-size: 80px;
    }

    .franquicia-page .franq-invest .sub {
      font-size: 28px;
      margin-top: 0;
    }

    .franquicia-page .franq-invest-cards {
      max-width: 1180px;
      margin: 50px auto 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
    }

    .franquicia-page .franq-invest-card {
      min-height: 680px;
      perspective: 1400px;
      outline: none;
    }

    .franquicia-page .franq-invest-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 680px;
      transform-style: preserve-3d;
      transition: transform .7s ease;
    }

    .franquicia-page .franq-invest-card:hover .franq-invest-card-inner,
    .franquicia-page .franq-invest-card:focus-within .franq-invest-card-inner,
    .franquicia-page .franq-invest-card:focus .franq-invest-card-inner {
      transform: rotateY(180deg);
    }

    .franquicia-page .franq-invest-card-face {
      position: absolute;
      inset: 0;
      border-radius: 20px;
      backface-visibility: hidden;
      overflow: hidden;
    }

    .franquicia-page .franq-invest-card-front {
      background: #3876b3;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 54px;
    }

    .franquicia-page .franq-invest-card-front img {
      width: min(78%, 250px);
      height: auto;
    }

    .franquicia-page .franq-invest-card-front--combo {
      flex-direction: column;
      gap: 32px;
    }

    .franquicia-page .franq-invest-card-front--combo img {
      width: min(56%, 210px);
    }

    .franquicia-page .franq-invest-card-front--combo span {
      font-size: 54px;
      font-weight: 900;
      line-height: 1;
    }

    .franquicia-page .franq-teens-logo {
      color: #fff;
      font-size: 48px;
      line-height: .8;
      font-weight: 900;
      text-align: center;
      text-transform: lowercase;
    }

    .franquicia-page .franq-teens-logo em {
      display: block;
      font-size: 30px;
      font-style: italic;
      font-weight: 800;
      transform: rotate(-8deg);
      margin-top: 8px;
    }

    .franquicia-page .franq-invest-card-front--combo .franq-teens-logo-img {
      width: min(70%, 260px);
    }

    .franquicia-page .franq-invest-card-back {
      background: #FAF8F3;
      color: #3876b3;
      border: 2px solid #3876b3;
      transform: rotateY(180deg);
      padding: 36px 42px 56px;
    }

    .franquicia-page .franq-invest-card-back h3 {
      color: #3876b3;
      font-size: 40px;
      line-height: 1.12;
      text-align: center;
      margin: 0 0 28px;
      font-weight: 900;
    }

    .franquicia-page .franq-invest-card-back p {
      margin: 0 0 12px;
      color: #3876b3;
      font-size: 22px;
      line-height: 1.35;
    }

    .franquicia-page .franq-invest-card-back strong {
      font-weight: 900;
    }

    .franquicia-page .franq-invest-card-back small {
      display: block;
      color: #3876b3;
      font-size: 18px;
      margin-top: 14px;
    }

    .franquicia-page .franq-success h2 {
      color: #3876b3;
      font-size: 80px;
    }

    .franquicia-page .franq-success-grid {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 28px;
    }

    .franquicia-page .franq-video-card {
      background: #e0e0e0;
      border-radius: 18px;
      overflow: hidden;
      aspect-ratio: 16 / 9;
    }

    .franquicia-page .franq-video-card video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .franquicia-page .franq-faq {
      background: #3876b3;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      padding: 34px 24px 28px;
    }

    .franquicia-page .franq-faq-panel {
      background: #3876b3;
      border-radius: 18px;
      padding: 0 34px;
      overflow: hidden;
      width: min(100%, 1180px);
      margin: 0 auto;
      padding-bottom: 50px;
    }

    .franquicia-page .franq-section h2.franq-faq-title {
      color: #ffffff;
      font-size: 80px;
      line-height: .98;
      text-align: left;
      max-width: 1040px;
      margin: 0 auto 24px;
      padding-bottom: 50px;
      padding-top: 50px;
    }

    .franquicia-page .franq-faq-item {
      max-width: 1040px;
      margin: 0 auto;
      background: transparent;
      border: 0;
      border-bottom: 1px solid rgba(255, 255, 255, .35);
      border-radius: 0;
      padding: 14px 0 12px;
      overflow: visible;
    }

    .franquicia-page .franq-faq-item+.franq-faq-item {
      margin-top: 0;
    }

    .franquicia-page .franq-faq-q {
      width: 100%;
      border: 0;
      background: transparent;
      color: #ffffff;
      font-weight: 800;
      text-align: left;
      display: flex;
      flex-direction: row-reverse;
      justify-content: flex-end;
      gap: 12px;
      align-items: center;
      cursor: pointer;
      padding: 0;
      font-size: 21px;
      line-height: 1.25;
    }

    .franquicia-page .franq-faq-q span:first-child {
      flex: 1 1 auto;
    }

    .franquicia-page .franq-faq-q span:last-child {
      color: #ffffff;
      flex: 0 0 auto;
    }

    .franquicia-page .franq-faq-q span:last-child svg {
      display: block;
      transform: rotate(90deg);
      transform-origin: 50% 50%;
      transition: transform .25s ease;
    }

    .franquicia-page .franq-faq-item.is-open .franq-faq-q span:last-child svg {
      transform: rotate(0deg);
    }

    .franquicia-page .franq-faq-a {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height .35s ease, opacity .25s ease, margin-top .25s ease;
      margin: 0;
      font-size: 18px;
      line-height: 1.55;
      padding-top: 12px;
      border-top: 1px solid rgba(255, 255, 255, .25);
    }

    .franquicia-page .franq-faq-item.is-open .franq-faq-a {
      max-height: 520px;
      opacity: 1;
      margin-top: 8px;
      color: #ffffff;
      font-size: 18px;
      margin-bottom: 0;
    }

    .franquicia-page .franq-form {
      max-width: 980px;
      margin: 0 auto;
      display: grid;
      gap: 12px;
    }

    .franquicia-page .back-to-top:not(.back-to-top--orange) {
      background: transparent;
      color: #3876b3;
      border: 2px solid #3876b3;
      border-color: #3876b3;
    }

    .franquicia-page .back-to-top:not(.back-to-top--orange):hover {
      background: transparent;
      color: #3876b3;
      border-color: #3876b3;
    }

    .franquicia-page.franquicia-backtop-on-dark .back-to-top:not(.back-to-top--orange) {
      background: transparent;
      color: #ffffff;
      border-color: #ffffff;
    }

    .franquicia-page.franquicia-backtop-on-dark .back-to-top:not(.back-to-top--orange):hover {
      background: transparent;
      color: #ffffff;
      border-color: #ffffff;
    }

    .franquicia-page .mobile-action--franquicia {
      background: #3876b3;
      color: #ffffff;
    }

    .franquicia-page .mobile-fixed-actions .mobile-action--icon {
      color: #3876b3;
    }

    .franquicia-page.franquicia-mobile-actions-on-dark .mobile-fixed-actions .mobile-action--icon,
    .franquicia-page.franquicia-mobile-actions-on-dark .mobile-fixed-actions .mobile-action--primary {
      background: #ffffff;
      color: #3876b3;
    }

    .franquicia-page.franquicia-mobile-actions-on-dark .mobile-fixed-actions .mobile-action--icon {
      box-shadow: 0 6px 18px rgba(0, 0, 0, .22);
    }

    .franquicia-page.franquicia-mobile-actions-on-dark .mobile-fixed-actions .mobile-action--primary {
      border: 2px solid rgba(56, 118, 179, .18);
    }

    .franquicia-form-overlay[aria-hidden="true"] {
      visibility: hidden;
    }

    .franquicia-form-overlay.is-open {
      visibility: visible;
    }

    .franquicia-page .franquicia-drawer {
      width: 44vw;
      max-width: 720px;
      background: #FAF8F3;
    }

    .franquicia-page .franquicia-drawer .appointment-header {
      background: #fff;
      border-bottom: 1px solid rgba(56, 118, 179, .16);
      padding: 22px 26px;
    }

    .franquicia-page .franquicia-drawer .appointment-header h2 {
      color: var(--blue);
      font-size: 28px;
      line-height: 1.1;
      margin: 0;
    }

    .franquicia-page .franquicia-drawer-body {
      overflow-y: auto;
      padding: 24px 26px 32px;
    }

    .franquicia-page .franquicia-form-intro {
      margin: 0 0 22px;
      color: #333;
      font-size: 17px;
      line-height: 1.45;
      font-weight: 700;
      background: #fff;
      border-left: 5px solid #f29310;
      border-radius: 8px;
      padding: 16px 18px;
      box-shadow: 0 10px 24px rgba(19, 23, 35, .06);
    }

    .franquicia-page .franquicia-drawer .franq-form {
      max-width: none;
      gap: 18px;
    }

    .franquicia-page .franq-field-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .franquicia-page .franq-field--wide {
      grid-column: 1 / -1;
    }

    .franquicia-page .franq-field {
      display: grid;
      gap: 7px;
    }

    .franquicia-page .franq-form label {
      color: #333;
      font-weight: 700;
      line-height: 1.25;
    }

    .franquicia-page .franq-form .field {
      width: 100%;
      border: 1px solid rgba(56, 118, 179, .18);
      border-radius: 8px;
      background: #fff;
      color: #222;
      font-family: "Nunito", sans-serif;
      font-size: 16px;
      min-height: 48px;
      padding: 12px 14px;
      box-shadow: 0 4px 14px rgba(19, 23, 35, .04);
      transition: border-color .18s ease, box-shadow .18s ease;
    }

    .franquicia-page .franq-form .field:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 4px rgba(56, 118, 179, .12);
      outline: none;
    }

    .franquicia-page .franq-options {
      border: 0;
      margin: 0;
      padding: 0;
    }

    .franquicia-page .franq-options legend {
      color: var(--blue);
      font-size: 17px;
      font-weight: 900;
      line-height: 1.25;
      margin: 0 0 10px;
      padding: 0;
    }

    .franquicia-page .franq-radio-group,
    .franquicia-page .franq-check-group {
      display: grid;
      gap: 10px;
    }

    .franquicia-page .franq-radio-group label,
    .franquicia-page .franq-check-group label {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      background: #fff;
      border: 1px solid rgba(56, 118, 179, .16);
      border-radius: 8px;
      padding: 12px 14px;
      box-shadow: 0 6px 16px rgba(19, 23, 35, .04);
      cursor: pointer;
      transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }

    .franquicia-page .franq-radio-group label:has(input:checked),
    .franquicia-page .franq-check-group label:has(input:checked) {
      border-color: #7d8141;
      box-shadow: 0 0 0 4px rgba(125, 129, 65, .12);
    }

    .franquicia-page .franq-radio-group label:hover,
    .franquicia-page .franq-check-group label:hover {
      border-color: rgba(56, 118, 179, .45);
      transform: translateY(-1px);
    }

    .franquicia-page .franq-form input[type="radio"],
    .franquicia-page .franq-form input[type="checkbox"] {
      accent-color: var(--blue);
      flex: 0 0 auto;
      margin-top: 2px;
    }

    .franquicia-page .franq-success-msg {
      color: #5f652c;
      font-weight: 800;
      background: rgba(125, 129, 65, .12);
      border-radius: 8px;
      margin: 0;
      padding: 12px 14px;
    }

    .franquicia-page .franq-submit {
      width: 100%;
      border: 0;
      background: #f29310;
      color: #fff;
      min-height: 52px;
      justify-content: center;
      font-size: 17px;
      font-weight: 900;
      box-shadow: 0 10px 22px rgba(242, 147, 16, .25);
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }

    .franquicia-page .franq-submit:hover {
      background: #df850b;
      box-shadow: 0 14px 28px rgba(242, 147, 16, .3);
      transform: translateY(-1px);
    }

    .boton-whatsapp {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;

      padding: 14px 28px;

      border: 2px solid #ffffff;
      border-radius: 50px;

      color: #ffffff;
      text-decoration: none;

      font-size: 20px;
      font-weight: 700;

      transition: all .3s ease;
    }

    .boton-whatsapp:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: scale(1.03);
    }

    .icono-whatsapp {
      flex-shrink: 0;
    }

    @media (max-width: 900px) {

      .franquicia-page .franq-two-col,
      .franquicia-page .franq-invest-cards,
      .franquicia-page .franq-success-grid {
        grid-template-columns: 1fr;
      }

      .franquicia-page .franq-two-col p,
      .franquicia-page .franq-iso-badge {
        margin-left: auto;
        margin-right: auto;
      }

      .franquicia-page .franq-hero-actions {
        flex-direction: column;
        align-items: center;
      }

      .franquicia-page .franq-subhero {
        padding: 38px 0 30px;
      }

      .franquicia-page .franq-subhero p {
        width: min(86%, 620px);
        min-width: 0;
        font-size: 22px;
      }

      .franquicia-page .franq-success-title {
        font-size: 44px;
        line-height: 1.05;
      }

      .franquicia-page .franq-carousel-track img {
        flex: 0 0 50vw;
        width: 50vw;
        height: 190px;
      }

      .franquicia-page .franq-carousel-track {
        overflow: visible;
        scroll-snap-type: none;
        animation: franquicia-carousel-slide 24s linear infinite;
        width: max-content;
      }

      .franquicia-page .franq-invest h2,
      .franquicia-page .franq-invest .sub {
        text-align: center;
      }

      .franquicia-page .franq-invest-cards {
        gap: 28px;
      }

      .franquicia-page .franq-invest-card,
      .franquicia-page .franq-invest-card-inner {
        min-height: 680px;
      }

      .franquicia-page .franq-invest-card-back {
        padding: 30px 28px 50px;
      }

      .franquicia-page .franquicia-drawer {
        width: 100vw;
        max-width: 100vw;
        min-width: 0;
      }

      .franquicia-page .franquicia-drawer-body {
        padding: 18px 16px 28px;
      }

      .franquicia-page .franq-field-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 560px) {
      .franquicia-page .franq-carousel-track img {
        flex: 0 0 78vw;
        width: 78vw;
        height: 220px;
      }
    }

    @media (max-width: 768px) {
      .franquicia-page {
        padding-bottom: 0;
      }

      .franquicia-page .back-to-top:not(.back-to-top--orange) {
        right: 16px;
        bottom: 92px;
        width: 44px;
        height: 44px;
        background: transparent;
        border: 2px solid #3876b3;
        color: #3876b3;
        font-size: 22px;
        box-shadow: 0 8px 22px rgba(19, 23, 35, .22);
        z-index: 1320;
      }

      .franquicia-page .back-to-top:not(.back-to-top--orange):hover {
        background: transparent;
        color: #3876b3;
        border-color: #3876b3;
      }

      .franquicia-page.franquicia-backtop-on-dark .back-to-top:not(.back-to-top--orange),
      .franquicia-page.franquicia-backtop-on-dark .back-to-top:not(.back-to-top--orange):hover {
        background: transparent;
        color: #ffffff;
        border-color: #ffffff;
      }

      .franquicia-page .franq-hero {
        min-height: 88vh;
        padding: 74px 16px 32px;
        background-position: center center;
      }

      .franquicia-page .franq-hero-inner {
        max-width: 100%;
        transform: translateY(12vh);
      }

      .franquicia-page .franq-hero h1 {
        font-size: clamp(44px, 11vw, 64px);
        line-height: .95;
        margin-bottom: 16px;
      }

      .franquicia-page .franq-hero-title-line {
        display: block;
      }

      .franquicia-page .franq-hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
      }

      .franquicia-page .franq-hero-actions .pill,
      .franquicia-page .franq-btn-outline {
        width: min(100%, 170px);
        min-height: 34px;
        padding: 8px 14px;
        font-size: 14px;
      }

      .franquicia-page .franq-hero-actions .boton-whatsapp {
        width: min(100%, 170px);
        min-height: 34px;
        padding: 8px 14px;
        font-size: 14px;
        gap: 8px;
      }

      .franquicia-page .franq-arrow {
        margin-top: 18px;
      }

      .franquicia-page .franq-subhero {
        padding: 26px 0 18px;
      }

      .franquicia-page .franq-subhero p {
        width: calc(100% - 32px);
        min-width: 0;
        font-size: 18px;
        line-height: 1.2;
        padding: 18px 0 22px;
        margin-bottom: 18px;
      }

      .franquicia-page .franq-section {
        padding: 44px 16px;
      }

      .franquicia-page .franq-success-title,
      .franquicia-page .franq-invest h2,
      .franquicia-page .franq-success h2,
      .franquicia-page .franq-section h2.franq-faq-title {
        font-size: 28px;
        line-height: 1.05;
        margin-bottom: 18px;
      }

      .franquicia-page .franq-two-col {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }

      .franquicia-page .franq-two-col>div {
        display: contents;
      }

      .franquicia-page .franq-two-col p {
        order: 1;
        font-size: 17px;
        line-height: 1.48;
        text-align: center;
      }

      .franquicia-page .franq-iso-badge {
        order: 2;
      }

      .franquicia-page .franq-inline-arrow {
        order: 3;
        width: 54px;
        height: 54px;
        margin-top: 20px;
        align-self: center;
      }

      .franquicia-page .franq-inline-arrow svg {
        width: 44px;
        height: 44px;
      }

      .franquicia-page .franq-list {
        gap: 10px;
      }

      .franquicia-page .franq-list li {
        font-size: 17px;
        line-height: 1.35;
      }

      .franquicia-page .franq-list li::before {
        width: 20px;
        height: 20px;
        flex-basis: 20px;
        margin-top: 1px;
      }

      .franquicia-page .franq-center-btn {
        margin-top: 22px;
      }

      .franquicia-page .franq-join-btn,
      .franquicia-page .franq-invest-cta,
      .franquicia-page .franq-success-cta {
        margin-top: 24px;
        font-size: 15px;
      }

      .franquicia-page .franq-invest-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
      }

      .franquicia-page .franq-invest-card,
      .franquicia-page .franq-invest-card-inner {
        min-height: 0;
        height: auto;
      }

      .franquicia-page .franq-invest-card-inner {
        display: grid;
      }

      .franquicia-page .franq-invest-card-face {
        position: relative;
        inset: 0;
        grid-area: 1 / 1;
      }

      .franquicia-page .franq-invest-card-front {
        min-height: 0;
        padding: 22px 16px 18px;
      }

      .franquicia-page .franq-invest-card-back {
        display: block;
        padding: 22px 18px 24px;
        transform: rotateY(180deg);
      }

      .franquicia-page .franq-invest-card:hover .franq-invest-card-inner,
      .franquicia-page .franq-invest-card:focus-within .franq-invest-card-inner,
      .franquicia-page .franq-invest-card:focus .franq-invest-card-inner {
        transform: none;
      }

      .franquicia-page .franq-invest-card.is-flipped .franq-invest-card-inner {
        transform: rotateY(180deg);
      }

      .franquicia-page .franq-invest-card-front img,
      .franquicia-page .franq-invest-card-front--combo img {
        width: min(78%, 210px);
      }

      .franquicia-page .franq-invest-card-front--combo {
        gap: 18px;
      }

      .franquicia-page .franq-invest-card-front--combo span {
        font-size: 28px;
      }

      .franquicia-page .franq-teens-logo {
        font-size: 28px;
      }

      .franquicia-page .franq-teens-logo em {
        font-size: 18px;
        margin-top: 4px;
      }

      .franquicia-page .franq-invest-card-back h3 {
        font-size: 24px;
        line-height: 1.14;
        margin-bottom: 18px;
      }

      .franquicia-page .franq-invest-card-back p {
        font-size: 15px;
        line-height: 1.45;
        margin-bottom: 10px;
      }

      .franquicia-page .franq-invest-card-back small {
        font-size: 13px;
        margin-top: 10px;
      }

      .franquicia-page .franq-faq {
        padding: 28px 16px 20px;
      }

      .franquicia-page .franq-faq-panel {
        border-radius: 16px;
        padding: 0 14px;
      }

      .franquicia-page .franq-section h2.franq-faq-title {
        max-width: 100%;
        margin: 0 0 16px;
        padding: 0;
      }

      .franquicia-page .franq-faq-item {
        max-width: 100%;
        padding: 12px 0 10px;
      }

      .franquicia-page .franq-faq-q {
        font-size: 16px;
        gap: 8px;
      }

      .franquicia-page .franq-faq-q span:last-child svg {
        width: 20px;
        height: 20px;
      }

      .franquicia-page .franq-faq-a {
        font-size: 15px;
        line-height: 1.45;
        padding-top: 10px;
      }

      .franquicia-page .franq-faq-item.is-open .franq-faq-a {
        max-height: 650px;
      }

      .franquicia-page .franquicia-drawer {
        width: 100vw;
        max-width: 100vw;
        min-width: 0;
      }

      .franquicia-page .franquicia-drawer .appointment-header h2,
      .franquicia-page .franquicia-drawer .appointment-header h3 {
        font-size: 22px;
      }

      .franquicia-page .franquicia-drawer-body {
        padding: 14px 14px 18px;
      }
    }

    @media (max-width: 480px) {
      .franquicia-page .franq-hero {
        min-height: 84vh;
        padding: 74px 14px 24px;
      }

      .franquicia-page .franq-hero h1 {
        font-size: 50px;
      }

      .franquicia-page .franq-hero-actions .pill,
      .franquicia-page .franq-btn-outline {
        width: min(100%, 160px);
        min-height: 32px;
        padding: 7px 12px;
        font-size: 13px;
      }

      .franquicia-page .franq-hero-actions .boton-whatsapp {
        width: min(100%, 160px);
        min-height: 32px;
        padding: 7px 12px;
        font-size: 13px;
        gap: 8px;
      }

      .franquicia-page .franq-subhero p {
        font-size: 17px;
      }

      .franquicia-page .franq-success-title,
      .franquicia-page .franq-invest h2,
      .franquicia-page .franq-success h2,
      .franquicia-page .franq-section h2.franq-faq-title {
        font-size: 29px;
      }

      .franquicia-page .franq-invest-card-front {
        min-height: 0;
        padding: 20px 14px 16px;
      }

      .franquicia-page .franq-invest-card-front--combo span {
        font-size: 24px;
      }

      .franquicia-page .franq-teens-logo {
        font-size: 24px;
      }

      .franquicia-page .franq-teens-logo em {
        font-size: 16px;
      }

      .franquicia-page .franq-invest-card-back h3 {
        font-size: 22px;
      }

      .franquicia-page .franq-invest-card-back p {
        font-size: 14px;
      }

      .franquicia-page .franq-invest-card-back small {
        font-size: 12px;
      }

      .franquicia-page .franq-faq-q {
        font-size: 15px;
      }

      .franquicia-page .franq-faq-a {
        font-size: 14px;
      }
    }

    .centro-page {
      --pink: #ec728f;
      --blue: #3876b3;
      --olive: #aeb538;
      --orange: #f29310;
    }

    .centro-page.teens-page {
      --pink: #fc59bb;
      --blue: #b0ebe5;
      --olive: #a8f084;
      --orange: #e6df91;
      --teens-dark: #333333;
      --teens-mint: #a8f084;
      --teens-aqua: #b0ebe5;
      --teens-purple: #7d39b3;
      --teens-pink: #fc59bb;
      --teens-yellow: #e6df91;
      --teens-section-gap: 96px;
      --teens-footer-overlap: 120px;
    }

    .centro-page.teens-page main {
      display: flex;
      flex-direction: column;
      gap: var(--teens-section-gap);
      padding-bottom: var(--teens-footer-overlap);
    }

    .centro-page .centro-hero {
      display: flex;
      gap: 32px;
      align-items: stretch;
      margin-top: 30px;
      padding: 40px 5%;
      background: #ffffff;
    }

    .centro-page.teens-page .centro-hero {
      background: transparent;
    }

    .centro-page .centro-col-left {
      display: flex;
      flex-direction: column;
      width: 50%;
      margin-top: 32px;
    }

    .centro-page .centro-col-right {
      display: flex;
      width: 50%;
      margin-top: 32px;
      min-width: 0;
    }

    .centro-page.teens-page .centro-col-right {
      border-radius: 18px;
      background: linear-gradient(180deg, var(--teens-pink) 0%, var(--teens-purple) 100%);
    }

    .centro-page .centro-image {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      flex: 1 1 0;
      min-height: 0;
      aspect-ratio: auto;
      overflow: hidden;
      border-radius: 25px;
      background: transparent;
      border: 0;
      color: #222222;
      font-size: 16px;
      font-weight: 800;
      text-align: center;
      cursor: pointer;
    }

    .centro-page .centro-image+.centro-image {
      margin-top: 16px;
    }

    .centro-page .centro-image::before {
      content: attr(data-placeholder);
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
    }

    .centro-page .centro-image img {
      position: relative;
      z-index: 1;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .centro-page.teens-page .centro-image,
    .centro-page.teens-page .centro-image img {
      border-radius: 18px;
    }

    .centro-page .centro-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      min-height: 36px;
      padding: 8px 18px;
      font-weight: 900;
      line-height: 1;
      text-decoration: none;
    }

    .centro-page .centro-pill--olive {
      width: 100%;
      margin-top: 16px;
      background: var(--olive);
      color: #ffffff;
    }

    .centro-page .centro-pill--orange {
      width: 100%;
      margin-top: 16px;
      border: 0;
      background: var(--orange);
      color: #ffffff;
      cursor: pointer;
    }

    .centro-page .centro-pill--outline {
      border: 2px solid var(--olive);
      color: var(--olive);
      background: transparent;
    }

    .centro-page .centro-card {
      width: 100%;
      height: 100%;
      min-width: 0;
      padding: 24px;
      border-radius: 18px;
      background: var(--olive);
      color: #ffffff;
    }

    .centro-page.teens-page .centro-card {
      background: transparent;
    }

    .centro-page.teens-page .centro-title {
      color: #ffffff;
      max-width: 100%;
      overflow-wrap: break-word;
    }

    .centro-page.teens-page .centro-title-location {
      display: block;
      font-size: .68em;
      font-weight: 600;
      line-height: 1.12;
      white-space: normal;
      overflow-wrap: anywhere;
    }

    .centro-page.teens-page .centro-pill--olive {
      border-color: var(--teens-pink);
      background: var(--teens-pink);
      color: #ffffff;
    }

    .centro-page.teens-page .site-header .nav .pill {
      border-color: #a8f084;
      background: #a8f084;
      color: #333333;
    }

    .centro-page.teens-page .site-header .nav .orange {
      color: #f29310;
    }

    .centro-page.teens-page .centro-pill--orange {
      border-color: var(--teens-mint);
      background: var(--teens-mint);
      color: var(--teens-dark);
    }

    .centro-page.teens-page .appointment-btn--primary,
    .centro-page.teens-page .appointment-filter.is-active,
    .centro-page.teens-page .appointment-segment.is-active,
    .centro-page.teens-page .appointment-choice.is-selected {
      border-color: var(--teens-yellow);
      background: var(--teens-yellow);
      color: var(--teens-dark);
    }

    .centro-page .service-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      max-width: 100%;
    }

    .centro-page .service-tag {
      display: inline-flex;
      align-items: center;
      max-width: 100%;
      border-radius: 999px;
      padding: 4px 12px;
      background: #ffffff;
      font-size: 12px;
      font-weight: 800;
      line-height: 1.1;
      text-align: center;
      white-space: normal;
      overflow-wrap: anywhere;
    }

    .centro-page .service-tag--pink {
      color: var(--pink);
    }

    .centro-page .service-tag--blue {
      color: var(--blue);
    }

    .centro-page .service-tag--orange {
      color: var(--orange);
    }

    .centro-page .service-tag--olive {
      color: #8f992a;
    }

    .centro-page .service-tag--purple {
      color: #7D39B3;
    }

    .centro-page .service-tag--darkpink {
      color: #FC59BB;
    }

    .centro-page .service-tag--darkgreen {
      color: #60614C;
    }

    .centro-page.teens-page .service-tag {
      background: #ffffff;
    }

    .centro-page.teens-page .service-tag--purple {
      color: var(--teens-purple);
    }

    .centro-page.teens-page .service-tag--darkpink {
      color: var(--teens-pink);
    }

    .centro-page.teens-page .service-tag--darkgreen {
      color: var(--teens-dark);
    }

    .centro-page .centro-title {
      margin: 12px 0 4px;
      color: #ffffff;
      font-size: clamp(22px, 3vw, 45px);
      font-weight: 800;
      line-height: 1.08;
    }

    .centro-page:not(.teens-page) .centro-title-location {
      display: inline;
      font-size: .72em;
      font-weight: 600;
      line-height: 1.12;
      white-space: nowrap;
    }

    .centro-page .centro-rating {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 0 0 12px;
      color: #ffffff;
      font-size: 16px;
      font-weight: 800;
      line-height: 1;
    }

    .centro-page .centro-rating-stars {
      display: block;
      width: 100px;
      height: auto;
      flex: 0 0 auto;
    }

    .centro-page.teens-page .centro-title {
      margin-bottom: 16px;
    }

    .centro-page.teens-page .centro-rating {
      margin-bottom: 22px;
    }

    .centro-page.teens-page .centro-map {
      margin-top: 0;
    }

    .centro-page .centro-map {
      position: relative;
      height: 180px;
      margin: 12px 0;
      overflow: hidden;
      border-radius: 12px;
      background: var(--blue);
    }

    .centro-page .centro-map::before {
      content: "Cargando mapa...";
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-size: 16px;
      font-weight: 900;
    }

    .centro-page .centro-map iframe {
      position: relative;
      display: block;
      width: 100%;
      height: 100%;
      border: 0;
      background: transparent;
    }

    .centro-page .contact-box {
      padding: 18px 20px;
      border-radius: 14px;
      background: #ffffff;
      min-width: 0;
    }

    .centro-page .contact-row {
      display: flex;
      align-items: center;
      gap: 8px;
      width: 100%;
      margin: 10px 0;
      color: #111111;
      font-size: 19px;
      line-height: 1.35;
      min-width: 0;
    }

    .centro-page .contact-row--address {
      align-items: flex-start;
    }

    .centro-page .contact-address-text {
      display: block;
    }

    .centro-page .contact-copy {
      display: block;
    }

    .centro-page .contact-address-text,
    .centro-page .contact-copy,
    .centro-page .contact-row>span:not(.contact-icon) {
      flex: 1 1 0;
      min-width: 0;
      max-width: 100%;
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    .centro-page .contact-row a {
      display: block;
      width: fit-content;
      margin-top: 4px;
      color: #111111;
      font-size: 17px;
      font-weight: 800;
      font-style: italic;
      text-decoration: underline;
    }

    .centro-page .contact-icon {
      width: 18px;
      flex: 0 0 18px;
      text-align: center;
      color: inherit;
    }

    .centro-page .schedule-toggle {
      border: 0;
      background: transparent;
      color: #111111;
      font: inherit;
      text-align: left;
      cursor: pointer;
    }

    .centro-page .schedule-status {
      color: #d82727 !important;
      font-weight: 900;
    }

    .centro-page .schedule-separator {
      display: inline-block;
      margin: 0 6px;
      color: #111111;
    }

    .centro-page .schedule-chevron {
      margin-left: auto;
      transition: transform .2s ease;
    }

    .centro-page .schedule-toggle[aria-expanded="true"] .schedule-chevron {
      transform: rotate(180deg);
    }

    .centro-page .schedule-details {
      display: grid;
      gap: 5px;
      margin: 8px 0 0 28px;
      color: #111111;
      font-size: 16px;
      line-height: 1.35;
    }

    .centro-page .schedule-details[hidden] {
      display: none;
    }

    .centro-page .centro-section {
      padding: 20px 5%;
      text-align: center;
    }

    .centro-page.teens-page .centro-section {
      background: transparent;
      margin: 0;
      padding-top: 0;
      padding-bottom: 0;
    }

    .centro-page.teens-page .reviews-section {
      background: transparent;
    }

    .centro-page.teens-page .reviews-section .reviews-score {
      margin-bottom: 10px;
    }

    .centro-page .centro-section h2 {
      margin-top: 30px;
      margin-bottom: 50px;
      color: #000000;
      font-size: clamp(38px, 5vw, 60px);
      font-weight: 900;
      line-height: 1;
    }

    .centro-page.teens-page .centro-section h2 {
      color: #ffffff;
      margin-top: 0;
    }

    .centro-page.teens-page .centro-section:has(.equipo-grid) {
      background: transparent;
    }

    .centro-page.teens-page .centro-section:has(.equipo-grid) h2 {
      color: #ffffff;
    }

    .centro-page.teens-page .equipo-title {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .centro-page.teens-page .teens-team-title-mark {
      display: inline-block;
      height: clamp(42px, 5vw, 72px);
      width: auto;
      max-width: min(220px, 48vw);
      object-fit: contain;
    }

    .centro-page .servicios-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      max-width: 980px;
      margin: 0 auto;
    }

    .centro-page.teens-page .servicios-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      max-width: 1240px;
    }

    .centro-page.teens-page .servicios-grid .servicio-card {
      background: #ffffff;
      color: var(--teens-dark);
      border: 2px solid rgba(176, 235, 229, .65);
    }

    .centro-page.teens-page .teens-work-block {
      max-width: 980px;
      margin: var(--teens-section-gap) auto 0;
      color: #ffffff;
      text-align: center;
    }

    .centro-page.teens-page .teens-work-block h3 {
      margin: 0 0 16px;
      padding-bottom: 20px;
      color: #ffffff;
      font-size: clamp(34px, 4.6vw, 56px);
      font-weight: 900;
      line-height: 1;
    }

    .centro-page.teens-page .teens-work-block p {
      max-width: 760px;
      margin: 0 auto 34px;
      color: #ffffff;
      font-size: 20px;
      font-weight: 800;
      line-height: 1.35;
      padding: 20px;
    }

    .centro-page.teens-page .teens-work-columns {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 32px 56px;
      max-width: 860px;
      margin: 0 auto;
      text-align: left;
    }

    .centro-page.teens-page .teens-work-columns ul {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .centro-page.teens-page .teens-work-columns li {
      position: relative;
      padding: 0 0 14px 22px;
      border-bottom: 2px solid rgba(255, 255, 255, .72);
      color: #ffffff;
      font-size: 16px;
      font-weight: 800;
      line-height: 1.25;
    }

    .centro-page.teens-page .teens-work-columns li::before {
      content: "";
      position: absolute;
      left: 0;
      top: .42em;
      width: 0;
      height: 0;
      border-top: 6px solid transparent;
      border-bottom: 6px solid transparent;
      border-left: 9px solid #ffffff;
    }

    .centro-page.teens-page .teens-work-columns .teens-work-item--accordion {
      padding-left: 0;
    }

    .centro-page.teens-page .teens-work-columns .teens-work-item--accordion::before {
      content: none;
    }

    .centro-page.teens-page .teens-work-details {
      color: #ffffff;
    }

    .centro-page.teens-page .teens-work-details summary {
      position: relative;
      display: block;
      padding-left: 22px;
      cursor: pointer;
      color: #ffffff;
      list-style: none;
    }

    .centro-page.teens-page .teens-work-details summary::-webkit-details-marker {
      display: none;
    }

    .centro-page.teens-page .teens-work-details summary::before {
      content: "";
      position: absolute;
      left: 0;
      top: .42em;
      width: 0;
      height: 0;
      border-top: 6px solid transparent;
      border-bottom: 6px solid transparent;
      border-left: 9px solid #ffffff;
      transition: transform .18s ease;
      transform-origin: 45% 50%;
    }

    .centro-page.teens-page .teens-work-details[open] summary::before {
      transform: rotate(90deg);
    }

    .centro-page.teens-page .teens-work-details p {
      margin: 12px 0 2px 22px;
      padding: 14px 16px;
      border-radius: 10px;
      background: #ffffff;
      color: #333333;
      font-size: 15px;
      font-weight: 600;
      line-height: 1.4;
    }

    .centro-page .servicio-card {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      min-height: 220px;
      border-radius: 14px;
      padding: 28px 20px;
      color: #ffffff;
      font-size: 20px;
      font-weight: 800;
      text-align: center;
      text-decoration: none;
      cursor: pointer;
      transition: transform .2s ease;
    }

    .centro-page .servicio-card-title {
      display: block;
      width: 100%;
      text-align: center;
      font-size: 25px;
    }

    .centro-page .servicio-card-text {
      display: block;
      margin-top: 14px;
      font-size: 15px;
      font-weight: 500;
      line-height: 1.35;
      text-align: center;
    }

    .centro-page .servicio-card:hover {
      transform: scale(1.03);
    }

    .centro-page .bg-pink {
      background: var(--pink);
    }

    .centro-page .bg-blue {
      background: var(--blue);
    }

    .centro-page .bg-olive {
      background: var(--olive);
    }

    .centro-page .bg-orange {
      background: var(--orange);
    }

    .centro-page .bg-purple {
      background: #7D39B3;
    }

    .centro-page .bg-darkpink {
      background: #FC59BB;
    }

    .centro-page .bg-darkgreen {
      background: #60614C;
    }

    .centro-page .reviews-section {
      background: #FAF8F3;
    }

    .centro-page .reviews-score {
      margin: 0;
      color: #000000;
      font-size: clamp(42px, 6vw, 72px);
      font-weight: 900;
      line-height: 1;
    }

    .centro-page .reviews-stars {
      margin-top: 8px;
      color: var(--orange);
      font-size: 48px;
      line-height: 1;
    }

    .centro-page .reviews-stars-main {
      display: block;
      width: min(200px, 70vw);
      height: auto;
      margin: 4px auto 0;
    }

    .centro-page.teens-page .reviews-stars-main {
      margin-top: 0;
    }

    .centro-page .reviews-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      max-width: 860px;
      margin: 24px auto 0;
    }

    .centro-page.teens-page .reviews-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      max-width: 1240px;
      margin-top: 42px;
    }

    .centro-page .reviews-grid--single {
      grid-template-columns: minmax(0, 430px);
      justify-content: center;
    }

    .centro-page.teens-page .reviews-grid--single {
      grid-template-columns: minmax(0, 430px);
      justify-content: center;
      max-width: 860px;
    }

    .centro-page.teens-page .reviews-grid--double {
      grid-template-columns: repeat(2, minmax(0, 430px));
      justify-content: center;
      max-width: 980px;
    }

    .centro-page .review-card {
      padding: 16px 20px;
      border: 1px solid var(--olive);
      border-radius: 14px;
      background: #ffffff;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
      text-align: left;
    }

    .centro-page.teens-page .review-card {
      border: 1px solid #333333;
      border-radius: 14px;
      background: #ffffff;
      color: var(--teens-dark);
      box-shadow: none;
    }

    .centro-page.teens-page .review-head,
    .centro-page.teens-page .review-stars,
    .centro-page.teens-page .review-time,
    .centro-page.teens-page .review-text {
      color: var(--teens-dark);
    }

    .centro-page.teens-page .review-stars svg use {
      fill: var(--teens-dark);
      stroke: var(--teens-dark);
    }

    .centro-page .review-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: #000000;
      font-size: 13px;
      font-weight: 900;
    }

    .centro-page .review-stars {
      white-space: nowrap;
      color: #000000;
      font-size: 14px;
      font-weight: 900;
    }

    .centro-page .review-time {
      margin: 4px 0 12px;
      color: #8a8a8a;
      font-size: 12px;
    }

    .centro-page .review-text {
      margin: 0;
      color: #111111;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.45;
    }

    .centro-page .review-line {
      height: 10px;
      margin: 4px 0;
      border-radius: 4px;
      background: #e8e8e8;
    }

    .centro-page .reviews-action {
      margin-top: 24px;
    }

    .centro-page.teens-page .reviews-action .centro-pill--outline {
      border-color: #a8f084;
      background: #a8f084;
      color: #ffffff;
      min-height: 52px;
      padding: 14px 32px;
      font-size: 18px;
    }

    .centro-page .equipo-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 860px;
      margin: 32px auto;
    }

    .centro-page .equipo-photo {
      width: 160px;
      height: 160px;
      margin: 0 auto 12px;
      border-radius: 50%;
      background: #d4d4d4;
      overflow: hidden;
    }

    .centro-page.teens-page .equipo-photo {
      box-sizing: border-box;
      padding: 0;
      border: 1px solid #333333;
      background: transparent;
      box-shadow:
        0 14px 30px rgba(51, 51, 51, .28),
        0 3px 8px rgba(51, 51, 51, .18),
        inset 0 0 0 4px rgba(255, 255, 255, .28);
    }

    .centro-page .equipo-photo img {
      display: block;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
    }

    .centro-page .equipo-role {
      margin: 0;
      color: var(--olive);
      font-size: 14px;
      font-weight: 600;
    }

    .centro-page.teens-page .equipo-role {
      color: #ffffff;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.34;
    }

    .centro-page.teens-page .equipo-role::first-line {
      font-size: 18px;
      font-weight: 900;
      line-height: 1.2;
    }

    .centro-page .centro-gallery-modal {
      position: fixed;
      inset: 0;
      z-index: 12000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 48px;
      background: rgba(0, 0, 0, .58);
      backdrop-filter: blur(6px);
    }

    .centro-page .centro-gallery-modal.is-open {
      display: flex;
    }

    .centro-page .centro-gallery-dialog {
      position: relative;
      width: min(1120px, 86vw);
      max-height: 84vh;
      padding: 10px;
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 26px 80px rgba(0, 0, 0, .32);
    }

    .centro-page .centro-gallery-image {
      display: block;
      width: 100%;
      max-height: calc(84vh - 20px);
      border-radius: 4px;
      object-fit: contain;
    }

    .centro-page .centro-gallery-close {
      position: absolute;
      top: 14px;
      right: 14px;
      z-index: 2;
      width: 28px;
      height: 28px;
      border: 0;
      background: transparent;
      color: #ffffff;
      font-size: 34px;
      font-weight: 900;
      line-height: 1;
      cursor: pointer;
      text-shadow: 0 2px 8px rgba(0, 0, 0, .75);
    }

    .centro-page .centro-gallery-nav {
      position: absolute;
      top: 50%;
      z-index: 2;
      width: 52px;
      height: 52px;
      border: 1px solid #111111;
      border-radius: 50%;
      background: #c8c2bb;
      color: #111111;
      font-size: 42px;
      line-height: .8;
      cursor: pointer;
      transform: translateY(-50%);
    }

    .centro-page .centro-gallery-prev {
      left: 28px;
    }

    .centro-page .centro-gallery-next {
      right: 28px;
    }

    .centro-page.gallery-open {
      overflow: hidden;
    }

    @media (max-width: 768px) {
      .centro-page .centro-hero {
        flex-direction: column;
      }

      .centro-page.teens-page .centro-hero {
        margin-bottom: 0;
      }

      .centro-page.teens-page .centro-section,
      .centro-page.teens-page .reviews-section {
        margin-top: 0;
      }

      .centro-page .centro-col-left,
      .centro-page .centro-col-right {
        width: auto;
        max-width: calc(100vw - 40px);
        min-width: 0;
        align-self: stretch;
      }

      .centro-page .centro-col-right {
        order: 1;
      }

      .centro-page .centro-col-left {
        order: 2;
      }

      .centro-page .centro-image {
        flex: none;
        min-height: 180px;
        aspect-ratio: 4 / 3;
      }

      .centro-page.teens-page .centro-title {
        font-size: clamp(26px, 7.1vw, 36px);
        line-height: 1.08;
      }

      .centro-page.teens-page .service-tags,
      .centro-page.teens-page .centro-title,
      .centro-page.teens-page .centro-title-location {
        max-width: calc(100vw - 96px);
      }

      .centro-page.teens-page .centro-title-location {
        max-width: 24ch;
        font-size: .62em;
        line-height: 1.12;
      }

      .centro-page .contact-box {
        padding: 18px 16px;
      }

      .centro-page .contact-row {
        align-items: flex-start;
        font-size: 17px;
      }

      .centro-page .contact-address-text,
      .centro-page .contact-copy,
      .centro-page .contact-row>span:not(.contact-icon) {
        max-width: 24ch;
      }

      .centro-page .servicios-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
      }

      .centro-page.teens-page .servicios-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
      }

      .centro-page.teens-page .teens-work-block {
        margin: var(--teens-section-gap) auto 0;
      }

      .centro-page.teens-page .teens-work-columns {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .centro-page .servicio-card {
        width: 100%;
      }

      .centro-page .servicio-card:nth-child(1) {
        order: 1;
      }

      .centro-page .servicio-card:nth-child(2) {
        order: 2;
      }

      .centro-page .servicio-card:nth-child(4) {
        order: 3;
      }

      .centro-page .servicio-card:nth-child(3) {
        order: 4;
      }

      .centro-page .servicio-card:nth-child(6) {
        order: 5;
      }

      .centro-page .servicio-card:nth-child(5) {
        order: 6;
      }

      .centro-page .servicio-card:nth-child(n+7) {
        order: 7;
      }

      .centro-page .reviews-grid {
        grid-template-columns: 1fr;
      }

      .centro-page.teens-page .reviews-grid,
      .centro-page.teens-page .reviews-grid--single,
      .centro-page.teens-page .reviews-grid--double {
        grid-template-columns: 1fr;
        max-width: 100%;
      }

      .centro-page .equipo-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
      }

      .centro-page .equipo-photo {
        width: 220px;
        height: 220px;
      }

      .centro-page .centro-gallery-modal {
        padding: 18px;
      }

      .centro-page .centro-gallery-dialog {
        width: 100%;
      }

      .centro-page .centro-gallery-prev {
        left: 16px;
      }

      .centro-page .centro-gallery-next {
        right: 16px;
      }
    }
