:root {
  --ritmo-es-fondo: #fcfbf9;
  --ritmo-es-superficie: #f5efe6;
  --ritmo-es-acento: #d35230;
  --ritmo-es-acento-claro: #fbebe6;
  --ritmo-es-texto: #2b231d;
  --ritmo-es-texto-secundario: #605246;
  --ritmo-es-borde: #dfd7cc;
  --ritmo-es-sombra: 0 8px 24px rgba(43, 35, 29, 0.08);
  --ritmo-es-radio: 16px;
  --font-display: 'Raleway', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

@keyframes ritmo-progreso-barra {
  to { width: 100%; }
}

@keyframes ritmo-revelar-deslizar {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--ritmo-es-fondo);
  color: var(--ritmo-es-texto);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ritmo-es-texto);
  letter-spacing: 0.05em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Scroll Progress Bar */
.ritmo-cabecera-indicador {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background-color: var(--ritmo-es-acento);
  width: 0;
  z-index: 10000;
  animation: ritmo-progreso-barra linear;
  animation-timeline: scroll();
}

/* Header Style */
.ritmo-cabecera-wrap {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: var(--ritmo-es-fondo);
  border-bottom: 1px solid var(--ritmo-es-borde);
  transition: box-shadow 0.3s ease;
}

.ritmo-cabecera-wrap:focus-within {
  box-shadow: var(--ritmo-es-sombra);
}

.ritmo-cabecera-interior {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
}

.ritmo-branding-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--ritmo-es-texto);
  text-transform: uppercase;
}

.ritmo-branding-logo svg {
  fill: var(--ritmo-es-acento);
  width: 32px;
  height: 32px;
}

.ritmo-navegacion-lista {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.ritmo-navegacion-enlace {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ritmo-es-texto-secundario);
}

.ritmo-navegacion-enlace:hover,
.ritmo-navegacion-enlace.activo {
  color: var(--ritmo-es-acento);
}

/* Mobile Menu Trigger */
.ritmo-menu-check {
  display: none;
}

