:root {
  --bg: #181211;
  --panel: #201816;
  --panel-2: #1b1412;
  --stroke: rgba(255, 255, 255, .10);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, .72);

  --accent: #E27014;
  --accent-2: #F08B2B;

  --shadow: 0 16px 40px rgba(0, 0, 0, .45);

  --radius: 18px;
  --radius-sm: 14px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Lexend", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.center {
  text-align: center;
}

.mt-24 {
  margin-top: 24px;
}

.accent {
  color: var(--accent);
}

.muted {
  color: var(--muted);
}

.kicker {
  margin: 0 0 8px;
  font-weight: 500;
  color: rgba(255, 255, 255, .55);
}


.topbar {
  position: relative;
  z-index: 50;
  background: #1a1312;
  border-bottom: none;
}

.topbar-inner {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}


.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
}

.brand-logo {
  height: 125px;
  width: auto;
  display: block;
}


.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
}

.nav a {
  padding: 10px 6px;
  transition: .2s ease;
}

.nav a:hover {
  color: #fff;
}


.nav-toggle {
  display: none;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 1px solid #181211;
  background: #181211;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hamburger rect {
  fill: rgba(255, 255, 255, .92);
}

.hamburger .line {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform .22s ease, opacity .18s ease;
}


body.menu-open .hamburger .line1 {
  transform: translateY(25px) rotate(45deg);
}

body.menu-open .hamburger .line2 {
  opacity: 0;
  transform: scaleX(.4);
}

body.menu-open .hamburger .line3 {
  transform: translateY(-25px) rotate(-45deg);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 12px 18px;
  font-weight: 800;
  letter-spacing: .3px;
  transition: .2s ease;
  cursor: pointer;
  user-select: none;
  transform: none;
}

.btn-nav {
  padding: 10px 16px;
  border-radius: 18px;
  background: #E27014;
  border: 2px solid #E27014;
  color: #fff;
  font-weight: 800;
  letter-spacing: .2px;
  transition: .2s ease;
}

.btn-nav:hover {
  background: #F08B2B;
  border-color: #F08B2B;
  transform: translateY(-1px);
}


.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .62);
  display: none;
  z-index: 9999;
}

.mobile-overlay.is-open {
  display: block;
}

.mobile-drawer {
  position: fixed;
  inset: 0;

  width: 100%;
  height: 100dvh;


  background: #171110;
  border-radius: 0;

  border: none;

  box-shadow: none;


  padding: 18px 18px 22px;
  transform: translateX(24px);
  opacity: 0;

  transition: transform .32s cubic-bezier(.2, .9, .2, 1), opacity .22s ease;
  will-change: transform, opacity;
}

.mobile-overlay.is-open .mobile-drawer {
  transform: translateX(0);
  opacity: 1;
}


.mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.mobile-logo {
  width: 120px;
  height: auto;
  display: block;
}

.mobile-close {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  border: 1px solid #181211;
  background: #181211;
  display: flex;

  align-items: center;

  justify-content: center;

  padding: 0;

  cursor: pointer;
  padding-bottom: 30px;
}

.mobile-close:active {
  transform: scale(.96);
}

.mobile-close img {
  width: 34px;

  height: 34px;
  display: block;
}


.mobile-links {
  margin-top: 8px;
}

.mobile-link {
  display: block;
  padding: 18px 6px;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: .2px;

  border-bottom: 2px solid rgba(255, 255, 255, .86);
}


.mobile-social {
  margin-top: 20px;
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
}

.mobile-social-link {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-social-link img {
  width: 58px;
  height: 58px;
  display: block;
}

body.menu-open .back-to-top {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px) scale(.9);
}


body.menu-open {
  overflow: hidden;
}


.hero {
  background: #1a1312;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: 26px 0 40px;
}

