:root {
  --bg: #0f0f0f;
  --surface: #1f1f1f;
  --surface-soft: #252525;
  --text: #ffffff;
  --muted: #b3b3b3;
  --accent: #e11d2e;
  --accent-soft: #f74b5a;
  --border: #2f2f2f;
  --ok: #12b76a;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --nav-height: 84px;
  --header-stack-height: calc(var(--nav-height) + (var(--space-4) * 2));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", "Segoe UI", Arial, sans-serif;
  background: radial-gradient(circle at top right, #2a1114 0%, var(--bg) 48%) no-repeat var(--bg);
  color: var(--text);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 var(--space-4);
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0 0 var(--space-4);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: var(--space-16) 0 var(--space-12);
  scroll-margin-top: 110px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.eyebrow {
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-soft);
  font-weight: 700;
  font-size: 0.78rem;
}

.inline-bm {
  display: block;
  margin-top: var(--space-3);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-weight: 700;
  font-size: 0.93rem;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background: #f12639;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.55);
}

.card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: var(--space-4);
  z-index: 1000;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  min-height: var(--nav-height);
  margin-top: var(--space-4);
  padding: 0.9rem var(--space-5);
  background: rgba(31, 31, 31, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  transition: 0.25s ease;
}

.site-header.is-shrunk .nav-shell {
  min-height: 68px;
  margin-top: 0.7rem;
  padding-inline: var(--space-4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(140deg, #f12639, #a10e1f);
  font-size: 0.9rem;
  font-weight: 800;
}

.brand-text {
  font-size: 0.85rem;
  color: #ddd;
  letter-spacing: 0.02em;
}

.site-nav {
  display: block;
  width: 100%;
  order: 3;
  margin-top: 0.35rem;
}

.site-nav ul {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.site-nav a {
  color: #f1f1f1;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--accent-soft);
}

.nav-desktop-cta {
  display: none;
}

.nav-mobile-cta {
  width: 100%;
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.js .nav-toggle {
  display: inline-grid;
}

.js .site-nav {
  position: fixed;
  top: calc(var(--nav-height) + var(--space-4));
  left: 50%;
  right: auto;
  width: min(92vw, 540px);
  padding: var(--space-5);
  background: #171717;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: 0.25s ease;
}

.js .site-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  margin-top: calc(-1 * var(--header-stack-height));
  min-height: clamp(620px, 88vh, 860px);
  padding-top: calc(var(--space-16) + var(--header-stack-height));
  padding-bottom: var(--space-10);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(8, 8, 8, 0.86) 10%, rgba(15, 15, 15, 0.68) 45%, rgba(15, 15, 15, 0.9) 100%),
    linear-gradient(0deg, rgba(15, 15, 15, 0.88), rgba(15, 15, 15, 0.5));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(15, 15, 15, 0), var(--bg));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-grid {
  display: grid;
  gap: var(--space-5);
  position: relative;
  z-index: 1;
}

.hero-copy,
.hero-trust {
  background: rgba(11, 11, 11, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
  border-radius: var(--radius-lg);
}

.hero-copy {
  padding: clamp(1.1rem, 2.4vw, 2rem);
}

.hero-copy h1 {
  font-size: clamp(2rem, 6vw, 3.7rem);
  margin-bottom: var(--space-5);
  color: #fff;
  text-wrap: balance;
}

.hero-copy h1 span {
  display: block;
  margin-top: var(--space-3);
  color: #e4e4e4;
  font-size: clamp(1.05rem, 2.6vw, 1.55rem);
  font-weight: 600;
}

.hero-description {
  max-width: 58ch;
  color: #d8d8d8;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.hero-trust {
  padding: var(--space-6);
}

.hero-trust h2 {
  font-size: 1.1rem;
  margin-bottom: var(--space-5);
  color: #fff;
}

.hero-trust ul {
  display: grid;
  gap: var(--space-5);
}

.hero-trust li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.hero-trust li .icon {
  color: var(--accent-soft);
  width: 1.4rem;
  height: 1.4rem;
  margin-top: 0.2rem;
}

.hero-trust strong {
  display: block;
  margin-bottom: var(--space-2);
  color: #fff;
}

.hero-trust span {
  color: #dadada;
}

.section-heading {
  margin-bottom: var(--space-8);
  max-width: 70ch;
}

.section-heading h2 {
  font-size: clamp(1.55rem, 4vw, 2.45rem);
}

.about-grid,
.trainer-grid,
.contact-grid {
  display: grid;
  gap: var(--space-6);
}

.list-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.list-pills li {
  border: 1px solid rgba(225, 29, 46, 0.45);
  color: #ffe5e7;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.88rem;
}

.trainer-photo {
  position: relative;
  min-height: 340px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #121212;
}

.trainer-photo img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: block;
  object-fit: cover;
  object-position: center 22%;
  transform: scale(1.02);
}

.trainer-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(to top, rgba(12, 12, 12, 0.76), rgba(12, 12, 12, 0));
  pointer-events: none;
}

.bullet-list {
  list-style: disc;
  margin-left: 1.2rem;
  color: #e9e9e9;
}

.bullet-list li + li {
  margin-top: var(--space-2);
}

.framework-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
  align-items: stretch;
}

.framework-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
  background: #0f0f0f;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.framework-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(225, 29, 46, 0.95), rgba(225, 29, 46, 0.2));
  z-index: 2;
}

