/* --- RITMO METABOLICO CUSTOM CSS VARIABLES (Theme: Bold Accent / Preset C) --- */
:root {
  --ritmo-canvas: #f6f8fa;
  --ritmo-solid: #0f121d;
  --ritmo-accent: #ff4757;
  --ritmo-accent-bright: #ff6b81;
  --ritmo-glow: #2ed573;
  --ritmo-panel: #ffffff;
  --ritmo-soft-tint: #ffeef0;
  --ritmo-muted: #57606f;
  --ritmo-border: #e1e8ed;
  --ritmo-gradient-bold: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
  --ritmo-font-display: 'Oswald', sans-serif;
  --ritmo-font-body: 'Inter', sans-serif;
}

/* --- Global Elements & Typography --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.ritmo-body-canvas {
  font-family: var(--ritmo-font-body);
  background-color: var(--ritmo-canvas);
  color: var(--ritmo-solid);
  line-height: 1.6;
}

h1, h2, h3, h4, .ritmo-brand-title {
  font-family: var(--ritmo-font-display);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ritmo-solid);
}

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

/* --- Layout Box (Constraint) --- */
.ritmo-bound-box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Header Section (Preset C: Bright Accent Background) --- */
.ritmo-header-nav-element {
  background: var(--ritmo-accent);
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.ritmo-header-flex-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.ritmo-brand-identity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ritmo-brand-graphic {
  width: 32px;
  height: 32px;
  color: #ffffff;
}

.ritmo-brand-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.ritmo-nav-list-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ritmo-nav-anchor-link {
  font-family: var(--ritmo-font-display);
  text-transform: uppercase;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.ritmo-nav-anchor-link:hover,
.ritmo-nav-anchor-link.ritmo-nav-active {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

/* Hamburger Setup (CSS-Only) */
.ritmo-menu-toggle {
  display: none;
}

.ritmo-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.ritmo-menu-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

/* Scroll Progress Bar (CSS Only) */
.ritmo-scroll-progress-bar {
  height: 4px;
  background-color: var(--ritmo-glow);
  width: 0%;
  animation: progress-grow linear;
  animation-timeline: scroll();
}

@keyframes progress-grow {
  to { width: 100%; }
}

/* --- Hero Section (Preset C: Bold Gradient, CSS Shapes) --- */
.ritmo-hero-gradient-canvas {
  position: relative;
  background: var(--ritmo-gradient-bold);
  padding: 10dvh 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
}

.ritmo-bg-huge-number {
  position: absolute;
  font-size: 20rem;
  font-weight: 900;
  color: #ffffff;
  opacity: 0.06;
  right: 5%;
  bottom: -2%;
  user-select: none;
  font-family: var(--ritmo-font-display);
}

.ritmo-hero-multi-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ritmo-hero-text-block {
  text-align: left;
}

.ritmo-hero-big-heading {
  font-size: 3.5rem;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 24px;
}

.ritmo-hero-sub-anchor {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 600px;
}

/* Abstract CSS Shapes in Hero */
.ritmo-hero-abstract-art {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ritmo-abstract-shape {
  position: absolute;
  border-radius: 20px;
}

.ritmo-shape-one {
  background: rgba(255, 255, 255, 0.1);
  width: 250px;
  height: 250px;
  transform: rotate(45deg);
  border: 4px dashed rgba(255, 255, 255, 0.2);
}

.ritmo-shape-two {
  background: var(--ritmo-glow);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  right: 15%;
  top: 15%;
  opacity: 0.8;
}

.ritmo-shape-three {
  background: rgba(255, 255, 255, 0.15);
  width: 280px;
  height: 120px;
  transform: skewX(-20deg);
}

/* Button & Call to Action nodes */
.ritmo-interactive-node {
  display: inline-block;
  font-family: var(--ritmo-font-display);
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.ritmo-node-pill {
  border-radius: 999px;
  background-color: var(--ritmo-solid);
  color: #ffffff;
}

.ritmo-node-pill:hover {
  background-color: #232a3f;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* --- Diagonal Section with Image Overlay --- */
.ritmo-diagonal-slice-wrap {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 12dvh 0;
  clip-path: polygon(0 6dvh, 100% 0, 100% calc(100% - 6dvh), 0 100%);
  margin: -4dvh 0;
}

.ritmo-sliced-overlay-card {
  background: rgba(15, 18, 29, 0.85);
  border-left: 6px solid var(--ritmo-accent);
  padding: 40px;
  border-radius: 12px;
  max-width: 800px;
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.ritmo-sliced-overlay-card h2 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 2rem;
}

.ritmo-description-element {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.ritmo-description-element:last-child {
  margin-bottom: 0;
}

/* --- Features Grid (Minimal, Big numbers above headings) --- */
.ritmo-features-mesh-layout {
  padding: 10dvh 0;
  background: var(--ritmo-canvas);
}

.ritmo-center-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 60px;
  position: relative;
}

.ritmo-center-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--ritmo-accent);
  margin: 15px auto 0;
}

.ritmo-mesh-three-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.ritmo-feature-tile-minimal {
  padding: 24px;
  background: var(--ritmo-panel);
  border-radius: 16px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.ritmo-feature-tile-minimal:hover {
  transform: translateY(-5px);
}

.ritmo-tile-huge-num {
  font-family: var(--ritmo-font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--ritmo-accent);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.ritmo-tile-heading {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.ritmo-tile-desc {
  color: var(--ritmo-muted);
  font-size: 0.95rem;
}

/* --- "How it works" track section --- */
.ritmo-how-it-works-track {
  padding: 10dvh 0;
  background: var(--ritmo-panel);
  position: relative;
}

.ritmo-stepper-connector-line {
  position: absolute;
  top: 52%;
  left: 10%;
  right: 10%;
  height: 4px;
  background: var(--ritmo-accent);
  z-index: 1;
}

.ritmo-stepper-flex-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  gap: 24px;
}

.ritmo-step-node {
  flex: 1;
  text-align: center;
  background: var(--ritmo-panel);
  padding: 10px;
}

.ritmo-circle-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-family: var(--ritmo-font-display);
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.ritmo-circle-filled {
  background-color: var(--ritmo-accent);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 71, 87, 0.4);
}

.ritmo-circle-outline {
  background-color: var(--ritmo-panel);
  color: var(--ritmo-accent);
  border: 3px solid var(--ritmo-accent);
}

.ritmo-step-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.ritmo-step-text {
  color: var(--ritmo-muted);
  font-size: 0.95rem;
  max-width: 250px;
  margin: 0 auto;
}

/* --- CTA Strip Bold (Preset C) --- */
.ritmo-cta-strip-bold {
  background: var(--ritmo-solid);
  color: #ffffff;
  padding: 8dvh 0;
}

.ritmo-cta-flex-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.ritmo-cta-text-left {
  max-width: 700px;
}

.ritmo-cta-heading {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.ritmo-cta-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.ritmo-btn-glow {
  background-color: var(--ritmo-accent) !important;
  color: #ffffff !important;
}

.ritmo-btn-glow:hover {
  background-color: var(--ritmo-accent-bright) !important;
  box-shadow: 0 0 20px var(--ritmo-accent-bright) !important;
}

/* --- Bio Section (Expert Page split) --- */
.ritmo-mid-cta-bar {
  background: var(--ritmo-soft-tint);
  border-bottom: 2px solid var(--ritmo-border);
  padding: 30px 0;
}

.ritmo-mid-cta-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ritmo-accent);
}

.ritmo-split-bio-row {
  padding: 10dvh 0;
  background: var(--ritmo-panel);
}

.ritmo-bio-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.ritmo-main-section-title {
  font-size: 2.4rem;
  margin-bottom: 24px;
  position: relative;
}

.ritmo-bio-image-side {
  height: 450px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border: 8px solid var(--ritmo-canvas);
}

/* --- Stats panel (Expert Page) --- */
.ritmo-stats-strip-wrapper {
  background: var(--ritmo-solid);
  color: #ffffff;
  padding: 8dvh 0;
}

.ritmo-stats-four-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.ritmo-stat-card {
  text-align: center;
  border-bottom: 3px solid var(--ritmo-accent);
  padding-bottom: 16px;
}

.ritmo-stat-number {
  display: block;
  font-family: var(--ritmo-font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--ritmo-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.ritmo-stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.ritmo-featured-closing-block {
  background-size: cover;
  background-position: center;
  padding: 12dvh 0;
}

.ritmo-closing-content-card {
  background: rgba(255, 255, 255, 0.95);
  border-top: 6px solid var(--ritmo-accent);
  padding: 40px;
  border-radius: 12px;
  max-width: 700px;
  margin: 0 auto;
}

.ritmo-closing-content-card h2 {
  color: var(--ritmo-solid);
}

.ritmo-closing-content-card p {
  color: var(--ritmo-muted);
}

/* --- Booking & Form section (Reserve page) --- */
.ritmo-booking-split-zone {
  padding: 10dvh 0;
  background: var(--ritmo-canvas);
}

.ritmo-booking-flex-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.ritmo-form-panel-left {
  background: var(--ritmo-panel);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.ritmo-action-form {
  margin-top: 32px;
}

.ritmo-form-group {
  margin-bottom: 24px;
}

.ritmo-input-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.ritmo-input-field,
.ritmo-textarea-field {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: var(--ritmo-font-body);
  border: 1px solid var(--ritmo-border);
  border-radius: 8px;
  outline: none;
  background-color: var(--ritmo-canvas);
}

.ritmo-input-field:focus,
.ritmo-textarea-field:focus {
  border-color: var(--ritmo-accent);
  background-color: var(--ritmo-panel);
}

.ritmo-textarea-field {
  height: 120px;
  resize: vertical;
}

.ritmo-checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
}

.ritmo-checkbox-input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--ritmo-accent);
}

.ritmo-checkbox-label {
  font-size: 0.9rem;
  color: var(--ritmo-muted);
}

.ritmo-form-inline-link {
  color: var(--ritmo-accent);
  text-decoration: underline;
}

.ritmo-form-submit-btn {
  width: 100%;
  background: var(--ritmo-accent);
  color: #ffffff;
}

.ritmo-form-submit-btn:hover {
  background: var(--ritmo-accent-bright);
}

.ritmo-contact-alternative {
  margin-top: 300px; /* spacing out custom elements */
  margin-top: 32px;
  text-align: center;
  border-top: 1px solid var(--ritmo-border);
  padding-top: 24px;
}

.ritmo-contact-txt {
  display: block;
  font-size: 0.9rem;
  color: var(--ritmo-muted);
  margin-bottom: 8px;
}

.ritmo-mailto-link {
  font-family: var(--ritmo-font-display);
  font-size: 1.1rem;
  color: var(--ritmo-accent);
  font-weight: 500;
}

/* Info Cards Right Side */
.ritmo-info-aside-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ritmo-info-card-widget {
  background: var(--ritmo-panel);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.ritmo-highlight-widget {
  background: var(--ritmo-soft-tint);
  border-left: 4px solid var(--ritmo-accent);
}

.ritmo-info-card-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.ritmo-bullet-numbered-list {
  list-style: none;
}

.ritmo-bullet-numbered-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.ritmo-bullet-numbered-list li:last-child {
  margin-bottom: 0;
}

.ritmo-list-num-dot {
  background: var(--ritmo-accent);
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.ritmo-widget-text-content {
  font-size: 0.95rem;
  color: var(--ritmo-muted);
}

/* --- FAQ Accordion CSS --- */
.ritmo-faq-accordion-block {
  padding: 10dvh 0;
  background: var(--ritmo-panel);
}

.ritmo-faq-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.ritmo-faq-item-box {
  background: var(--ritmo-canvas);
  border-radius: 12px;
  padding: 24px;
}

.ritmo-faq-question-label {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--ritmo-accent);
}

.ritmo-faq-answer-text {
  color: var(--ritmo-muted);
  font-size: 0.95rem;
}

/* --- Legal Page Container --- */
.ritmo-legal-page-container {
  padding: 10dvh 0;
  background: var(--ritmo-canvas);
  min-height: 80vh;
}

.ritmo-legal-title {
  font-size: 3rem;
  margin-bottom: 40px;
  text-align: center;
  color: var(--ritmo-solid);
}

.ritmo-legal-section {
  background: var(--ritmo-panel);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin-bottom: 32px;
}

.ritmo-legal-subtitle {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--ritmo-accent);
}

.ritmo-legal-text {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--ritmo-muted);
}

/* --- Thank You Page Styles --- */
.ritmo-thank-hero-box {
  background-size: cover;
  background-position: center;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.ritmo-thank-content-panel {
  background: var(--ritmo-panel);
  max-width: 650px;
  margin: 0 auto;
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.ritmo-success-check-mark {
  width: 80px;
  height: 80px;
  background: var(--ritmo-glow);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.ritmo-success-check-mark svg {
  width: 44px;
  height: 44px;
}

.ritmo-thank-title {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.ritmo-thank-desc {
  font-size: 1.1rem;
  color: var(--ritmo-muted);
  margin-bottom: 32px;
}

.ritmo-thank-return-space {
  display: block;
}

/* --- Footer Section --- */
.ritmo-footer-base-wrap {
  background: var(--ritmo-solid);
  color: #ffffff;
  padding: 60px 0 40px;
  border-top: 4px solid var(--ritmo-accent);
}

.ritmo-footer-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 32px;
  margin-bottom: 32px;
}

.ritmo-footer-legal-links {
  display: flex;
  gap: 24px;
}

.ritmo-legal-anchor {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.ritmo-legal-anchor:hover {
  color: var(--ritmo-accent-bright);
}

.ritmo-educational-disclaimer {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.ritmo-copyright-line {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* --- Cookie Banner --- */
.ritmo-cookie-banner-wrapper {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--ritmo-solid);
  color: #ffffff;
  z-index: 9999;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.25);
  border-top: 3px solid var(--ritmo-glow);
}

.ritmo-cookie-banner-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ritmo-cookie-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.ritmo-cookie-buttons-row {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.ritmo-cookie-btn-action {
  padding: 10px 20px;
  border-radius: 6px;
  font-family: var(--ritmo-font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ritmo-accept-btn {
  background-color: var(--ritmo-glow);
  color: var(--ritmo-solid);
}

.ritmo-accept-btn:hover {
  background-color: #2ed573e0;
}

.ritmo-decline-btn {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
}

.ritmo-decline-btn:hover {
  background-color: rgba(255,255,255,0.1);
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
  .ritmo-hero-big-heading {
    font-size: 2.8rem;
  }
  
  .ritmo-hero-multi-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ritmo-hero-abstract-art {
    display: none;
  }

  .ritmo-bio-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ritmo-bio-image-side {
    height: 300px;
  }

  .ritmo-booking-flex-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .ritmo-faq-list-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Mobile Menu Toggle Logic */
  .ritmo-menu-btn {
    display: flex;
  }

  .ritmo-nav-list-wrapper {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--ritmo-accent);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: none;
  }

  .ritmo-menu-toggle:checked ~ .ritmo-nav-list-wrapper {
    display: flex;
  }

  .ritmo-menu-toggle:checked ~ .ritmo-menu-btn span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .ritmo-menu-toggle:checked ~ .ritmo-menu-btn span:nth-child(2) {
    opacity: 0;
  }

  .ritmo-menu-toggle:checked ~ .ritmo-menu-btn span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .ritmo-stepper-connector-line {
    display: none;
  }

  .ritmo-stepper-flex-row {
    flex-direction: column;
    gap: 32px;
  }

  .ritmo-step-node {
    text-align: center;
  }

  .ritmo-cta-flex-row {
    flex-direction: column;
    text-align: center;
  }

  .ritmo-footer-top-row {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .ritmo-footer-legal-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .ritmo-cookie-banner-box {
    flex-direction: column;
    text-align: center;
  }

  .ritmo-cookie-buttons-row {
    width: 100%;
    justify-content: center;
  }
}