/* =============================================
   FITLIFE — styles.css
   ============================================= */

:root {
  --gold: #C9A96E;
  --gold-light: #E8D5A3;
  --gold-dim: #8A6F42;
  --obsidian: #0A0A0B;
  --void: #050506;
  --smoke: #111113;
  --charcoal: #1A1A1D;
  --ash: #2A2A2E;
  --mist: #72727E;
  --silver: #AEAEC0;
  --platinum: #D0D0E0;
  --white: #F0EFE8;
  --cream: #E8E6DC;
  --accent: #C9A96E;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Barlow', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --transition: cubic-bezier(0.25, 0.1, 0.25, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --max-w: 1400px;
  --px: clamp(1.25rem, 4vw, 4rem);
}

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

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

body {
  background: var(--obsidian);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}

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

/* NOISE TEXTURE OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

/* SELECTION */
::selection { background: var(--gold); color: var(--void); }

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1200;
  height: 72px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.45s cubic-bezier(0.25,0.1,0.25,1), border-color 0.45s, box-shadow 0.45s;
}
.header:not(.scrolled) { background: transparent; }
.header.scrolled {
  background: rgba(10,10,11,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
  border-bottom-color: rgba(201,169,110,0.12);
}

.header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.logo {
  font-family: var(--font-condensed);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  position: relative;
  z-index: 1201;
}
.logo-mark {
  width: 28px; height: 28px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark::after {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  display: block;
}

/* ── Links desktop ── */
.nav { display: flex; align-items: center; gap: 2.5rem; }
.nav-link {
  font-family: var(--font-condensed);
  font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--platinum); text-decoration: none;
  position: relative; padding-bottom: 2px;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.25,0.1,0.25,1);
}
.nav-link:hover        { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.nav-link.active        { color: var(--white); }
.nav-link.active::after { width: 100%; }

/* ── Header right ── */
.header-right { display: flex; align-items: center; gap: 1.8rem; }

.nav-cta {
  font-family: var(--font-condensed);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  padding: 10px 24px; border: 1px solid var(--gold);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.nav-cta:hover { background: var(--gold); color: var(--void); transform: translateY(-1px); }

/* ── Hambúrguer 2 barras ── */
.menu-toggle {
  display: none;
  flex-direction: column; justify-content: center;
  gap: 6px; background: none; border: none;
  cursor: pointer; width: 32px; height: 32px; padding: 0;
  position: relative; z-index: 1201;
}
.burger-line {
  display: block; height: 1.5px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), width 0.4s cubic-bezier(0.23,1,0.32,1);
  transform-origin: center;
}
.burger-line:first-child { width: 100%; }
.burger-line:last-child  { width: 60%; align-self: flex-end; }
.menu-toggle.open .burger-line:first-child { transform: translateY(3.75px) rotate(45deg); width: 100%; }
.menu-toggle.open .burger-line:last-child  { transform: translateY(-3.75px) rotate(-45deg); width: 100%; }

/* =============================================
   DRAWER MOBILE FULLSCREEN
   ============================================= */
.drawer {
  position: fixed; inset: 0; z-index: 1100;
  background: var(--void);
  display: flex; flex-direction: column;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.55s cubic-bezier(0.25,0.1,0.25,1);
}
.drawer.open { pointer-events: all; clip-path: inset(0 0 0% 0); }

.drawer-inner {
  display: flex; flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: calc(72px + 3rem) 2.5rem 3rem;
}

.drawer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0; }

.drawer-link {
  display: flex; align-items: baseline; gap: 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 300;
  color: rgba(240,239,232,0.8);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(201,169,110,0.08);
  transition: color 0.3s, padding-left 0.3s;
  text-decoration: none;
}
.drawer-link em {
  font-style: normal; font-family: var(--font-condensed);
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); flex-shrink: 0;
}
.drawer-link:hover { color: var(--white); padding-left: 0.8rem; }

.drawer-footer { display: flex; flex-direction: column; gap: 0.75rem; }

.drawer-cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-condensed); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 0.9rem 2rem; align-self: flex-start;
  text-decoration: none; transition: background 0.3s, color 0.3s, transform 0.3s;
}
.drawer-cta:hover { background: var(--gold); color: var(--void); transform: translateY(-2px); }

.drawer-tagline {
  font-family: var(--font-condensed); font-size: 0.68rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--mist);
}