.hero-card {
  position: relative;
  height: 440px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .45);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.096), rgba(0, 0, 0, 0.11)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.068), rgba(0, 0, 0, 0.363)),
    url("https://cdn.cosmicjs.com/7e50ebb0-0a06-11f1-b0f3-dddf716010df-mult_photos.jpg");
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.05);
  transform: scale(1.02);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 22px;
  z-index: 2;
}

.hero-title {
  margin: 0;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 1px;
  font-size: 62px;
}

.hero-title span {
  display: block;
  color: var(--accent);
  margin-top: 8px;
}

.hero-subtitle {
  margin-top: 10px;
  font-weight: 700;
  font-size: 18px;
  color: rgba(255, 255, 255, .92);
}

.hero-text {
  margin: 14px auto 22px;
  max-width: 720px;
  color: rgba(255, 255, 255, .80);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
}

.btn-hero {
  padding: 18px 46px;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  box-shadow: 0 14px 26px rgba(226, 112, 20, .18);
}


.section {
  padding: 54px 0;
}

.section-tight {
  padding: 40px 0 50px;
}

.section-dark {
  background: radial-gradient(1200px 500px at 50% 0%, rgba(226, 112, 20, .10), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, .02), transparent);
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-head {
  margin-bottom: 22px;
}

.section-head.center {
  text-align: center;
}

.h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.sub {
  margin: 10px auto 0;
  max-width: 760px;
  color: rgba(255, 255, 255, .64);
  line-height: 1.55;
  font-weight: 400;
}

.h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.accent-dot {
  color: var(--accent);
  margin-right: 8px;
}


.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: -34px;
}

.stat-card {
  background-color: #271D1C;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 5px;
  padding: 26px 26px 22px;
  box-shadow: var(--shadow);
}

.stat-kicker {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 10px;
}

.stat-title {
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
}

.stat-desc {
  margin: 0;
  font-size: 15px;
  color: #fff;
  line-height: 1.35;
}


.mestre {
  padding-top: 70px;
}

.mestre-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  grid-template-rows: auto auto;

  gap: 48px;
  align-items: start;
}


.mestre-photo {
  grid-column: 1;
  grid-row: 1 / span 2;

  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 0.5px solid var(--accent);
  box-shadow: 0 0px 40px rgba(223, 109, 16, 0.45);

  height: 100%;
}


.mestre-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.mestre-content {
  grid-column: 2;
  grid-row: 1;
}


.mestre-more {
  grid-column: 2;
  grid-row: 2;

  margin-top: 12px;
  display: flex;
  justify-content: flex-start;
}


.mestre-kicker {
  display: block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 8px;
}


.mestre-p {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
  font-weight: 500;
}


.mestre-title {
  margin: 0 0 18px;
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}


.social-icon {
  display: flex;
  align-items: center;
}

.social-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: .25s ease;
}

.social-icon img:hover {
  transform: scale(1.15);
  filter: brightness(1.2);
}


.backgroud-white {
  color: #fff;
}



.cta-philosophy {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 14px 24px;
  border-radius: 999px;

  background: linear-gradient(180deg, #E27014, #d85f08);
  color: #fff;
  text-decoration: none;

  font-weight: 800;
  font-size: 16px;
  letter-spacing: .2px;

  box-shadow: 0 12px 26px rgba(226, 112, 20, .28);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.cta-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .22s ease;
}

.cta-philosophy:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(226, 112, 20, .38);
  filter: brightness(1.02);
}

.cta-philosophy:hover .cta-icon svg {
  transform: translateX(4px);
}

.cta-philosophy:active {
  transform: translateY(1px);
  box-shadow: 0 8px 18px rgba(226, 112, 20, .26);
}



.treinos {
  --text: #F4EFE9;
  --muted: rgba(255, 255, 255, .72);
  --accent: #E27014;
  --accent-2: #F08B2B;

  padding: 72px 0 86px;
  color: var(--text);
  background: transparent;

}