.ritmo-menu-hamburguesa {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.ritmo-menu-hamburguesa span {
  width: 25px;
  height: 3px;
  background-color: var(--ritmo-es-texto);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Announcement Bar */
.ritmo-anuncio-barra {
  background-color: var(--ritmo-es-acento);
  color: #ffffff;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ritmo-anuncio-barra a {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ritmo-anuncio-barra a:hover {
  text-decoration: underline;
}

/* Viewport Reveal Animation */
.ritmo-bloque-revelar {
  animation: ritmo-revelar-deslizar linear both;
  animation-timeline: view();
  animation-range: entry 10% entry 40%;
}

/* Split Hero Section */
.ritmo-pantalla-dividida {
  display: flex;
  min-height: 80vh;
}

.ritmo-dividida-contenido {
  flex: 0 0 55%;
  background-color: var(--ritmo-es-superficie);
  padding: 6dvh 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.ritmo-dividida-categoria {
  color: var(--ritmo-es-acento);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.ritmo-dividida-titulo {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.ritmo-dividida-descripcion {
  font-size: 1.1rem;
  color: var(--ritmo-es-texto-secundario);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.ritmo-boton-principal {
  display: inline-block;
  background-color: var(--ritmo-es-acento);
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: var(--ritmo-es-radio);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--ritmo-es-sombra);
  border: 2px solid transparent;
}

.ritmo-boton-principal:hover {
  background-color: transparent;
  border-color: var(--ritmo-es-acento);
  color: var(--ritmo-es-acento);
  transform: translateY(-2px);
}

.ritmo-dividida-imagen {
  flex: 0 0 45%;
  position: relative;
}

.ritmo-dividida-img-fondo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Magazine Strip Content */
.ritmo-revista-franja {
  width: 100%;
  height: 45vh;
  object-fit: cover;
}

.ritmo-revista-seccion {
  max-width: 1200px;
  margin: -4rem auto 6dvh;
  position: relative;
  z-index: 5;
  background-color: var(--ritmo-es-fondo);
  padding: 3rem;
  border-radius: var(--ritmo-es-radio);
  box-shadow: var(--ritmo-es-sombra);
}

.ritmo-revista-columnas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.ritmo-revista-columna {
  border-top: 3px solid var(--ritmo-es-acento);
  padding-top: 1.5rem;
}

.ritmo-revista-col-titulo {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.ritmo-revista-col-texto {
  color: var(--ritmo-es-texto-secundario);
  font-size: 0.95rem;
}

/* Masonry Features Section */
.ritmo-mosaico-seccion {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10dvh 2rem;
}

.ritmo-mosaico-encabezado {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.ritmo-mosaico-subtitulo {
  color: var(--ritmo-es-acento);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.ritmo-mosaico-contenedor {
  columns: 3;
  column-gap: 2rem;
}

.ritmo-mosaico-tarjeta {
  break-inside: avoid;
  background-color: var(--ritmo-es-superficie);
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  border-radius: var(--ritmo-es-radio);
  box-shadow: var(--ritmo-es-sombra);
  transition: transform 0.3s ease;
}

.ritmo-mosaico-tarjeta:hover {
  transform: translateY(-5px);
}

.ritmo-mosaico-icono {
  width: 48px;
  height: 48px;
  background-color: var(--ritmo-es-acento-claro);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.ritmo-mosaico-icono svg {
  width: 24px;
  height: 24px;
  fill: var(--ritmo-es-acento);
}

.ritmo-mosaico-titulo {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.ritmo-mosaico-texto {
  color: var(--ritmo-es-texto-secundario);
  font-size: 0.95rem;
}

/* Horizontal Steps Progress Track */
.ritmo-pasos-seccion {
  background-color: var(--ritmo-es-superficie);
  padding: 10dvh 2rem;
}

.ritmo-pasos-max {
  max-width: 1200px;
  margin: 0 auto;
}

.ritmo-pasos-track {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}

.ritmo-pasos-bloque-etapa {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.ritmo-pasos-circulo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--ritmo-es-fondo);
  border: 3px dashed var(--ritmo-es-acento);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--ritmo-es-acento);
  margin: 0 auto 1.5rem;
  box-shadow: var(--ritmo-es-sombra);
}

.ritmo-pasos-bloque-etapa.activo .ritmo-pasos-circulo {
  background-color: var(--ritmo-es-acento);
  border-style: solid;
  color: #ffffff;
}

.ritmo-pasos-tarjeta-titulo {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.ritmo-pasos-tarjeta-texto {
  color: var(--ritmo-es-texto-secundario);
  font-size: 0.9rem;
  max-width: 260px;
  margin: 0 auto;
}

/* CTA Strip */
.ritmo-franja-accion {
  background-color: var(--ritmo-es-acento);
  color: #ffffff;
  padding: 10dvh 2rem;
  text-align: center;
}

.ritmo-franja-accion-max {
  max-width: 800px;
  margin: 0 auto;
}

.ritmo-franja-accion-max h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.ritmo-franja-accion-max p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.ritmo-boton-secundario {
  display: inline-block;
  background-color: #ffffff;
  color: var(--ritmo-es-acento);
  padding: 1rem 2.5rem;
  border-radius: var(--ritmo-es-radio);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
}

.ritmo-boton-secundario:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Bio Expert Section */
.ritmo-experto-biografia {
  display: flex;
  max-width: 1200px;
  margin: 6dvh auto;
  gap: 4rem;
  align-items: center;
  padding: 0 2rem;
}

.ritmo-experto-retrato {
  flex: 0 0 45%;
  height: 550px;
  border-radius: var(--ritmo-es-radio);
  overflow: hidden;
  box-shadow: var(--ritmo-es-sombra);
}

.ritmo-experto-retrato img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ritmo-experto-info {
  flex: 0 0 50%;
}

.ritmo-expert-titulo {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.ritmo-expert-sub {
  color: var(--ritmo-es-acento);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.ritmo-expert-bio-p {
  color: var(--ritmo-es-texto-secundario);
  margin-bottom: 1.5rem;
}

/* Horizontal Stats Bar */
.ritmo-stats-horizontal {
  background-color: var(--ritmo-es-superficie);
  padding: 5rem 2rem;
  margin: 6dvh 0;
}

.ritmo-stats-horizontal-max {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.ritmo-stat-bloque {
  text-align: center;
}

.ritmo-stat-numero {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--ritmo-es-acento);
  font-family: var(--font-display);
}

.ritmo-stat-concepto {
  font-size: 0.95rem;
  color: var(--ritmo-es-texto-secundario);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Accordion Philosophy */
.ritmo-acordeon-seccion {
  max-width: 900px;
  margin: 6dvh auto;
  padding: 0 2rem;
}

.ritmo-acordeon-item {
  background-color: var(--ritmo-es-fondo);
  border: 1px solid var(--ritmo-es-borde);
  border-radius: var(--ritmo-es-radio);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--ritmo-es-sombra);
}

.ritmo-acordeon-encabezado {
  padding: 1.5rem 2rem;
  background-color: var(--ritmo-es-superficie);
  font-weight: 700;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--ritmo-es-borde);
}

.ritmo-acordeon-contenido {
  padding: 1.5rem 2rem;
  color: var(--ritmo-es-texto-secundario);
}

/* Reserve Frame Page Layout */
.ritmo-reservas-dos-columnas {
  max-width: 1200px;
  margin: 6dvh auto;
  padding: 0 2rem;
  display: flex;
  gap: 4rem;
}

.ritmo-reservas-info {
  flex: 0 0 45%;
}

.ritmo-reservas-tarjetas-soporte {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ritmo-reserva-soporte-card {
  background-color: var(--ritmo-es-superficie);
  padding: 2rem;
  border-radius: var(--ritmo-es-radio);
  box-shadow: var(--ritmo-es-sombra);
}

.ritmo-soporte-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.ritmo-soporte-card-header svg {
  width: 32px;
  height: 32px;
  fill: var(--ritmo-es-acento);
}

.ritmo-soporte-bullet-lista {
  list-style: none;
}

.ritmo-soporte-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: var(--ritmo-es-texto-secundario);
}

.ritmo-soporte-circulo-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--ritmo-es-acento);
  margin-top: 6px;
  flex-shrink: 0;
}

/* Form block */
.ritmo-reservas-formulario-contenedor {
  flex: 0 0 50%;
  background-color: var(--ritmo-es-fondo);
  border: 1px solid var(--ritmo-es-borde);
  padding: 3rem;
  border-radius: var(--ritmo-es-radio);
  box-shadow: var(--ritmo-es-sombra);
}

.ritmo-form-titulo {
  margin-bottom: 1.5rem;
}

.ritmo-form-campo {
  margin-bottom: 1.5rem;
}

.ritmo-form-campo label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.ritmo-form-campo input,
.ritmo-form-campo textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--ritmo-es-borde);
  background-color: var(--ritmo-es-superficie);
  border-radius: calc(var(--ritmo-es-radio) / 2);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ritmo-es-texto);
}

.ritmo-form-campo input:focus,
.ritmo-form-campo textarea:focus {
  outline: none;
  border-color: var(--ritmo-es-acento);
}

.ritmo-form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: var(--ritmo-es-texto-secundario);
  cursor: pointer;
  margin-bottom: 2rem;
}

.ritmo-form-checkbox-label input {
  margin-top: 3px;
}

.ritmo-form-action-btn {
  width: 100%;
  padding: 1.2rem;
  background-color: var(--ritmo-es-acento);
  color: #ffffff;
  border: none;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  border-radius: calc(var(--ritmo-es-radio) / 2);
  cursor: pointer;
  letter-spacing: 0.05em;
  box-shadow: var(--ritmo-es-sombra);
}

.ritmo-form-action-btn:hover {
  background-color: var(--ritmo-es-texto);
}

.ritmo-contacto-directo {
  margin-top: 2rem;
  font-size: 0.9rem;
  text-align: center;
  color: var(--ritmo-es-texto-secundario);
}

.ritmo-contacto-directo a {
  color: var(--ritmo-es-acento);
  font-weight: 600;
}

/* FAQ Bottom Section on Reserve */
.ritmo-preguntas-frecuentes {
  max-width: 900px;
  margin: 6dvh auto;
  padding: 0 2rem;
}

.ritmo-faq-titulo {
  text-align: center;
  margin-bottom: 3rem;
}

.ritmo-faq-caja {
  background-color: var(--ritmo-es-superficie);
  padding: 2rem;
  border-radius: var(--ritmo-es-radio);
  margin-bottom: 1.5rem;
  box-shadow: var(--ritmo-es-sombra);
}

.ritmo-faq-pregunta {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.ritmo-faq-respuesta {
  color: var(--ritmo-es-texto-secundario);
  font-size: 0.95rem;
}

/* Legal Documents & Thank you generic styles */
.ritmo-legal-seccion {
  max-width: 900px;
  margin: 6dvh auto;
  padding: 0 2rem;
  min-height: 70vh;
}

.ritmo-legal-seccion h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--ritmo-es-acento);
  padding-bottom: 1rem;
}

.ritmo-legal-seccion h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.ritmo-legal-seccion p {
  color: var(--ritmo-es-texto-secundario);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* Thank you page styles */
.ritmo-gracias-caja {
  max-width: 700px;
  margin: 8dvh auto;
  padding: 4rem 2rem;
  text-align: center;
  background-color: var(--ritmo-es-superficie);
  border-radius: var(--ritmo-es-radio);
  box-shadow: var(--ritmo-es-sombra);
}

.ritmo-gracias-img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: calc(var(--ritmo-es-radio) / 2);
  margin-bottom: 2rem;
}

.ritmo-gracias-h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.ritmo-gracias-texto {
  color: var(--ritmo-es-texto-secundario);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

/* Footer Section */
.ritmo-pie-seccion {
  background-color: var(--ritmo-es-texto);
  color: #ffffff;
  padding: 5rem 2rem 2rem;
}

.ritmo-pie-interior {
  max-width: 1200px;
  margin: 0 auto;
}

.ritmo-pie-columnas {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.ritmo-pie-marca {
  max-width: 400px;
}

.ritmo-pie-marca .ritmo-branding-logo {
  color: #ffffff;
  margin-bottom: 1rem;
}

.ritmo-pie-marca-p {
  font-size: 0.9rem;
  color: #9c8e82;
}

.ritmo-pie-enlaces {
  display: flex;
  gap: 3rem;
}

.ritmo-pie-columna-enlaces {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.ritmo-pie-label {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--ritmo-es-acento);
  margin-bottom: 0.5rem;
}

.ritmo-pie-href {
  font-size: 0.9rem;
  color: #c9bcaf;
}

.ritmo-pie-href:hover {
  color: #ffffff;
}

.ritmo-pie-descargo {
  border-top: 1px solid #3d332a;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: #9c8e82;
  line-height: 1.5;
}

.ritmo-pie-copyright {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.75rem;
  color: #6d5f54;
}

/* Cookie Info Box */
.ritmo-cookies-emergente {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--ritmo-es-texto);
  color: #ffffff;
  z-index: 9999;
  padding: 1.5rem 2rem;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.15);
  display: none;
}

.ritmo-cookies-interior {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.ritmo-cookies-texto {
  font-size: 0.9rem;
  flex: 1;
  color: #c9bcaf;
}

.ritmo-cookies-texto a {
  color: #ffffff;
  text-decoration: underline;
}

.ritmo-cookies-botones {
  display: flex;
  gap: 1rem;
}

.ritmo-cookies-btn-si {
  background-color: var(--ritmo-es-acento);
  color: #ffffff;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: var(--ritmo-es-radio);
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.ritmo-cookies-btn-no {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #6d5f54;
  padding: 0.6rem 1.5rem;
  border-radius: var(--ritmo-es-radio);
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* Adaptive Breakpoints */
@media (max-width: 1024px) {
  .ritmo-reservas-dos-columnas {
    flex-direction: column;
  }
  .ritmo-reservas-info, .ritmo-reservas-formulario-contenedor {
    flex: 0 0 100%;
  }
  .ritmo-mosaico-contenedor {
    columns: 2;
  }
}

@media (max-width: 768px) {
  .ritmo-menu-hamburguesa {
    display: flex;
  }
  
  .ritmo-navegacion-lista {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: var(--ritmo-es-fondo);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    align-items: flex-start;
    transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--ritmo-es-sombra);
  }

  .ritmo-menu-check:checked ~ .ritmo-navegacion-lista {
    left: 0;
  }

  .ritmo-pantalla-dividida {
    flex-direction: column;
  }

  .ritmo-dividida-contenido, .ritmo-dividida-imagen {
    flex: 0 0 100%;
  }

  .ritmo-dividida-imagen {
    height: 40vh;
  }

  .ritmo-revista-seccion {
    padding: 2rem;
    margin-top: -2rem;
  }

  .ritmo-revista-columnas {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ritmo-mosaico-contenedor {
    columns: 1;
  }

  .ritmo-pasos-track {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .ritmo-pasos-bloque-etapa::after {
    display: none;
  }

  .ritmo-experto-biografia {
    flex-direction: column;
    gap: 2rem;
  }

  .ritmo-experto-retrato, .ritmo-experto-info {
    flex: 0 0 100%;
  }

  .ritmo-experto-retrato {
    height: 350px;
    width: 100%;
  }

  .ritmo-stats-horizontal-max {
    grid-template-columns: repeat(2, 1fr);
  }
}