/* Trava scroll do body quando drawer está aberto */
body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  top: var(--scroll-y, 0);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
  animation: heroScale 12s ease-out forwards;
  filter: brightness(0.35) contrast(1.1);
}
@keyframes heroScale {
  from { transform: scale(1.1); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,11,0.2)  0%,
    rgba(10,10,11,0.0) 40%,
    rgba(10,10,11,0.7) 80%,
    rgba(10,10,11,1)  100%
  );
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2.5rem;
  padding-top: 72px;
  padding-bottom: 0;
  width: 100%;
  max-width: 860px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-tagline {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.4s var(--transition) forwards;
}
.hero-tagline::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s 0.6s var(--transition) forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.9s var(--transition) forwards;
  width: 100%;
}

.hero-desc {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: var(--platinum);
  font-weight: 300;
  line-height: 1.8;
  max-width: 620px;
  text-align: left;
  border-left: 1px solid var(--gold);
  padding-left: 1.5rem;
}

.hero-actions {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--gold);
  text-decoration: none;
  padding: 18px 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s, transform 0.2s var(--spring);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-ghost {
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--platinum);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(184,184,200,0.3);
  transition: color 0.3s, border-color 0.3s;
}
.btn-ghost:hover { color: var(--white); border-color: var(--white); }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  animation: fadeIn 1s 1.5s both;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =============================================
   STATS MARQUEE
   ============================================= */
.marquee-section {
  background: var(--void);
  border-top: 1px solid rgba(201,169,110,0.15);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  overflow: hidden;
  padding: 0;
}
.marquee-track {
  display: flex;
  animation: marquee 25s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 3rem;
  white-space: nowrap;
  border-right: 1px solid rgba(201,169,110,0.12);
}
.marquee-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.marquee-label {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
}
.marquee-sep {
  color: var(--gold);
  opacity: 0.3;
  font-size: 0.5rem;
  padding: 0 1rem;
}

/* =============================================
   SEÇÕES — padrão
   ============================================= */
.section {
  padding-block: clamp(5rem, 10vw, 10rem);
}

.eyebrow {
  font-family: var(--font-condensed);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--gold); }

/* =============================================
   ABOUT
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 8rem);
  align-items: center;
}

.about-visual { position: relative; }

.about-img-wrap {
  position: relative;
  overflow: hidden;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.8) contrast(1.05) grayscale(20%);
  transition: transform 0.8s var(--transition);
}
.about-img-wrap:hover .about-img-main { transform: scale(1.03); }

.about-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,10,11,0.95), transparent);
  padding: 3rem 2rem 2rem;
}

.about-img-float {
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  width: 55%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 3px solid var(--obsidian);
}
.about-img-float img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.75) contrast(1.1);
}

.about-award {
  position: absolute;
  top: 2rem;
  right: -2rem;
  background: var(--gold);
  color: var(--void);
  padding: 1.5rem;
  text-align: center;
  z-index: 2;
}
.about-award-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  display: block;
}
.about-award-label {
  font-family: var(--font-condensed);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

.about-content { padding-top: 2rem; }
.about-text {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: var(--platinum);
  line-height: 1.9;
  margin: 2rem 0;
  font-weight: 300;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2.5rem 0;
}
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.about-feat-icon {
  width: 20px; height: 20px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-feat-icon svg { width: 10px; height: 10px; stroke: var(--gold); fill: none; }
.about-feat-text {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08rem;
  color: var(--platinum);
  line-height: 1.5;
}

/* =============================================
   SERVICES
   ============================================= */
.services-section { background: var(--smoke); }

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}
.services-desc {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--silver);
  line-height: 1.8;
  align-self: end;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,169,110,0.1);
}

.service-card {
  background: var(--smoke);
  padding: clamp(1.75rem, 3vw, 3rem) clamp(1.5rem, 2.5vw, 2.5rem);
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.04), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover { background: var(--charcoal); }
.service-card:hover::before { opacity: 1; }

.service-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  color: rgba(201,169,110,0.1);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.4s;
}
.service-card:hover .service-num { color: rgba(201,169,110,0.25); }

.service-icon {
  width: 44px; height: 44px;
  margin-bottom: 1.5rem;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  transition: transform 0.4s var(--spring);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }

.service-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--white);
}
.service-desc {
  font-size: clamp(0.82rem, 0.95vw, 0.9rem);
  color: var(--silver);
  line-height: 1.8;
  font-weight: 300;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 2rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s, transform 0.3s;
}
.service-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }
.service-card:hover .service-link { opacity: 1; transform: translateX(0); }

