/* ═══════════════════════════════════════
   M10 FITNESS — style.css
   Edite as variáveis abaixo para
   mudar toda a identidade visual
═══════════════════════════════════════ */

/* ── TOKENS / VARIÁVEIS ── */
:root {
  /* Cores principais — mude aqui para alterar o tema inteiro */
  --color-bg: #05070a;
  --color-dark: #0b0e14;
  --color-card: #10141c;
  --color-card2: #141920;
  --color-border: rgba(57, 255, 106, 0.12);
  --color-border-blue: rgba(30, 144, 255, 0.14);

  --color-green: #39ff6a; /* cor de destaque principal */
  --color-green-dark: #00c84a;
  --color-blue: #1e90ff; /* cor de destaque secundária */
  --color-blue-light: #4dabff;

  --color-text: #f0f4ff;
  --color-muted: #7a8499;

  /* Tipografia */
  --font-display: "Oswald", sans-serif;
  --font-body: "Open Sans", sans-serif;

  /* Espaçamentos */
  --section-padding: 96px 0;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
section {
  padding: var(--section-padding);
}

/* ── UTILITÁRIOS ── */
.text-green {
  color: var(--color-green);
}
.text-blue {
  color: var(--color-blue-light);
}
.text-muted {
  color: var(--color-muted);
}
.text-center {
  text-align: center;
}

/* gradient text */
.grad-text {
  background: linear-gradient(
    90deg,
    var(--color-green),
    var(--color-blue-light)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SEÇÃO LABEL ── */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 12px;
}
.sec-label::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: var(--color-green);
}
.sec-label.center {
  justify-content: center;
  width: 100%;
}
.sec-label.center::before {
  display: none;
}
.sec-label.center::after {
  content: "";
  width: 24px;
  height: 1.5px;
  background: var(--color-green);
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.sec-sub {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 520px;
}

/* ── FONT AWESOME — tamanhos por contexto ── */
.nav-social a i {
  font-size: 1rem;
}
.soc-ico i {
  font-size: 1.5rem;
}
.loc-ico i {
  font-size: 1.1rem;
}
.foot-social a i {
  font-size: 1rem;
}
.fab i {
  font-size: 1.7rem;
}
.btn i {
  font-size: 1rem;
}

/* Cor das redes nos cards soc-ico */
.soc-wpp .soc-ico i {
  color: #25d366;
}
.soc-ig .soc-ico i {
  color: #e1306c;
}
.soc-fb .soc-ico i {
  color: #1877f2;
}
.soc-gm .soc-ico i {
  color: #ea4335;
}

/* Cor nos ícones do nav-social e footer ao hover (herda do :hover do pai) */
.nav-social a:hover i {
  color: var(--color-green);
}
.foot-social a:hover i {
  color: var(--color-green);
}

/* ── FONT AWESOME — tamanhos por contexto ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    background 0.15s;
}
.btn:hover {
  transform: translateY(-2px);
}

.btn-green {
  background: var(--color-green);
  color: var(--color-bg);
  box-shadow: 0 0 24px rgba(57, 255, 106, 0.35);
}
.btn-green:hover {
  background: var(--color-green-dark);
  box-shadow: 0 4px 28px rgba(57, 255, 106, 0.5);
}

.btn-blue {
  background: var(--color-blue);
  color: #fff;
  box-shadow: 0 0 20px rgba(30, 144, 255, 0.3);
}
.btn-blue:hover {
  background: var(--color-blue-light);
  box-shadow: 0 4px 28px rgba(30, 144, 255, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid rgba(240, 244, 255, 0.35);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(240, 244, 255, 0.6);
}

/* ═══════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
header.scrolled {
  background: rgba(5, 7, 10, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--color-border);
}

nav {
  display: flex;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.logo-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-green), var(--color-blue));
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-bg);
  box-shadow: 0 0 18px rgba(57, 255, 106, 0.35);
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.logo-text span {
  color: var(--color-green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(240, 244, 255, 0.55);
  padding: 8px 16px;
  border-radius: 6px;
  transition:
    color 0.2s,
    background 0.2s;
}
.nav-links a:hover {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.06);
}
.nav-links .nav-cta {
  margin-left: 8px;
  background: var(--color-green);
  color: var(--color-bg) !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  padding: 9px 20px !important;
  box-shadow: 0 0 20px rgba(57, 255, 106, 0.3) !important;
}
.nav-links .nav-cta:hover {
  background: var(--color-green-dark) !important;
  box-shadow: 0 0 28px rgba(57, 255, 106, 0.5) !important;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
}
.nav-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.nav-social a:hover {
  background: rgba(57, 255, 106, 0.15);
  border-color: var(--color-green);
}

.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 16px;
}
.ham span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-text);
  transition: 0.3s;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1800&q=")
    center / cover no-repeat;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 7, 10, 0.72) 0%,
    rgba(5, 7, 10, 0.6) 50%,
    rgba(5, 7, 10, 0.92) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 24px;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: rgba(240, 244, 255, 0.72);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-weight: 300;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 244, 255, 0.35);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(57, 255, 106, 0.5), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%,
  100% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ═══════════════════════════════════════
   PILARES (3 filosofias)
═══════════════════════════════════════ */
.pillars {
  background: var(--color-dark);
}
.pillars-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.pillars-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.pillar {
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--color-card);
  border: 1px solid var(--color-border);
  transition:
    border-color 0.25s,
    transform 0.2s;
}
.pillar:hover {
  border-color: var(--color-green);
  transform: translateX(6px);
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-green);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  text-shadow: 0 0 20px rgba(57, 255, 106, 0.4);
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: var(--color-text);
}
.pillar-desc {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.75;
}
.pillars-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}
.pillars-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}
.pillars-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

