/* ========== RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #2c2c2c;
  background-color: #faf8f4;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

:root {
  --green-deep: #2a4a1e;
  --green-mid: #3d6b2e;
  --green-light: #5a8a47;
  --green-pale: #e8f0e4;
  --sand: #e8dcc8;
  --sand-light: #f2ece0;
  --cream: #faf8f4;
  --terracotta: #c4704b;
  --terracotta-dark: #a85a3a;
  --stone: #6b6560;
  --stone-light: #9a948e;
  --charcoal: #2c2c2c;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.09), 0 4px 12px rgba(0,0,0,0.04);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

nav.scrolled {
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  transition: padding var(--transition);
}

nav.scrolled .nav-inner {
  padding: 14px 0;
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--green-deep);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--stone);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--green-deep);
}

.lang-switch {
  padding: 4px 10px !important;
  border: 1px solid rgba(42, 74, 30, 0.2) !important;
  border-radius: 4px !important;
  font-size: 0.8rem !important;
}

.lang-switch:hover {
  background: rgba(42, 74, 30, 0.05) !important;
}

.nav-cta {
  background: var(--green-deep);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--green-mid) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(90, 138, 71, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(232, 220, 200, 0.5) 0%, transparent 70%);
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-shape-1 {
  width: 500px;
  height: 500px;
  top: -120px;
  right: -100px;
  background: radial-gradient(circle, rgba(90, 138, 71, 0.06) 0%, transparent 70%);
}

.hero-shape-2 {
  width: 300px;
  height: 300px;
  bottom: 40px;
  left: -80px;
  background: radial-gradient(circle, rgba(196, 112, 75, 0.06) 0%, transparent 70%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-cards {
  position: relative;
  z-index: 1;
  height: 420px;
}

.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 300px;
}

.hero-float-card:hover {
  transform: translateY(-4px) !important;
}

.hero-float-card-1 {
  top: 0;
  right: 0;
  transform: rotate(-2deg);
}

.hero-float-card-2 {
  top: 150px;
  right: 60px;
  transform: rotate(1.5deg);
  z-index: 2;
}

.hero-float-card-3 {
  top: 300px;
  right: 10px;
  transform: rotate(-1deg);
}

.hero-float-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-float-icon-green {
  background: var(--green-pale);
  color: var(--green-mid);
}

.hero-float-icon-terracotta {
  background: #fae8df;
  color: var(--terracotta);
}

.hero-float-icon-sand {
  background: var(--sand-light);
  color: var(--stone);
}

.hero-float-text h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: var(--green-deep);
  font-weight: 400;
  margin-bottom: 4px;
}

.hero-float-text p {
  font-size: 0.82rem;
  color: var(--stone-light);
  line-height: 1.5;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  color: var(--green-mid);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero-badge svg {
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.12;
  color: var(--green-deep);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  font-weight: 400;
}

.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--stone);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--green-deep);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 74, 30, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--green-deep);
  border: 1.5px solid rgba(42, 74, 30, 0.2);
}

.btn-secondary:hover {
  border-color: var(--green-deep);
  background: rgba(42, 74, 30, 0.04);
  transform: translateY(-2px);
}

.hero-proof {
  margin-top: 56px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.proof-number {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: var(--green-deep);
  line-height: 1.2;
}

.proof-label {
  font-size: 0.8rem;
  color: var(--stone-light);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

section {
  padding: 100px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-mid);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--green-mid);
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--green-deep);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-weight: 400;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--stone);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

.services {
  background: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 380px));
  justify-content: center;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}

.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.service-card:nth-child(1)::before {
  background: linear-gradient(90deg, var(--green-light), var(--green-mid));
}

.service-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--terracotta), var(--terracotta-dark));
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-card:nth-child(1) .service-icon {
  background: var(--green-pale);
  color: var(--green-mid);
}

.service-card:nth-child(2) .service-icon {
  background: #fae8df;
  color: var(--terracotta);
}

.service-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--green-deep);
  margin-bottom: 8px;
  font-weight: 400;
}

.service-audience {
  font-size: 0.85rem;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.5;
}

.service-features li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--green-light);
}

.service-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  margin-top: auto;
  transition: all var(--transition);
}

.service-card:nth-child(1) .service-cta {
  background: rgba(42, 74, 30, 0.08);
  color: var(--green-deep);
}

.service-card:nth-child(1) .service-cta:hover {
  background: var(--green-deep);
  color: var(--white);
}

.service-card:nth-child(2) .service-cta {
  background: rgba(196, 112, 75, 0.1);
  color: var(--terracotta-dark);
}

.service-card:nth-child(2) .service-cta:hover {
  background: var(--terracotta);
  color: var(--white);
}

.fitness-section {
  background: var(--sand-light);
}

.fitness-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.fitness-visual {
  display: flex;
  justify-content: center;
}

.fitness-bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 12px;
  width: 100%;
  max-width: 360px;
}

.fitness-bento-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.fitness-bento-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.bento-large {
  grid-row: span 2;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: var(--green-deep);
  color: var(--white);
}

.bento-large .bento-icon {
  color: rgba(255,255,255,0.8);
  margin-bottom: auto;
}

.bento-large .bento-label {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.bento-large .bento-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

.bento-small {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bento-small .bento-icon {
  color: var(--stone-light);
}

.bento-small .bento-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
}

.bento-wide {
  grid-column: span 2;
  background: var(--terracotta);
  color: var(--white);
}

.bento-content-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bento-wide .bento-icon {
  color: rgba(255,255,255,0.8);
  flex-shrink: 0;
}

.bento-wide .bento-label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
}

.bento-wide .bento-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}

.fitness-intro,
.bjj-intro {
  font-size: 1.05rem;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 28px;
}

.fitness-intro strong,
.bjj-intro strong {
  color: var(--charcoal);
}

.fitness-features,
.bjj-features {
  list-style: none;
  margin-bottom: 32px;
}

.fitness-features li,
.bjj-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}

.fitness-features li svg {
  flex-shrink: 0;
  color: var(--green-light);
}

.bjj-features li svg {
  flex-shrink: 0;
  color: var(--terracotta);
}

.fitness-features li span,
.bjj-features li span {
  font-size: 0.95rem;
  color: var(--stone);
}

.bjj-section {
  background: var(--white);
}

.bjj-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.bjj-visual {
  display: flex;
  justify-content: center;
}

.bjj-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  max-width: 320px;
}

.bjj-bento-item {
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: transform var(--transition);
}

.bjj-bento-item:hover {
  transform: translateY(-2px);
}

.bjj-bento-label {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.bjj-bento-sub {
  font-size: 0.8rem;
  opacity: 0.7;
}

.bjj-bento-main {
  background: var(--terracotta);
  color: var(--white);
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bjj-bento-main .bjj-bento-label {
  font-size: 1.5rem;
}

.bjj-bento-nogi {
  background: var(--charcoal);
  color: var(--white);
}

.bjj-bento-defense {
  background: var(--green-deep);
  color: var(--white);
}

.bjj-bento-exp {
  background: var(--sand);
  color: var(--charcoal);
  grid-column: span 2;
  text-align: center;
  padding: 20px;
}

.bjj-bento-number {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--green-deep);
  line-height: 1;
}

.bjj-bento-exp .bjj-bento-sub {
  color: var(--stone);
  opacity: 1;
}

.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.about-image-area {
  position: relative;
}

.about-image-placeholder {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--green-pale) 0%, var(--sand-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--stone-light);
  overflow: hidden;
  position: relative;
}

.about-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.credential-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
}

.credential-float-2 {
  top: 32px;
  right: -20px;
}

.credential-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.credential-dot-terracotta { background: var(--terracotta); }

.about-text h2 {
  margin-bottom: 28px;
}

.about-body p {
  color: var(--stone);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-body strong {
  color: var(--charcoal);
  font-weight: 500;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--charcoal);
  font-weight: 500;
}

.value-item svg {
  flex-shrink: 0;
  color: var(--green-light);
}

.gallery {
  background: var(--white);
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.04);
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.how-it-works {
  background: var(--white);
}

.how-header {
  text-align: center;
  margin-bottom: 64px;
}

.how-header .section-subtitle {
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 1.5px;
  background: linear-gradient(90deg, var(--sand), var(--green-pale), var(--sand));
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  background: var(--cream);
  color: var(--green-deep);
  position: relative;
  z-index: 1;
  border: 2px solid var(--green-pale);
}

.step h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--green-deep);
  margin-bottom: 10px;
  font-weight: 400;
}

.step p {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

.trust {
  background: var(--green-deep);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

.trust-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.4;
  max-width: 680px;
  margin: 0 auto 32px;
  font-weight: 400;
  opacity: 0.95;
}

.trust-subtext {
  font-size: 0.95rem;
  opacity: 0.7;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.trust-divider {
  width: 48px;
  height: 2px;
  background: var(--terracotta);
  margin: 0 auto 32px;
  border-radius: 2px;
}

.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-text .section-title {
  margin-bottom: 20px;
}

.contact-intro {
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--charcoal);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.contact-method:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-icon {
  background: #e8f5e3;
  color: #25d366;
}

.contact-method-text {
  display: flex;
  flex-direction: column;
}

.contact-method-label {
  font-size: 0.78rem;
  color: var(--stone-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-method-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.contact-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--green-deep);
  margin-bottom: 12px;
  font-weight: 400;
}

.contact-card p {
  font-size: 0.92rem;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 28px;
}

.contact-card .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

.contact-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--stone-light);
}

footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.6);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 0.8rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  z-index: 99;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

@media (max-width: 1024px) {
  .hero .container,
  .fitness-grid,
  .bjj-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-cards {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .fitness-visual,
  .bjj-visual {
    order: -1;
  }

  .fitness-bento {
    max-width: 340px;
    margin: 0 auto;
  }

  .about-image-area {
    max-width: 400px;
    margin: 0 auto;
  }

  .contact-grid {
    gap: 40px;
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 200;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .nav-cta {
    font-size: 1rem !important;
    padding: 14px 32px;
  }

  .nav-toggle {
    display: flex;
    z-index: 201;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    min-height: auto;
    padding: 140px 0 72px;
  }

  .hero-proof,
  .footer-inner {
    gap: 28px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps-grid::before {
    display: none;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .credential-float {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item-large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .service-card,
  .contact-card {
    padding: 32px 24px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-large {
    grid-column: span 1;
  }
}