/* =============================================
   TRAINERS CAROUSEL
   ============================================= */
.trainers-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
}

.carousel-arrows {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.carousel-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid var(--ash);
  background: transparent;
  color: var(--platinum);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s var(--transition), color 0.3s var(--transition), background 0.3s var(--transition);
}
.carousel-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.07);
}
.carousel-arrow:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}
.carousel-arrow svg { width: 20px; height: 20px; }

.trainers-carousel-wrap {
  overflow: hidden;
  position: relative;
}

.trainers-carousel {
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  display: flex;
  gap: 2px;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
  background: rgba(201,169,110,0.08);
}

.trainer-card {
  flex: 0 0 calc(25% - 1.5px);
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: grab;
}
.trainer-card:active { cursor: grabbing; }

.trainer-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.6) contrast(1.1) grayscale(30%);
  transition: filter 0.6s var(--transition), transform 0.8s var(--transition);
}
.trainer-card:hover .trainer-img {
  filter: brightness(0.5) contrast(1.1) grayscale(0%);
  transform: scale(1.04);
}

.trainer-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 2rem 2rem;
  background: linear-gradient(to top, rgba(10,10,11,0.95) 60%, transparent);
  cursor: grab;
  z-index: 10;
}

.trainer-role {
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.trainer-name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.trainer-cred {
  font-size: 0.78rem;
  color: var(--silver);
  font-weight: 300;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
}
.carousel-dot {
  width: 24px;
  height: 2px;
  background: var(--ash);
  border: none;
  cursor: pointer;
  transition: background 0.3s var(--transition), width 0.3s var(--transition);
  padding: 0;
}
.carousel-dot.active {
  background: var(--gold);
  width: 40px;
}

.trainer-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--gold-dim);
  border-radius: 3px;
  color: var(--gold);
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 100;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.trainer-ig svg { flex-shrink: 0; pointer-events: none; }
.trainer-ig:hover {
  color: var(--gold-light);
  border-color: var(--gold);
  background: rgba(201,169,110,0.1);
}

@media (max-width: 1024px) {
  .trainer-card { flex: 0 0 calc(33.333% - 1.5px); }
}
@media (max-width: 768px) {
  .trainers-header { flex-direction: column; align-items: flex-start; }
  .trainer-card { flex: 0 0 calc(50% - 1px); }
}
@media (max-width: 480px) {
  .trainer-card { flex: 0 0 100%; }
}

/* =============================================
   PRICING
   ============================================= */
.pricing-section { background: var(--void); }

.pricing-label {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--void);
  font-family: var(--font-condensed);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 16px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,169,110,0.1);
  margin-top: 5rem;
}

.pricing-card {
  background: var(--void);
  padding: clamp(2rem, 3.5vw, 3.5rem) clamp(1.5rem, 3vw, 3rem);
  position: relative;
  transition: background 0.3s;
}
.pricing-card.featured { background: var(--charcoal); }

.pricing-plan-label {
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--silver);
  display: block;
  margin-bottom: 0.5rem;
}
.pricing-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 300;
  margin-bottom: 2.5rem;
}
.pricing-name em { font-style: italic; color: var(--gold); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 0.5rem;
}
.pricing-cur {
  font-family: var(--font-condensed);
  font-size: 1rem;
  color: var(--silver);
  font-weight: 300;
}
.pricing-num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.pricing-period {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  color: var(--silver);
  letter-spacing: 0.1em;
}

.pricing-divider {
  width: 40px; height: 1px;
  background: rgba(201,169,110,0.3);
  margin: 2rem 0;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.pricing-feat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--platinum);
  font-weight: 300;
}
.pricing-feat.off { color: var(--mist); }
.pricing-feat svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; flex-shrink: 0; }
.pricing-feat.off svg { stroke: var(--mist); }

.btn-pricing {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px;
  transition: all 0.3s;
}
.btn-pricing-outline { border: 1px solid rgba(201,169,110,0.3); color: var(--gold); }
.btn-pricing-outline:hover { border-color: var(--gold); background: rgba(201,169,110,0.05); }
.btn-pricing-solid { background: var(--gold); color: var(--void); }
.btn-pricing-solid:hover { background: var(--gold-light); }

/* =============================================
   WORKOUT SIMULATOR
   ============================================= */