/* ═══════════════════════════════════════
   SERVIÇOS / MODALIDADES
═══════════════════════════════════════ */
.services {
  background: var(--color-bg);
}
.srv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.srv-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.srv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(57, 255, 106, 0.3);
}
.srv-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.srv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  filter: brightness(0.75) saturate(1.1);
}
.srv-card:hover .srv-img img {
  transform: scale(1.06);
}
.srv-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 7, 10, 0.85) 0%, transparent 55%);
}
.srv-ico {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-size: 2rem;
}
.srv-body {
  padding: 24px;
}
.srv-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  color: var(--color-text);
}
.srv-desc {
  font-size: 0.84rem;
  color: var(--color-muted);
  line-height: 1.8;
}
.srv-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-green);
  border: 1px solid rgba(57, 255, 106, 0.3);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ═══════════════════════════════════════
   COUNTERS
═══════════════════════════════════════ */
.counters {
  background: linear-gradient(135deg, var(--color-dark) 0%, #0d111a 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 72px 0;
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.counter-item {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid var(--color-border);
  transition: background 0.2s;
}
.counter-item:last-child {
  border-right: none;
}
.counter-item:hover {
  background: rgba(57, 255, 106, 0.04);
}
.counter-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--color-green),
    var(--color-blue-light)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.counter-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* ═══════════════════════════════════════
   SOBRE
═══════════════════════════════════════ */
.about {
  background: var(--color-dark);
}
.about-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 180px;
  gap: 10px;
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(1.1);
}
.about-img:nth-child(1) {
  grid-row: span 2;
}
.about-text .sec-sub {
  margin-bottom: 16px;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(57, 255, 106, 0.08);
  border: 1px solid rgba(57, 255, 106, 0.2);
  border-radius: 100px;
  padding: 8px 18px;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-green);
}
.about-badge::before {
  content: "✓";
  font-size: 0.7rem;
}