.framework-card-media {
  margin: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.framework-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transform: scale(1.015);
  filter: saturate(1.02) contrast(1.03);
  transition: transform 0.4s ease;
}

.framework-card:hover .framework-card-media img {
  transform: scale(1.04);
}

.framework-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 29, 46, 0.45);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.45);
}

.framework-card-body {
  position: relative;
  padding: var(--space-4);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.92), rgba(14, 14, 14, 0.98));
}

.framework-card-body h3 {
  margin: 0 0 var(--space-2);
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.framework-card-body p {
  margin: 0;
  color: #d7d7d7;
  font-size: 0.92rem;
  line-height: 1.5;
}

.why-join-layout {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.why-join-media {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  background: #101010;
}

.why-join-media img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.why-join {
  margin-top: 0;
}

.why-join-intro {
  margin-bottom: var(--space-5);
  color: #dfdfdf;
}

.why-join .bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-3);
}

.why-join .bullet-list li {
  position: relative;
  padding-left: 1.35rem;
  color: #efefef;
}

.why-join .bullet-list li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(225, 29, 46, 0.2);
}

.program-grid {
  display: grid;
  gap: var(--space-5);
}

.duration {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fbd8dc;
}

.featured {
  border-color: rgba(225, 29, 46, 0.7);
  box-shadow: 0 15px 45px rgba(225, 29, 46, 0.16);
}

.program-note {
  margin-top: var(--space-5);
  padding: var(--space-5);
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
}

.cycle-grid {
  display: grid;
  gap: var(--space-4);
  counter-reset: cycle;
}