.sim-section { background: var(--smoke); overflow: hidden; }

.sim-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.sim-subtitle {
  color: var(--silver);
  font-weight: 300;
  max-width: 480px;
  margin: 1rem auto 0;
  line-height: 1.75;
  font-size: 0.9rem;
}

/* ── FORM CARD ── */
.sim-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--charcoal);
  border: 1px solid rgba(201,169,110,0.12);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
}
.sim-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Row 1 – quatro inputs lado a lado */
.sim-row-inputs {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}

/* Row 2 – objetivo + nível lado a lado */
.sim-row-selectors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
  margin-bottom: 0;
  align-items: start;
}

.sim-field { display: flex; flex-direction: column; }

.sim-label {
  font-family: var(--font-condensed);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.sim-input {
  background: var(--ash);
  border: 1px solid rgba(201,169,110,0.12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
  width: 100%;
}
.sim-input:focus { border-color: var(--gold); background: var(--mist); }
.sim-input::placeholder { color: var(--mist); }

/* Objetivos — 3 cards compactos horizontais */
.sim-goal-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0;
}
.sim-goal-opt input { display: none; }
.sim-goal-card {
  border: 1px solid rgba(201,169,110,0.15);
  padding: 0.75rem 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.2s var(--spring);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  background: var(--ash);
}
.sim-goal-card:hover { border-color: var(--gold-dim); transform: translateY(-1px); }
.sim-goal-opt input:checked + .sim-goal-card {
  border-color: var(--gold);
  background: rgba(201,169,110,0.08);
}
.sim-goal-card svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.sim-goal-title {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
}

/* Nível */
.sim-level-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0;
}
.sim-level-opt { display: flex; align-items: center; cursor: pointer; }
.sim-level-opt input { display: none; }
.sim-level-opt span {
  border: 1px solid rgba(201,169,110,0.15);
  padding: 9px 18px;
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  background: var(--ash);
  transition: all 0.2s;
  cursor: pointer;
  width: 100%;
}
.sim-level-opt input:checked + span {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.06);
}
.sim-level-opt:hover span { border-color: var(--gold-dim); color: var(--platinum); }

/* Botão gerar */
.sim-actions { margin-top: 1.75rem; text-align: center; }
.sim-btn-generate {
  background: var(--gold);
  color: var(--void);
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 44px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s, transform 0.2s var(--spring), box-shadow 0.3s;
}
.sim-btn-generate:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.25);
}
.sim-btn-generate svg { width: 16px; height: 16px; stroke: none; fill: var(--void); }
.sim-disclaimer { font-size: 0.68rem; color: var(--mist); margin-top: 0.75rem; font-weight: 300; letter-spacing: 0.05em; }
.sim-btn-generate.loading { opacity: 0.7; pointer-events: none; }
.sim-btn-generate.loading svg { animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── RESULT ── */
.sim-result { max-width: 960px; margin: 0 auto; }

/* Topbar: nome + botões numa linha */
.sim-result-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201,169,110,0.1);
  margin-bottom: 2rem;
}
.sim-result-identity { display: flex; flex-direction: column; gap: 0.4rem; }
.sim-result-badge {
  font-family: var(--font-condensed);
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.sim-result-name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 300;
  color: var(--white);
  margin: 0;
}
.sim-result-meta {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--silver);
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}
.sim-meta-chip { display: flex; align-items: center; gap: 5px; }
.sim-meta-chip::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold);
  display: block;
  flex-shrink: 0;
}
.sim-bmi {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,169,110,0.06);
  border: 1px solid rgba(201,169,110,0.15);
  padding: 4px 10px;
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}
.sim-bmi-val { color: var(--gold); font-weight: 600; }

/* Botões do topo do resultado */
.sim-result-actions-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.sim-btn-pdf {
  background: transparent;
  border: 1px solid rgba(201,169,110,0.4);
  color: var(--gold);
  font-family: var(--font-condensed);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 11px 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.3s;
  white-space: nowrap;
}
.sim-btn-pdf:hover { border-color: var(--gold); background: rgba(201,169,110,0.06); transform: translateY(-1px); }
.sim-btn-pdf svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; }