/* ═══════════════════════════════════════
   PLANOS
═══════════════════════════════════════ */
.plans {
  background: var(--color-bg);
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.plan-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.plan-card.featured {
  background: linear-gradient(160deg, #0d1520 0%, #0a1525 100%);
  border-color: var(--color-blue);
  box-shadow: 0 0 40px rgba(30, 144, 255, 0.15);
}
.plan-card.featured:hover {
  box-shadow: 0 24px 60px rgba(30, 144, 255, 0.25);
}
.plan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-green);
  color: var(--color-bg);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 16px;
}
.plan-price {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 4px;
}
.plan-price .currency {
  font-size: 1.5rem;
  vertical-align: top;
  margin-top: 0.4rem;
  display: inline-block;
  color: var(--color-green);
  margin-right: 10px;
}
.plan-period {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 32px;
}
.plan-divider {
  height: 1px;
  background: var(--color-border);
  margin-bottom: 28px;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(240, 244, 255, 0.75);
}
.plan-features li::before {
  content: "✓";
  color: var(--color-green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
}
.plan-cta:hover {
  transform: translateY(-2px);
}
.cta-green {
  background: var(--color-green);
  color: var(--color-bg);
  box-shadow: 0 0 20px rgba(57, 255, 106, 0.3);
}
.cta-green:hover {
  background: var(--color-green-dark);
  box-shadow: 0 4px 24px rgba(57, 255, 106, 0.5);
}
.cta-blue {
  background: var(--color-blue);
  color: #fff;
  box-shadow: 0 0 20px rgba(30, 144, 255, 0.3);
}
.cta-blue:hover {
  background: var(--color-blue-light);
  box-shadow: 0 4px 24px rgba(30, 144, 255, 0.5);
}
.plan-promo {
  margin-top: 16px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(240, 244, 255, 0.35);
}

/* ═══════════════════════════════════════
   EQUIPE
═══════════════════════════════════════ */
.team {
  background: var(--color-dark);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.team-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
  text-align: center;
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(57, 255, 106, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.team-photo {
  height: 260px;
  overflow: hidden;
  position: relative;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: brightness(0.8) saturate(0.95);
  transition:
    filter 0.3s,
    transform 0.4s;
}
.team-card:hover .team-photo img {
  filter: brightness(0.92) saturate(1.1);
  transform: scale(1.04);
}
.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 7, 10, 0.8) 0%, transparent 60%);
}
.team-body {
  padding: 20px 18px;
}
.team-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.78rem;
  color: var(--color-green);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════
   GALERIA
═══════════════════════════════════════ */
.gallery {
  background: var(--color-bg);
}
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 220px;
  gap: 8px;
}
.gal-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.4s,
    filter 0.4s;
  filter: brightness(0.75) saturate(1.1);
}
.gal-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.9) saturate(1.25);
}
.gal-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 7, 10, 0.5) 0%, transparent 50%);
  pointer-events: none;
}
.gal-item:nth-child(1) {
  grid-column: span 2;
}
.gal-item:nth-child(6) {
  grid-column: span 2;
}
.gal-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 0 solid var(--color-green);
  border-radius: var(--radius);
  z-index: 1;
  transition: border-width 0.25s;
  pointer-events: none;
}
.gal-item:hover::before {
  border-width: 2px;
}
.gal-label {
  position: absolute;
  bottom: 12px;
  left: 14px;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-green);
}

/* ═══════════════════════════════════════
   MAPA / LOCALIZAÇÃO
═══════════════════════════════════════ */
.location {
  background: var(--color-dark);
}
.loc-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.loc-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.loc-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  align-items: center;
  transition: border-color 0.2s;
}
.loc-card:hover {
  border-color: rgba(57, 255, 106, 0.3);
}
.loc-ico {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(57, 255, 106, 0.08);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  border: 1px solid rgba(57, 255, 106, 0.15);
}
.loc-key {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 4px;
}
.loc-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.6;
}
.map-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  border: 1px solid var(--color-border);
  box-shadow: 0 0 40px rgba(57, 255, 106, 0.08);
}
.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(88%) hue-rotate(180deg) brightness(0.88) saturate(1.35);
}

/* ═══════════════════════════════════════
   REDES SOCIAIS
═══════════════════════════════════════ */
.social {
  background: var(--color-bg);
}
.soc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.soc-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.soc-card:hover {
  transform: translateY(-4px);
}
.soc-ico {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}
.soc-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.soc-card small {
  font-size: 0.78rem;
  color: var(--color-muted);
}