.treinos-wrapper {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.treinos-head {
  text-align: center;
  margin-bottom: 36px;
}

.treinos-title {
  margin: 0 0 1px;
  font-size: clamp(28px, 3.5vw, 34px);
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.treinos-title span {
  color: var(--accent);
}


.treinos-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 26px;
  align-items: stretch;
}


.treinos-card {
  background: #1C1514;
  border: 1.5px solid #E27014;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  height: 520px;

}

.treinos-card--active {
  box-shadow:
    0 0 0 1px rgba(226, 112, 20, .22),
    0 18px 52px rgba(0, 0, 0, .65),
    0 0 46px rgba(226, 112, 20, .18);
}


.treinos-media {
  background: #0b0707;
}

.treinos-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}


.treinos-body {
  padding: 22px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}


.treinos-top {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 12px;
}

.treinos-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.treinos-card-title {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}


.treinos-text {
  margin: 0;
  color: #fff;
  font-size: 157x;
  line-height: 1.55;

  display: -webkit-box;
  -webkit-line-clamp: 4;

  -webkit-box-orient: vertical;
  overflow: hidden;

  margin-bottom: 18px;
}


.treinos-btn {
  margin-top: auto;
  height: 48px;
  width: 100%;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-weight: 900;
  font-size: 14px;

  color: #E27014;
  border: 1px solid rgba(226, 112, 20, .35);
  background: transparent;
}



.beneficios {
  --text: #F4EFE9;
  --muted: rgba(255, 255, 255, .72);
  --accent: #E27014;

  padding: 86px 0 88px;
  color: var(--text);

  background:
    radial-gradient(900px 520px at 50% -10%, rgba(226, 112, 20, .14), transparent 62%),
    radial-gradient(900px 520px at 50% 120%, rgba(226, 112, 20, .10), transparent 65%),
    linear-gradient(180deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .55)),
    transparent;
}

.beneficios-wrapper {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.beneficios-head {
  text-align: center;
  margin-bottom: 44px;
}

.beneficios-title {
  margin: 0 0 12px;
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.beneficios-title span {
  color: var(--accent);
}

.beneficios-subtitle {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: #fff;
}


.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.beneficio-card {
  border-radius: 10px;
  padding: 26px 26px 28px;

  background: rgba(28, 21, 20, .72);
  border: 1px solid rgba(255, 255, 255, .07);

  box-shadow: 0 14px 40px rgba(0, 0, 0, .35);
}


.beneficio-iconbox {
  width: 55px;
  height: 55px;
  border-radius: 8px;
  background: rgba(226, 112, 20, .14);
  border: 1px solid rgba(226, 112, 20, .18);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;
}

.beneficio-icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
  display: block;
}

.beneficio-icon-mind {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.beneficio-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.beneficio-text {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
}




.horarios {
  color: #ffffff;
  padding: 20px 20px 10px;
}

.horarios-wrap {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.horarios-header {
  margin-bottom: 28px;
}

.horarios-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.horarios-title span {
  color: #E27014;
}



.horarios-card {
  margin: 28px auto 34px;
}

.horarios-card-title {
  margin-bottom: 14px;
  font-size: 21px;
  font-weight: 800;
}

.horarios-card-media {
  width: min(640px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 18px 50px rgba(255, 255, 255, 0.171));
}

.horarios-card-media img {
  width: 100%;
  display: block;
  border-radius: 6px;
}



.horarios-card-address {
  margin-top: 14px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .2px;
}


.horarios-card+.horarios-card {
  margin-top: 40px;
}



.testimonials {
  background: #181211;
  color: #F4EFE9;
  padding: 56px 20px 72px;
}

.testimonials__container {
  max-width: 1120px;
  margin: 0 auto;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 26px;
}

.testimonials__title {
  margin: 0;
  font-size: clamp(28px, 4.3vw, 46px);
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.05;
}

.testimonials__title span {
  color: #E27014;
}


.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 46px;
  align-items: start;
  justify-items: stretch;
}


.testimonial-card {
  position: relative;
  background: rgba(38, 28, 26, .96);
  border-radius: 18px;
  padding: 22px 22px 22px 22px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .55);
  overflow: hidden;
}


.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 4px solid #E27014;
  border-bottom: 4px solid #E27014;
  border-bottom-left-radius: 18px;
  border-top-left-radius: 18px;
  border-bottom-right-radius: 18px;
  pointer-events: none;
  opacity: .95;
}