.sim-btn-whatsapp {
  background: #25D366;
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 11px 20px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.3s;
  font-weight: 600;
  white-space: nowrap;
}
.sim-btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(37,211,102,0.25); }
.sim-btn-whatsapp svg { width: 14px; height: 14px; stroke: #fff; fill: none; }

.sim-btn-reset {
  background: transparent;
  border: none;
  color: var(--silver);
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 4px 0;
  transition: color 0.3s;
  white-space: nowrap;
}
.sim-btn-reset:hover { color: var(--gold); }

/* Grid de dias */
.sim-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: rgba(201,169,110,0.08);
  margin-bottom: 2rem;
}
.sim-day {
  background: var(--charcoal);
  padding: 1.25rem 0.875rem;
  transition: background 0.3s;
}
.sim-day:hover { background: var(--ash); }
.sim-day-name {
  font-family: var(--font-condensed);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.sim-day-type {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.sim-day.rest .sim-day-type { color: var(--silver); font-style: italic; font-weight: 300; }
.sim-day-exercises {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sim-day-exercises li {
  font-size: 0.68rem;
  color: var(--silver);
  font-weight: 300;
  padding-left: 9px;
  position: relative;
  line-height: 1.45;
}
.sim-day-exercises li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
}

/* Dicas */
.sim-result-tips {
  background: var(--charcoal);
  border: 1px solid rgba(201,169,110,0.1);
  border-left: 2px solid var(--gold);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}
.sim-tips-title {
  font-family: var(--font-condensed);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.sim-tips-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 2rem;
}
.sim-tips-list li {
  font-size: 0.82rem;
  color: var(--platinum);
  font-weight: 300;
  padding-left: 14px;
  position: relative;
  line-height: 1.55;
}
.sim-tips-list li::before { content: '◆'; position: absolute; left: 0; color: var(--gold); font-size: 0.38rem; top: 6px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav                    { display: none; }
  .header-right .nav-cta  { display: none; }
  .menu-toggle            { display: flex; }
  .sim-row-inputs { grid-template-columns: 1fr 1fr; }
  .sim-row-selectors { grid-template-columns: 1fr; }
  .sim-level-group { flex-direction: row; flex-wrap: wrap; }
  .sim-level-opt span { width: auto; }
  .sim-week { grid-template-columns: repeat(4, 1fr); }
  .sim-week .sim-day:last-child:nth-child(odd) { grid-column: span 2; }
  .sim-tips-list { grid-template-columns: 1fr; }
  .sim-result-topbar { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .sim-row-inputs { grid-template-columns: 1fr 1fr; }
  .sim-goal-group { grid-template-columns: 1fr; }
  .sim-week { grid-template-columns: 1fr 1fr; }
  .sim-result-actions-top { flex-direction: column; align-items: stretch; }
  .sim-btn-pdf, .sim-btn-whatsapp { justify-content: center; }
}

/* =============================================
   GALLERY
   ============================================= */
.gallery-section {
  background: var(--void);
  padding-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
  background: rgba(201,169,110,0.06);
  margin-top: 4rem;
}

.gallery-item { position: relative; overflow: hidden; }
.gallery-item:first-child { grid-row: 1 / 3; max-height: 650px; }

.gallery-item img {
  width: 100%; height: 100%;
  min-height: 220px;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.1) grayscale(20%);
  transition: filter 0.5s, transform 0.6s var(--transition);
}
.gallery-item:first-child img { min-height: 280px; }
.gallery-item:hover img { filter: brightness(0.55) contrast(1.1) grayscale(0%); transform: scale(1.03); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-overlay svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* =============================================
   CONTACT / MAP
   ============================================= */
.contact-section { background: var(--charcoal); }

.map-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2.5rem;
  align-items: stretch;
  min-height: 520px;
}

.map-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.map-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--charcoal);
  border: 1px solid var(--ash);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.3s var(--transition), background 0.3s var(--transition);
}
.map-card:hover {
  border-color: var(--gold-dim);
  background: var(--smoke);
}

.map-card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--gold-dim);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.map-card-icon svg { width: 18px; height: 18px; }

.map-card-label {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.map-card-value {
  font-size: 0.9rem;
  color: var(--platinum);
  font-weight: 300;
  line-height: 1.6;
}

.map-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: auto;
  padding: 1rem 1.5rem;
  background: var(--gold);
  color: var(--void);
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.3s var(--transition), transform 0.2s var(--spring);
}
.map-cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.map-cta-btn svg { width: 16px; height: 16px; }

.map-embed-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--ash);
}

.map-embed-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
}

