/* ==========================================================================
   PLaiT - HOJA DE ESTILOS PRINCIPAL
   Sistema de diseño sobrio, accesible y mobile-first
   ========================================================================== */

:root {
  --papel:        #FAF9F6;  /* fondo base, crema, no blanco puro */
  --papel-2:      #F1EDE6;  /* fondo de secciones alternas */
  --papel-3:      #FDF3E7;  /* fondo del bloque de problema, crema cálido */
  --tinta:        #14181C;  /* texto principal   16.94:1 sobre papel  AAA */
  --tinta-2:      #3A424A;  /* texto secundario   9.69:1 sobre papel  AAA */
  --acento:       #0F2459;  /* azul marino de marca. Blanco encima: 14.82:1  AAA */
  --acento-hover: #1B3573;  /* Blanco encima: 11.64:1                        AAA */
  --alerta:       #A34313;  /* naranja tostado    5.92:1 sobre papel  AA */
  --borde:        #8C8577;  /* bordes funcionales 3.48:1 sobre papel  AA graficos */
  --borde-suave:  #DCD6CB;  /* solo separadores decorativos, nunca borde de control */
  --blanco:       #FFFFFF;
  --chat-verde:   #DCF3D8;
}

/* Reset y caja */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--papel);
  color: var(--tinta);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Tipografía de encabezados */
h1, h2, h3 {
  font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--tinta);
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

h1 {
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}

h3 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}

p {
  color: var(--tinta-2);
  margin-bottom: 16px;
}

p:last-child {
  margin-bottom: 0;
}

/* Enlaces y botones base */
a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* Accesibilidad y foco */
:focus,
:focus-visible,
a:focus,
a:focus-visible,
button:focus,
button:focus-visible {
  outline: 3px solid var(--acento) !important;
  outline-color: var(--acento) !important;
  outline-offset: 3px !important;
}

/* Contenedores */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.text-col {
  max-width: 680px;
}

.text-col-center {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* Header */
.site-header {
  height: 80px;
  background-color: var(--papel);
  border-bottom: 1px solid var(--borde-suave);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
}

.brand-logo {
  height: 60px;
  width: auto;
  display: block;
}

.header-btn {
  display: none;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  background-color: transparent;
  border: 2px solid var(--acento);
  border-radius: 10px;
  color: var(--acento);
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.header-btn:hover {
  background-color: var(--acento);
  color: var(--blanco);
}

/* Botones principales */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  width: 100%;
  padding: 0 24px;
  background-color: var(--acento);
  color: var(--blanco);
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.16s ease, transform 0.16s ease;
}

.btn-cta:hover {
  background-color: var(--acento-hover);
  transform: translateY(-1px);
}

/* Microcopy */
.microcopy {
  font-size: 16px;
  line-height: 1.5;
  color: var(--tinta-2);
  text-align: center;
  margin-top: 14px;
}

/* Hero Section */
.hero-section {
  background-color: var(--papel);
  padding-top: 8px;
  padding-bottom: 64px;
  text-align: center;
}

.hero-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  background-color: var(--papel-2);
  border: 1px solid var(--borde);
  border-radius: 9999px;
  padding: 3px 12px;
  font-size: 15px;
  color: var(--tinta-2);
  margin-bottom: 6px;
}

.hero-eyebrow {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--acento);
  margin-bottom: 4px;
}

.hero-title {
  font-size: 24px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  max-width: 1060px;
}

.desktop-break {
  display: none;
}

.hero-bajada {
  font-size: 16px;
  line-height: 1.35;
  color: var(--tinta-2);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

/* Video Facade */
.video-container {
  width: 100%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

/* En celulares la caja es 4:5, igual que demo-vertical.mp4; desde 768px pasa a 16:9. */
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--borde-suave);
  box-shadow: 0 8px 28px rgba(20, 24, 28, 0.10);
  background-color: var(--papel-2);
}

.video-facade {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: var(--papel-2);
}

.video-facade picture,
.video-facade img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.video-player {
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: contain;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: var(--papel);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(20, 24, 28, 0.12);
  transition: transform 160ms ease, background-color 160ms ease;
  pointer-events: none;
}

.video-facade:hover .play-btn,
.video-facade:focus-visible .play-btn {
  transform: translate(-50%, -50%) scale(1.06);
  background-color: var(--blanco);
}

.play-icon {
  width: 24px;
  height: 24px;
  fill: var(--acento);
  margin-left: 3px;
}