.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(800px 260px at 20% 0%, rgba(255, 255, 255, .06), transparent 55%);
  pointer-events: none;
}

.testimonial-card__stars {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
}

.testimonial-card__stars img {
  width: 28px;
  height: 28px;
  display: block;
}

.testimonial-card__text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
  color: #F4EFE9;
}

.testimonial-card__text_3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
  color: #F4EFE9;
  padding-bottom: 20px;
}


.testimonial-card--center {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(560px, 100%);
}



.history {
  padding: 56px 18px;
  background: #181211;
  color: #f4efe9;
}

.history-container {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.history-header {
  text-align: center;
  margin-bottom: 34px;
}

.history-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  font-size: 16px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #e27014;

  margin-bottom: 12px;
}

.history-eyebrow::before,
.history-eyebrow::after {
  content: "";
  width: 78px;

  height: 3px;

  background: #e27014;
  border-radius: 99px;

  opacity: .95;
}

.history-title {
  margin: 12px 0 10px;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.history-title-accent {
  color: #e27014;
}

.history-subtitle {
  margin: 0 auto;
  max-width: 820px;
  font-size: 16px;
  line-height: 1.55;
  color: #fff;
}


.history-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 28px;
}


.history-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(32, 24, 22, .55);
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .55);
  min-height: 210px;
}

.history-media {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 10 / 10;
}

.history-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: contrast(1.02) saturate(1.02);
  transform: scale(1.02);
}


.history-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, .28) 0%,
      rgba(0, 0, 0, .10) 35%,
      rgba(0, 0, 0, .78) 100%);
  z-index: 1;
}

.history-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 20px;
  z-index: 2;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: rgba(244, 239, 233, .92);
  text-shadow: 0 2px 10px rgba(0, 0, 0, .65);
}



.history-cta {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.history-button {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 38px;
  border-radius: 999px;
  background: #e27014;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(226, 112, 20, .22);
  transition: transform .15s ease, filter .15s ease;
}

.history-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.history-button:active {
  transform: translateY(0px);
}

.history-button-icon {
  display: inline-flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  line-height: 1;
}



.final-cta {
  padding: 0px 18px;
  background: #181211;
  display: flex;
  justify-content: center;
}

.final-cta-box {
  width: min(1120px, 100%);
  background: #e27014;
  border-radius: 28px;

  padding: 90px 40px;
  text-align: center;
  position: relative;


  box-shadow:
    0 40px 90px rgba(0, 0, 0, .65),
    inset 0 0 0 1px rgba(255, 255, 255, .06);
}

.final-cta-title {
  margin: 0 0 26px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.05;
  font-weight: 900;
  color: #fff;
  letter-spacing: .02em;
  text-transform: uppercase;


  text-shadow:
    0 2px 0 rgba(0, 0, 0, .25),
    0 6px 18px rgba(0, 0, 0, .35);
}

.final-cta-title span {
  display: block;
}

.final-cta-subtitle {
  font-size: clamp(18px, 2vw, 26px);
  color: rgba(255, 255, 255, .95);
  margin: 0 auto 48px;
  max-width: 720px;
  line-height: 1.45;
}

.final-cta-button {
  display: inline-block;
  background: #e9e9e9;
  color: #d45f0d;

  padding: 20px 46px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;

  border-radius: 14px;


  box-shadow:
    0 8px 0 rgba(0, 0, 0, .18),
    0 16px 32px rgba(0, 0, 0, .35);

  transition: .18s ease;
}

.final-cta-button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 10px 0 rgba(0, 0, 0, .18),
    0 22px 38px rgba(0, 0, 0, .40);
}