.map-embed-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-embed-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--obsidian);
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 900px) {
  .map-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .map-embed-frame { min-height: 360px; }
}
@media (max-width: 480px) {
  .map-embed-frame { min-height: 280px; }
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--void);
  border-top: 1px solid rgba(201,169,110,0.1);
  padding-block: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 3vw, 3rem);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}
.footer-tagline {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.8;
  margin-top: 1.5rem;
  font-weight: 300;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 1rem; margin-top: 2rem; }
.footer-social {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}
.footer-social:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }

.footer-col h4 {
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a {
  font-size: 0.85rem;
  color: var(--silver);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--silver);
  font-weight: 300;
  margin-bottom: 0.75rem;
}
.footer-contact-item svg { width: 12px; height: 12px; stroke: var(--gold); fill: none; flex-shrink: 0; margin-top: 4px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,169,110,0.08);
}
.footer-copy {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--mist);
}
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a {
  font-size: 0.72rem;
  color: var(--mist);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--silver); }

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  border: 1px solid rgba(201,169,110,0.3);
  background: var(--void);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, border-color 0.3s, background 0.3s;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { border-color: var(--gold); background: rgba(201,169,110,0.1); }
.back-to-top svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--transition), transform 0.9s var(--transition);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--transition), transform 0.9s var(--transition);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1280px) {
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-top > div:first-child { grid-column: 1 / -1; }
  .footer-tagline { max-width: 100%; }
}

@media (max-width: 1024px) {
  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-top          { grid-template-columns: 1fr 1fr; }
  .footer-top > div:first-child { grid-column: 1 / -1; }
  .about-img-float     { right: -1.5rem; bottom: -1.5rem; }
  .about-award         { right: -1rem; }
  .hero-title          { font-size: clamp(4rem, 5.5vw, 4.5rem); }
}

@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
}

@media (max-width: 768px) {
  body { cursor: auto; }

  /* Header — esconde nav desktop */
  .nav { display: none; }

  /* Mostra o toggle */
  .menu-toggle { display: flex; }

  /* HERO mobile — compacto e minimalista */
  .hero {
    max-height: 100vh;
  }

  .hero-media img {
    object-position: center 30%;
  }

  .hero .container {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    text-align: center;
    padding-top: calc(72px + 1rem);
    padding-bottom: 3rem;
    gap: 1.25rem;
    min-height: 0;
    align-content: center;
  }

  .hero-left  { align-items: center; width: 100%; }
  .hero-tagline { justify-content: center; margin-bottom: 0.75rem; }
  .hero-tagline::before { display: none; }
  .hero-title {
    font-size: clamp(2rem, 9vw, 3rem);
    text-align: center;
    line-height: 0.95;
  }
  .hero-right {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    width: 100%;
  }
  .hero-desc {
    border-left: none;
    border-top: 1px solid var(--gold);
    padding-left: 0;
    padding-top: 1rem;
    max-width: 100%;
    text-align: center;
    font-size: 0.88rem;
  }
  .hero-actions { justify-content: center; }

  /* Scroll indicator desnecessário no mobile */
  .hero-scroll { display: none; }

  .about-grid         { grid-template-columns: 1fr; }
  .about-img-float    { display: none; }
  .about-award        { right: 1rem; }
  .about-img-main     { aspect-ratio: 16/9; }
  .about-visual       { margin-bottom: 1rem; }
  .about-award        { display: none; }

  .services-header    { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
  .services-grid      { grid-template-columns: 1fr; }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
    max-height: 420px;
  }
  .gallery-item:first-child img { min-height: 220px; }

  .footer-top         { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top > div:first-child { grid-column: auto; }
  .footer-bottom      { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero .container {
    padding-bottom: 2rem;
  }
  .hero-title         { font-size: clamp(2.9rem, 7.5vw, 2.2rem); }
  .hero-desc          { font-size: 0.88rem; }
  .hero-actions       { flex-direction: column; align-items: center; width: 100%; }
  .btn-primary        { width: 100%; justify-content: center; }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
    max-height: 320px;
  }
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3) { aspect-ratio: 1 / 1; }
  .gallery-item:nth-child(4) { grid-column: 1 / 3; }
  .gallery-item:nth-child(5) { display: none; }
  .gallery-item img { min-height: 160px; }
  .gallery-item:first-child img { min-height: 150px; }

  .footer-legal { flex-direction: column; gap: 0.75rem; align-items: center; }
}