.video-caption {
  font-size: 16px;
  color: var(--tinta-2);
  text-align: right;
  margin-top: 8px;
}

.hero-cta-group {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Franja de hechos */
.hechos-section {
  background-color: var(--papel-2);
  border-top: 1px solid var(--borde-suave);
  border-bottom: 1px solid var(--borde-suave);
  padding: 20px 0;
}

.hechos-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hecho-item {
  font-size: 17px;
  font-weight: 600;
  color: var(--tinta);
  text-align: center;
}

/* El problema */
.problema-section {
  background-color: var(--papel-3);
  padding: 64px 0;
}

.problema-wrapper {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.problema-wrapper h2 {
  text-align: center;
}

.problema-bajada {
  font-size: 18px;
  color: var(--tinta-2);
  line-height: 1.65;
  margin-bottom: 32px;
}

.problema-lista {
  display: flex;
  flex-direction: column;
}

.problema-item {
  padding: 24px 0;
  border-top: 1px solid var(--borde-suave);
}

.problema-item:last-child {
  border-bottom: 1px solid var(--borde-suave);
}

.problema-item h3 {
  margin-bottom: 8px;
}

.problema-item p {
  font-size: 18px;
  line-height: 1.6;
}

/* La demostración escrita */
.demo-section {
  background-color: var(--papel);
  padding: 64px 0;
}

.demo-header {
  margin-bottom: 36px;
}

.demo-bajada {
  font-size: 18px;
  color: var(--tinta-2);
  max-width: 680px;
}

.demo-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.chat-container {
  background-color: var(--papel-2);
  border: 1px solid var(--borde-suave);
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chat-bubble {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--tinta);
  position: relative;
}

.chat-bubble p {
  color: var(--tinta);
  margin-bottom: 4px;
}

.chat-time {
  display: block;
  font-size: 15px;
  color: var(--tinta-2);
  text-align: right;
}

.bubble-paciente {
  align-self: flex-start;
  background-color: var(--blanco);
  border: 1px solid var(--borde-suave);
  max-width: 88%;
}

.bubble-asistente {
  align-self: flex-end;
  background-color: var(--chat-verde);
  max-width: 88%;
}

.anotaciones-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.anotacion-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.anotacion-line {
  display: none;
  width: 24px;
  height: 1px;
  background-color: var(--borde);
  margin-top: 13px;
  flex-shrink: 0;
}

.anotacion-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--tinta);
  margin-bottom: 4px;
}

.anotacion-content p {
  font-size: 17px;
  color: var(--tinta-2);
  line-height: 1.55;
}

/* Qué hace */
.que-hace-section {
  background-color: var(--papel-2);
  padding: 64px 0;
}

.card-principal {
  background-color: var(--papel);
  border: 1px solid var(--borde-suave);
  border-radius: 10px;
  padding: 32px 24px;
  margin-bottom: 28px;
}

.card-principal h3 {
  font-size: 24px;
  color: var(--tinta);
  margin-bottom: 12px;
}

.card-principal p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--tinta);
}

.secundarios-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.secundario-item {
  padding: 16px 0;
  border-top: 1px solid var(--borde-suave);
}

.secundario-item h3 {
  font-size: 19px;
  margin-bottom: 8px;
  color: var(--tinta);
}

.secundario-item p {
  font-size: 17px;
  color: var(--tinta-2);
  line-height: 1.6;
}

/* Cómo se pone en marcha */
.marcha-section {
  background-color: var(--papel);
  padding: 64px 0;
}

.marcha-bajada {
  font-size: 18px;
  color: var(--tinta-2);
  max-width: 680px;
  margin-bottom: 36px;
}

.marcha-nota {
  font-size: 16px;
  line-height: 1.55;
  color: var(--tinta-2);
  max-width: 640px;
  border-left: 3px solid var(--borde);
  padding-left: 14px;
  margin-top: -20px;
  margin-bottom: 36px;
}

.timeline {
  position: relative;
  padding-left: 28px;
  border-left: 2px solid var(--borde-suave);
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.timeline-step {
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: -36px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--acento);
}

.step-label {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--acento);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.timeline-step h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--tinta);
}

.timeline-step p {
  font-size: 18px;
  color: var(--tinta-2);
  line-height: 1.6;
}

/* Qué no hace */
.que-no-hace-section {
  background-color: var(--papel-2);
  padding: 64px 0;
}