.final-cta-button:active {
  transform: translateY(2px);
  box-shadow:
    0 3px 0 rgba(0, 0, 0, .18),
    0 8px 18px rgba(0, 0, 0, .28);
}





.site-footer {
  background: #181211;
  padding: 60px 20px 40px;
  margin-top: 0px;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
}


.footer-nav {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  transition: .25s ease;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #E27014;
  transition: .25s ease;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-nav a:hover::after {
  width: 100%;
}


.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, .12);
  margin: 30px 0 25px;
}


.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: #fff;
  font-size: 14px;
}



.footer-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-socials a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-socials img {
  width: 40px;
  height: 40px;
  display: block;
  transition: .22s ease;
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}


.footer-socials a:hover img {
  transform: translateY(-3px) scale(1.05);
  filter: drop-shadow(0 8px 18px rgba(226, 112, 20, .35));
}



.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 999;
}

.back-to-top img {
  width: 60px;
  height: 60px;
  display: block;
  transition: .22s ease;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .55));
}

.back-to-top:hover img {
  transform: translateY(-5px) scale(1.06);
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, .75));
}



html {
  scroll-behavior: smooth;
}

.mestre-photo-mobile {
  display: none;
}

.mestre-text--mobile {
  display: none;
}

.mestre-text--desktop {
  display: block;
}


@media (max-width: 980px) {

  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .topbar-inner {
    height: 96px;
  }

  .brand-logo {
    height: 78px;
  }


  .container {
    width: min(var(--container), calc(100% - 32px));
  }


  .topbar-inner {
    height: 92px;
    gap: 14px;
  }

  .brand-logo {
    height: 64px;
  }


  .hero {
    padding: 18px 0 34px;
  }

  .hero-card {
    height: 380px;
  }

  .hero-title {
    font-size: 50px;
  }

  .hero-text {
    font-size: 16px;
    max-width: 640px;
  }

  .btn-hero {
    padding: 16px 38px;
  }


  .stats {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .stat-card {
    padding: 22px 22px 20px;
  }


  .mestre {
    padding-top: 56px;
  }

  .mestre-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mestre-photo {
    max-width: 420px;
    margin: 0 auto;
  }

  .mestre-content p {
    font-size: 18px;
  }


  .treinos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .treinos-card {
    height: auto;

    min-height: 520px;

  }


  .beneficios-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }


  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .testimonial-card--center {
    width: 100%;
  }


  .history-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .history-media {
    aspect-ratio: 16 / 11;
  }


  .final-cta {
    padding: 70px 18px;
  }

  .final-cta-box {
    padding: 70px 28px;
    border-radius: 22px;
  }

  .final-cta-subtitle {
    margin-bottom: 36px;
  }


  .footer-nav {
    gap: 28px;
  }

  .back-to-top {
    right: 18px;
    bottom: 18px;
  }

  .back-to-top img {
    width: 54px;
    height: 54px;
  }
}