.cycle-grid li {
  counter-increment: cycle;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "step step"
    "icon text";
  align-items: center;
  row-gap: 0.7rem;
  gap: var(--space-3);
  min-height: 118px;
  padding: 1rem;
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.cycle-grid li::before {
  content: "Step " counter(cycle);
  grid-area: step;
  justify-self: start;
  border-radius: 999px;
  padding: 0.22rem 0.62rem;
  background: linear-gradient(120deg, rgba(225, 29, 46, 0.85), rgba(225, 29, 46, 0.45));
  color: #fff;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 6px 18px rgba(225, 29, 46, 0.26);
}

.cycle-item-icon {
  grid-area: icon;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.cycle-item-icon img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

.cycle-item-text {
  grid-area: text;
  font-weight: 700;
  color: #f2f2f2;
  line-height: 1.35;
}

.gallery-groups {
  display: grid;
  gap: var(--space-6);
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.gallery-filter-btn {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  color: #f3f3f3;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.22s ease;
}

.gallery-filter-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.42);
}

.gallery-filter-btn.is-active {
  background: linear-gradient(135deg, rgba(225, 29, 46, 0.95), rgba(168, 16, 33, 0.94));
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
  box-shadow: 0 12px 24px rgba(225, 29, 46, 0.2);
}

.js .gallery-group.is-filtered-hidden {
  display: none;
}

.gallery-group h3 {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.gallery-group h3 .icon {
  color: var(--accent-soft);
}

.gallery-grid {
  display: grid;
  gap: var(--space-4);
}

.js .gallery-grid.is-collapsed .gallery-item:nth-child(n + 5) {
  display: none;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.lightbox-trigger {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0.45rem 0.88rem;
  background: rgba(15, 15, 15, 0.84);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.gallery-actions {
  margin-top: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 0.72rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.gallery-count {
  margin: 0;
  color: #dddddd;
  font-size: 0.88rem;
  font-weight: 600;
}

.gallery-toggle-btn {
  border: 1px solid rgba(225, 29, 46, 0.55);
  border-radius: 999px;
  padding: 0.46rem 0.95rem;
  background: linear-gradient(135deg, rgba(225, 29, 46, 0.88), rgba(170, 18, 34, 0.88));
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.gallery-toggle-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.gallery-toggle-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.82);
  outline-offset: 2px;
}

.contact-card h3 {
  margin-bottom: var(--space-5);
}

.contact-list {
  display: grid;
  gap: var(--space-4);
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  word-break: break-word;
}

.contact-icon-img {
  width: 1.2rem;
  height: 1.2rem;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.contact-list a {
  color: #f6f6f6;
}

.site-footer {
  padding: var(--space-10) 0 var(--space-6);
  border-top: 1px solid var(--border);
  background: #0d0d0d;
}

.footer-grid {
  display: grid;
  gap: var(--space-6);
}

.footer-grid h3 {
  font-size: 1rem;
}

.footer-grid ul {
  display: grid;
  gap: var(--space-2);
}

.footer-grid section:last-child li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-grid a {
  color: var(--muted);
}

.footer-grid a:hover {
  color: #fff;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: var(--space-6);
  margin-top: var(--space-6);
  border-top: 1px solid var(--border);
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1010;
  background: var(--ok);
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 12px 30px rgba(18, 183, 106, 0.3);
}

.floating-whatsapp img {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
  object-fit: contain;
}

.back-to-top {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(31, 31, 31, 0.92);
  color: #fff;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
  z-index: 1009;
  cursor: pointer;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
  z-index: 1200;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox figure {
  max-width: min(980px, 92vw);
  margin: 0;
}

.lightbox img {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.18);
  max-height: 78vh;
  width: 100%;
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 0.65rem;
  color: #ddd;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 720px) {
  .nav-shell {
    gap: var(--space-5);
    flex-wrap: nowrap;
  }

  .js .site-nav,
  .site-nav {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    padding: 0;
    background: transparent;
    width: auto;
    order: 0;
    margin-top: 0;
  }

  .site-nav ul {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin: 0;
  }

  .site-nav a {
    color: #efefef;
    font-size: 0.9rem;
  }

  .js .nav-toggle,
  .nav-mobile-cta {
    display: none;
  }

  .nav-desktop-cta {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: var(--space-8);
  }

  .about-grid,
  .trainer-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trainer-photo {
    min-height: 480px;
  }

  .trainer-photo img {
    min-height: 480px;
  }

  .framework-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-join-layout {
    grid-template-columns: 1fr 1.05fr;
    align-items: stretch;
  }

  .why-join-media {
    height: 100%;
  }

  .why-join-media img {
    height: 100%;
    aspect-ratio: auto;
  }

  .program-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cycle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-filter {
    justify-content: flex-end;
  }

  .gallery-actions {
    max-width: 390px;
    margin-left: auto;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .hero.section {
    min-height: 88vh;
    padding-top: calc(var(--space-16) + var(--header-stack-height) - var(--space-2));
    padding-bottom: var(--space-10);
  }

  .section {
    padding: 5.5rem 0;
  }

  .cycle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .floating-whatsapp {
    right: 1.5rem;
    bottom: 1.5rem;
  }

  .back-to-top {
    left: 1.5rem;
    bottom: 1.5rem;
  }
}