.no-hace-wrapper {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.no-hace-lista {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.no-hace-item h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.no-hace-item p {
  font-size: 18px;
  color: var(--tinta-2);
  line-height: 1.6;
}

/* Quiénes somos */
.quienes-somos-section {
  background-color: var(--papel);
  padding: 64px 0;
}

.quienes-bajada {
  font-size: 19px;
  line-height: 1.6;
  color: var(--tinta);
  max-width: 680px;
  margin-bottom: 36px;
}

.equipo-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.socio-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.socio-foto {
  width: 132px;
  height: 132px;
  border-radius: 10px;
  object-fit: cover;
  background-color: var(--papel-2);
  border: 1px solid var(--borde-suave);
  margin-bottom: 10px;
}

.socio-nombre {
  font-size: 18px;
  font-weight: 600;
  color: var(--tinta);
}

.socio-rol {
  font-size: 16px;
  color: var(--tinta-2);
}

.socio-detalle {
  font-size: 16px;
  line-height: 1.5;
  color: var(--tinta-2);
  margin-top: 4px;
  max-width: 300px;
}

/* FAQ */
.faq-section {
  background-color: var(--papel);
  padding: 64px 0;
}

.faq-wrapper {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--borde-suave);
}

.faq-item:first-child {
  border-top: 1px solid var(--borde-suave);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 19px;
  font-weight: 600;
  color: var(--tinta);
}

.faq-trigger:hover {
  color: var(--acento);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  stroke: var(--tinta-2);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s ease;
}

.faq-trigger[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-panel {
  padding-bottom: 20px;
  font-size: 18px;
  color: var(--tinta-2);
  line-height: 1.65;
}

.faq-panel[hidden] {
  display: none;
}

/* Cierre y Cal.com */
.cierre-section {
  background-color: #000000;
  color: var(--papel);
  padding: 96px 0;
  text-align: center;
}

.cierre-section h2 {
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--papel);
  margin-bottom: 18px;
}

.cierre-bajada {
  font-size: 22px;
  line-height: 1.4;
  color: var(--papel);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
}

.cierre-section :focus-visible {
  outline-color: var(--papel) !important;
}

.cierre-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  width: 100%;
  padding: 0 24px;
  background-color: var(--papel);
  color: var(--tinta);
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.16s ease, transform 0.16s ease;
}

.cierre-btn:hover {
  background-color: var(--blanco);
  transform: translateY(-1px);
}

.cierre-microcopy {
  font-size: 16px;
  color: var(--papel);
  margin-top: 14px;
  margin-bottom: 32px;
}

/* Sin fondo propio: el embed de Cal.com trae su propia tarjeta y se fuerza en
   tema oscuro desde main.js, así que el contenedor no debe aportar blanco.
   El min-height solo reserva espacio mientras carga para que no salte el
   layout; despues el iframe se autoajusta y lo que sobre queda del color de
   la seccion, que es oscuro. */
/* Sin borde propio: la tarjeta del embed de Cal.com ya trae su borde y es la
   que se ve como caja. El espacio de arriba y la marca de abajo estan dentro
   del iframe de Cal.com y no se pueden recortar desde aca; sobre negro no se
   notan. El min-height solo reserva lugar mientras carga: main.js agrega
   .is-loaded cuando el calendario esta listo y lo suelta. */
.cal-container {
  background-color: #000000;
  border: 0;
  border-radius: 14px;
  padding: 0;
  min-height: 560px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
  overflow: hidden;
}

.cal-inline-widget {
  min-width: 320px;
  height: 100%;
  min-height: 560px;
}

/* Ya cargado: la caja se ajusta a la altura real del calendario. La
   especificidad le gana tambien al min-height de escritorio. */
.cal-container.is-loaded,
.cal-container.is-loaded .cal-inline-widget {
  min-height: 0;
}

.cierre-contacto-line {
  font-size: 17px;
  color: var(--papel);
}

.link-cierre {
  color: var(--papel);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Barra sticky móvil */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--papel);
  border-top: 1px solid var(--borde);
  padding: 12px 20px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  transform: translateY(100%);
  transition: transform 0.2s ease;
}

.mobile-sticky-bar.is-visible {
  transform: translateY(0);
}

.mobile-sticky-bar .btn-cta {
  height: 56px;
  font-size: 18px;
  width: 100%;
}

/* Pie */
.site-footer {
  background-color: var(--papel-2);
  border-top: 1px solid var(--borde-suave);
  padding: 48px 0;
}

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

.footer-brand {
  max-width: 440px;
}