.soc-wpp:hover {
  border-color: #25d366;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.18);
}
.soc-wpp .soc-ico {
  background: rgba(37, 211, 102, 0.1);
}
.soc-ig:hover {
  border-color: #e1306c;
  box-shadow: 0 8px 28px rgba(225, 48, 108, 0.18);
}
.soc-ig .soc-ico {
  background: rgba(225, 48, 108, 0.1);
}
.soc-fb:hover {
  border-color: var(--color-blue);
  box-shadow: 0 8px 28px rgba(30, 144, 255, 0.18);
}
.soc-fb .soc-ico {
  background: rgba(30, 144, 255, 0.1);
}
.soc-gm:hover {
  border-color: #ea4335;
  box-shadow: 0 8px 28px rgba(234, 67, 53, 0.18);
}
.soc-gm .soc-ico {
  background: rgba(234, 67, 53, 0.1);
}

/* ═══════════════════════════════════════
   CTA BAND
═══════════════════════════════════════ */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 88px 32px;
  text-align: center;
  background: var(--color-dark);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1549060279-7e168fcee0c2?w=1400&q=75")
    center / cover no-repeat;
  opacity: 0.18;
}
.cta-band-content {
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}
.cta-band p {
  color: var(--color-muted);
  margin-bottom: 36px;
  font-size: 1rem;
}
.cta-band .hero-btns {
  justify-content: center;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: #020408;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 56px 32px 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  max-width: 1160px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.foot-brand .logo-text {
  font-size: 1.5rem;
  margin-bottom: 16px;
  display: block;
}
.foot-brand p {
  font-size: 0.84rem;
  color: var(--color-muted);
  line-height: 1.85;
  max-width: 320px;
}
.foot-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.foot-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.foot-social a:hover {
  background: rgba(57, 255, 106, 0.12);
  border-color: var(--color-green);
}
.foot-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 20px;
}
.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-col ul li a {
  font-size: 0.84rem;
  color: var(--color-muted);
  transition: color 0.2s;
}
.foot-col ul li a:hover {
  color: var(--color-green);
}
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.2);
}
.footer-bottom strong {
  color: var(--color-green);
}

/* ═══════════════════════════════════════
   FAB WHATSAPP
═══════════════════════════════════════ */
.fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}
.fab-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.65);
    opacity: 0;
  }
}

/* ═══════════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVO
═══════════════════════════════════════ */
@media (max-width: 960px) {
  .pillars-wrap,
  .about-wrap,
  .loc-wrap {
    grid-template-columns: 1fr;
  }
  .pillars-img {
    aspect-ratio: 16/9;
  }
  .about-imgs {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
  }
  .about-img:nth-child(1) {
    grid-row: span 1;
  }
  .counter-grid {
    grid-template-columns: 1fr 1fr;
  }
  .counter-item:nth-child(2) {
    border-right: none;
  }
  .counter-item:nth-child(3) {
    border-top: 1px solid var(--color-border);
  }
  .gal-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gal-item {
    height: 200px;
  }
  .gal-item:nth-child(1),
  .gal-item:nth-child(6) {
    grid-column: span 1;
  }
  .map-box {
    height: 300px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .foot-brand {
    grid-column: span 2;
  }
}

/* ── NAV QUEBRA: ativa hamburger a partir de 1023px ──
   Esse é o breakpoint exato onde os links não cabem mais.
   Se o seu logo ou links mudarem de tamanho, ajuste
   esse valor (ex: 1100px, 900px, etc.) ── */
@media (max-width: 1026px) {
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5, 7, 10, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    padding: 12px 0 20px;
    gap: 2px;
    /* sombra para separar do conteúdo */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  }
  .nav-links.open li a {
    padding: 13px 32px;
    border-radius: 0;
    font-size: 0.85rem;
  }
  /* CTA no menu mobile: destaque em bloco */
  .nav-links.open .nav-cta {
    margin: 8px 24px 0;
    border-radius: 8px !important;
    text-align: center;
    justify-content: center;
  }
  .ham {
    display: flex;
  }
  /* Ícones sociais somem — ficam no menu mobile */
  .nav-social {
    display: none;
  }
}

/* ── CELULAR: ajustes adicionais abaixo de 640px ── */
@media (max-width: 640px) {
  section {
    padding: 72px 0;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  .counter-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gal-grid {
    grid-template-columns: 1fr;
  }
  .gal-item {
    height: 220px;
    grid-column: span 1 !important;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .foot-brand {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