@media (max-width: 640px) {

  .container {
    width: calc(100% - 28px);
  }


  .topbar-inner {
    height: 110px;
  }

  .brand-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    display: block;
  }


  .nav {
    gap: 12px;
    font-size: 14px;
  }

  .nav a {
    padding: 8px 4px;
  }

  .hero-bg {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.027), rgba(0, 0, 0, .15)),
      linear-gradient(180deg, rgba(0, 0, 0, .10), rgba(0, 0, 0, .65)),
      url("https://cdn.cosmicjs.com/883e8c30-1137-11f1-a8a1-3dfa5489cf7c-Group-55-1.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }


  .hero-card {
    height: 420px;

  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 40px;
    letter-spacing: 0.6.px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-text {
    font-size: 14px;
    margin: 12px auto 18px;
    color: #fff;
  }

  .btn-hero {
    width: 100%;
    max-width: 260px;
    padding: 16px 0;
  }


  .section {
    padding: 44px 0;
  }


  .stat-title {
    font-size: 24px;
  }


  .mestre-title {
    font-size: 28px;
    gap: 10px;
  }

  .mestre-content p {
    font-size: 16px;
  }


  .treinos {
    padding: 56px 0 70px;
  }

  .treinos-wrapper {
    width: calc(100% - 28px);
  }

  .treinos-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .treinos-media img {
    height: 220px;
  }


  .beneficios {
    padding: 64px 0 70px;
  }

  .beneficios-wrapper {
    width: calc(100% - 28px);
  }

  .beneficios-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .beneficio-card {
    padding: 22px 20px 24px;
  }


  .horarios {
    padding: 10px 16px 10px;
  }

  .horarios-card-title {
    font-size: 18px;
  }

  .horarios-card-address {
    font-size: 15px;
  }


  .testimonials {
    padding: 48px 16px 60px;
  }

  .testimonial-card {
    padding: 18px;
    border-radius: 16px;
  }

  .testimonial-card::before,
  .testimonial-card::after {
    border-bottom-left-radius: 16px;
    border-top-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }


  .history {
    padding: 56px 16px;
  }

  .history-eyebrow::before,
  .history-eyebrow::after {
    width: 44px;
    height: 3px;
  }

  .history-caption {
    font-size: 14px;
    bottom: 16px;
  }

  .history-button {
    width: 100%;
    justify-content: center;
    padding: 16px 18px;
  }


  .final-cta {
    padding: 56px 16px;
  }

  .final-cta-box {
    padding: 54px 18px;
    border-radius: 18px;
  }

  .final-cta-button {
    width: 100%;
    max-width: 360px;
    padding: 18px 0;
    font-size: 18px;
  }


  .site-footer {
    padding: 46px 16px 34px;
  }

  .footer-nav {
    gap: 18px;
    margin-bottom: 26px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }


  .footer-socials {
    gap: 6px;
  }


  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
  }

  .back-to-top img {
    width: 50px;
    height: 50px;
  }



  .mestre-photo {
    display: none;
  }


  .mestre-photo-mobile {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 14px 0px;

    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--accent);
    box-shadow: 0 0 26px rgba(223, 109, 16, .45);
  }

  .mestre-photo-mobile img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }


  .mestre-text--desktop {
    display: none;
  }

  .mestre-text--mobile {
    display: block;
  }


  .mestre-p {
    font-size: 15.5px;
    line-height: 1.65;
    margin: 0 0 12px;
  }

  .beneficios-subtitle {
    font-size: 13.5px;
  }

  .testimonial-card__text {

    font-size: 12px;
    line-height: 1.45;
    color: #fff;
  }

  .testimonial-card__text_3 {

    font-size: 12px;
    line-height: 1.45;
    color: #fff;

  }

  .history-button {
    padding: 14px 20px;

    font-size: 14px;

    letter-spacing: .02em;
    width: 100%;
    max-width: 280px;

    margin: 20px auto 0;
    justify-content: center;
  }

  .history {
    padding: 56px 18px;
  }

  .final-cta {
    padding: 0px 14px;
  }

  .final-cta-box {
    padding: 48px 18px;
    border-radius: 18px;
  }

  .final-cta-title {
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 18px;
  }

  .final-cta-subtitle {
    font-size: 15px;
    margin-bottom: 26px;
  }

  .final-cta-button {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    display: flex;
    justify-content: center;

    padding: 16px 0;
    font-size: 16px;
    border-radius: 12px;

    box-shadow:
      0 6px 0 rgba(0, 0, 0, .18),
      0 12px 24px rgba(0, 0, 0, .35);
  }
  .site-footer .footer-nav a{
    color:#fff;
  }


  .footer-nav a {

    text-decoration: none;
    font-size: 15px;
    transition: .25s ease;
    position: relative;
  }

}


.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .9, .2, 1);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up,
  .reveal-up.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