.footer-logo {
  height: 76px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 16px;
  color: var(--tinta-2);
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  font-size: 17px;
  color: var(--tinta);
  text-decoration: none;
}

.footer-link span:last-child {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.16s ease;
}

.footer-link:hover span:last-child {
  color: var(--acento);
}

.footer-icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--papel);
  border: 1px solid var(--borde-suave);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.16s ease, background-color 0.16s ease, transform 0.16s ease;
}

.footer-link:hover .footer-icon-badge {
  border-color: var(--acento);
  background-color: var(--blanco);
  transform: translateY(-1px);
}

.footer-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}

.footer-legal {
  font-size: 15px;
  color: var(--tinta-2);
  border-top: 1px solid var(--borde-suave);
  padding-top: 20px;
}

.footer-legal a {
  text-decoration: underline;
}

/* ==========================================================================
   Media Queries para Escritorio (min-width: 768px y min-width: 1024px)
   ========================================================================== */

@media (min-width: 768px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }

  h1 {
    font-size: 46px;
    line-height: 1.15;
  }

  h2 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 24px;
  }

  h3 {
    font-size: 22px;
    line-height: 1.3;
  }

  body {
    font-size: 19px;
  }

  .header-btn {
    display: inline-flex;
  }

  .btn-cta {
    width: auto;
    padding: 0 40px;
    font-size: 19px;
  }

  .hero-section {
    padding-top: 20px;
    padding-bottom: 88px;
  }

  .hero-header {
    margin-bottom: 0;
  }

  .hero-eyebrow {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .desktop-break {
    display: inline;
  }

  .hero-title {
    font-size: 38px;
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .hero-bajada {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 32px;
  }

  .video-wrapper {
    aspect-ratio: 16 / 9;
  }

  .play-btn {
    width: 76px;
    height: 76px;
  }

  .play-icon {
    width: 28px;
    height: 28px;
  }

  .hechos-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hecho-item {
    flex: 1;
    padding: 0 16px;
  }

  .hecho-item:not(:last-child) {
    border-right: 1px solid var(--borde-suave);
  }

  .problema-section {
    padding: 88px 0;
  }

  .problema-wrapper {
    margin-left: auto;
    margin-right: auto;
  }

  .demo-section {
    padding: 88px 0;
  }

  .demo-bajada {
    font-size: 21px;
  }

  .demo-grid {
    display: grid;
    grid-template-columns: 58fr 42fr;
    gap: 36px;
    align-items: flex-start;
  }

  .chat-container {
    padding: 24px;
  }

  .anotacion-line {
    display: block;
  }

  .que-hace-section {
    padding: 88px 0;
  }

  .card-principal {
    padding: 40px;
    margin-bottom: 36px;
  }

  .card-principal h3 {
    font-size: 26px;
  }

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

  .secundarios-grid {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }

  .secundario-item {
    flex: 1;
    padding: 0 24px;
    border-top: none;
  }

  .secundario-item:first-child {
    padding-left: 0;
  }

  .secundario-item:not(:last-child) {
    border-right: 1px solid var(--borde-suave);
  }

  .marcha-section {
    padding: 88px 0;
  }

  .marcha-bajada {
    font-size: 21px;
  }

  .marcha-nota {
    font-size: 17px;
  }

  .timeline {
    padding-left: 36px;
    margin-left: 14px;
    gap: 40px;
  }

  .timeline-dot {
    left: -44px;
  }

  .que-no-hace-section {
    padding: 88px 0;
  }

  .no-hace-wrapper h2 {
    text-align: center;
  }

  .quienes-somos-section {
    padding: 88px 0;
  }

  .quienes-bajada {
    font-size: 20px;
  }

  .equipo-grid {
    flex-direction: row;
    justify-content: flex-start;
    gap: 32px;
  }

  .socio-card {
    max-width: 320px;
    width: 100%;
  }

  .faq-section {
    padding: 88px 0;
  }

  .cierre-section {
    padding: 128px 0;
  }

  .cierre-section h2 {
    font-size: 56px;
  }

  .cierre-bajada {
    font-size: 28px;
    line-height: 1.35;
  }

  .cierre-btn {
    width: auto;
    padding: 0 40px;
    font-size: 19px;
  }

  .cal-container {
    min-height: 660px;
  }

  .cal-inline-widget {
    min-height: 660px;
  }

  .mobile-sticky-bar {
    display: none !important;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

/* ==========================================================================
   Accesibilidad: Reducción de movimiento
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
