/* ── RESET & VARIABLES ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --surface2: #1a1a1a;
  --accent: #c8a96e;
  --accent2: #e8c98e;
  --text: #f0ece4;
  --muted: #888880;
  --border: rgba(200,169,110,0.18);
  --white: #ffffff;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 4rem;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
}

.nav-logo-old {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--accent); }

.nav-cta {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg) !important;
  background: var(--accent);
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.25s, transform 0.2s;
}
.nav-cta:hover { background: var(--accent2); transform: translateY(-1px); }

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background: url('images/backpose.jpg') right center / cover no-repeat;
  filter: grayscale(15%) contrast(1.05) brightness(0.7);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(10,10,10,1) 0%, rgba(10,10,10,0.85) 40%, rgba(10,10,10,0.2) 75%, rgba(10,10,10,0) 100%),
    linear-gradient(to bottom, rgba(10,10,10,0) 50%, rgba(10,10,10,1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 4rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 10vw, 9rem);
  font-weight: 400;
  line-height: 0.9;
  color: var(--white);
}

.hero-sub {
  font-size: 1rem;
  color: rgba(240,236,228,0.7);
  font-weight: 300;
  letter-spacing: 0.01em;
  max-width: 420px;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 1.5rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s;
  z-index: 2;
}
.hero-scroll:hover { color: var(--accent); }

.hero-scroll-line {
  width: 40px;
  height: 0.5px;
  background: var(--muted);
}

.side-tag {
  position: absolute;
  left: 1.5rem;
  bottom: 40%;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  z-index: 2;
}

/* ── SECTIONS COMMON ── */
section { padding: 7rem 4rem; }

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 2rem;
}

/* ── SOBRE ── */
#sobre {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.sobre-text p {
  color: rgba(240,236,228,0.72);
  font-size: 1.02rem;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.sobre-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.feature-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.sobre-image { position: relative; }

.sobre-image-inner {
  width: 100%;
  aspect-ratio: 3/4;
  background: url('images/Manoel.jpeg') center top / cover no-repeat;
  filter: grayscale(20%) contrast(1.05);
  border-radius: 2px;
}

.sobre-image-frame {
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 0.5px solid var(--border);
  border-radius: 2px;
  pointer-events: none;
}

.sobre-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--surface2);
  border: 0.5px solid var(--border);
  padding: 1.2rem 1.5rem;
  border-radius: 2px;
}

.badge-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
}

.badge-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── ESPECIALIDADES ── */
#especialidades {
  background: var(--surface);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.esp-header { margin-bottom: 3.5rem; }

.esp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 0.5px solid var(--border);
}

.esp-card {
  background: var(--surface);
  padding: 2.5rem;
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.esp-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.35s ease;
}

.esp-card:hover::before { width: 100%; }
.esp-card:hover { background: var(--surface2); }

.esp-link {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.6;
  transition: opacity 0.3s, letter-spacing 0.3s;
}

.esp-card:hover .esp-link {
  opacity: 1;
  letter-spacing: 0.2em;
}

.esp-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(200,169,110,0.12);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.esp-card:hover .esp-number { color: rgba(200,169,110,0.3); }

.esp-title {
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.esp-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.esp-tags {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.esp-tag {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(200,169,110,0.08);
  border: 0.5px solid rgba(200,169,110,0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 1px;
}

/* ── PROCESSO ── */
#processo { position: relative; }

.processo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3.5rem;
}

.processo-step {
  padding: 2rem 2rem 2rem 0;
  border-right: 0.5px solid var(--border);
  position: relative;
}

.processo-step:last-child { border-right: none; padding-right: 0; }
.processo-step:not(:first-child) { padding-left: 2rem; }

.processo-index {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(200,169,110,0.08);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}

.processo-step:hover .processo-index { color: rgba(200,169,110,0.2); }

.processo-name {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.processo-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── CTA ── */
#contato {
  background: var(--surface);
  border-top: 0.5px solid var(--border);
  text-align: center;
  padding: 8rem 4rem;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.cta-title span { color: var(--accent); }

.cta-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 3rem;
  font-weight: 300;
}

.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 1rem 3rem;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s, letter-spacing 0.25s;
}

.cta-btn:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  letter-spacing: 0.16em;
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* ── FOOTER ── */
footer {
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 0.5px solid var(--border);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

/* ── TICKER ── */
.ticker-wrap {
  overflow: hidden;
  background: var(--accent);
  padding: 0.65rem 0;
  white-space: nowrap;
  border-top: 0.5px solid rgba(200,169,110,0.4);
}

.ticker-inner {
  display: inline-flex;
  animation: ticker 22s linear infinite;
}

.ticker-inner span {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  font-weight: 500;
  padding: 0 3rem;
}

.ticker-sep {
  color: rgba(10,10,10,0.4) !important;
  padding: 0 !important;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(4px);
}

.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 2px;
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 3rem;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--accent); }

.modal-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.modal-divider {
  height: 0.5px;
  background: var(--border);
  margin-bottom: 1.5rem;
}

.modal-section-title {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.modal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.modal-list li {
  font-size: 0.92rem;
  color: rgba(240,236,228,0.7);
  padding-left: 1rem;
  position: relative;
}

.modal-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.7rem;
  top: 0.2em;
}

.modal-body-text {
  font-size: 0.95rem;
  color: rgba(240,236,228,0.65);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ── HERO EXTRAS ── */
.hero-desc {
  font-size: 0.88rem;
  color: rgba(240,236,228,0.55);
  font-weight: 300;
  max-width: 480px;
  margin-top: -0.25rem;
}

.hero-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.25rem;
}

.hero-checklist li {
  font-size: 0.82rem;
  color: rgba(240,236,228,0.7);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 300;
}

.hero-checklist li::before {
  content: '✓';
  color: var(--accent);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
}
.hero-btn-primary:hover { background: var(--accent2); transform: translateY(-1px); }

.hero-btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  border: 0.5px solid var(--accent);
  transition: background 0.25s, transform 0.2s;
}
.hero-btn-secondary:hover { background: rgba(200,169,110,0.1); transform: translateY(-1px); }

/* ── SOBRE EXTRAS ── */
.sobre-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.sobre-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.sobre-list li {
  font-size: 0.9rem;
  color: rgba(240,236,228,0.75);
  font-weight: 300;
  padding-left: 1rem;
  position: relative;
}

.sobre-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ── NUTRIÇÃO ESPORTIVA DESTAQUE ── */
#nutricao-esportiva {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.esportiva-photo {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  min-width: 0;
}

.esportiva-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/pose.jpg') 50% 5% / cover no-repeat;
  filter: grayscale(10%) contrast(1.08) brightness(0.78);
  z-index: 0;
}

.esportiva-badge-comp {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(10,10,10,0.88);
  z-index: 1;
  border: 0.5px solid var(--border);
  border-left: 2px solid var(--accent);
  backdrop-filter: blur(8px);
  padding: 0.85rem 1.25rem;
  border-radius: 2px;
}

.esportiva-badge-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.esportiva-badge-sub {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.2rem;
}

.esportiva-content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
  border-left: 0.5px solid var(--border);
  min-width: 0;
}

.esportiva-texto {
  font-size: 0.97rem;
  color: rgba(240,236,228,0.7);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.esportiva-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  margin: 2rem 0;
}

.esportiva-item {
  padding: 1.4rem;
  background: var(--surface2);
  transition: background 0.3s;
}

.esportiva-item:hover { background: #1f1f1f; }

.esportiva-item-title {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.esportiva-item-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

.esportiva-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1.5rem 0 2rem;
}

.esportiva-lista li {
  font-size: 0.92rem;
  color: rgba(240,236,228,0.75);
  font-weight: 300;
  padding-left: 1.25rem;
  position: relative;
}

.esportiva-lista li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.7rem;
  top: 0.25em;
}

.esportiva-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
  align-self: flex-start;
}
.esportiva-cta:hover { background: var(--accent2); transform: translateY(-1px); }

@media (max-width: 900px) {
  #nutricao-esportiva { grid-template-columns: 1fr; }
  .esportiva-photo { min-height: 420px; }
  .esportiva-photo::before { background-position: 50% 40%; }
  .esportiva-content { padding: 3rem 1.5rem; border-left: none; border-top: 0.5px solid var(--border); }
  .esportiva-grid { grid-template-columns: 1fr; }
}

/* ── DIFERENCIAIS ── */
#diferenciais {
  background: var(--surface);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.dif-header { margin-bottom: 3.5rem; }

.dif-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 5rem;
}

.dif-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.92rem;
  color: rgba(240,236,228,0.72);
  font-weight: 300;
  padding-bottom: 1.25rem;
  border-bottom: 0.5px solid var(--border);
}

.dif-check {
  color: var(--accent);
  font-size: 0.82rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* ── CTA EXTRAS ── */
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cta-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1rem 3rem;
  border-radius: 2px;
  border: 0.5px solid var(--accent);
  transition: background 0.25s, transform 0.2s;
}
.cta-btn-outline:hover { background: rgba(200,169,110,0.1); transform: translateY(-2px); }

/* ── NAV LOGO SVG ── */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo svg { display: block; }

/* ── PARA QUEM ── */
#para-quem {
  background: var(--surface);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.pq-header { margin-bottom: 3rem; }

.pq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
}

.pq-item {
  background: var(--surface2);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  font-size: 1rem;
  color: rgba(240,236,228,0.82);
  font-weight: 300;
  line-height: 1.5;
  transition: background 0.3s;
}

.pq-item:hover { background: #1f1f1f; }

.pq-mark {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  margin-top: -0.1rem;
}

/* Para quem CTA */
.pq-cta {
  margin-top: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.pq-cta-text {
  font-size: 1.05rem;
  color: rgba(240,236,228,0.75);
  font-weight: 300;
  max-width: 520px;
}

.pq-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.9rem 2.5rem;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
}
.pq-cta-btn:hover { background: var(--accent2); transform: translateY(-2px); }

/* Depoimento estrelas */
.depo-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
  .pq-grid { grid-template-columns: 1fr; }
  .pq-item { padding: 1.5rem; font-size: 0.92rem; }
  .pq-cta { margin-top: 2rem; }
  .pq-cta-text { font-size: 0.95rem; }
}

/* ── RESULTADOS REAIS ── */
#resultados {
  padding: 7rem 4rem;
  overflow: hidden;
}

.resultados-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.resultados-desc {
  color: rgba(240,236,228,0.65);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.accent-text { color: var(--accent); }

.resultados-counters {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.counter-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.counter-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--accent);
  line-height: 1;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  display: inline-block;
  min-width: 3ch;
}

.counter-suffix {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent);
  opacity: 0.7;
}

.counter-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Carousel nav */
.carousel-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border: 0.5px solid var(--border);
  background: none;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 2px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.carousel-btn:hover { color: var(--accent); border-color: var(--accent); background: rgba(200,169,110,0.06); }

.carousel-dots { display: flex; gap: 0.4rem; }
.carousel-dot {
  width: 20px;
  height: 2px;
  background: var(--border);
  border: none;
  cursor: pointer;
  border-radius: 1px;
  transition: background 0.3s, width 0.3s;
  padding: 0;
}
.carousel-dot.active { background: var(--accent); width: 32px; }

/* Carousel track */
.resultados-carousel-wrap {
  overflow: hidden;
  border: 0.5px solid var(--border);
  border-radius: 2px;
}

.resultados-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.77,0,0.175,1);
}

.resultado-card {
  min-width: 100%;
  background: var(--surface);
}

/* ── DEPOIMENTOS CAROUSEL ── */
.depo-card {
  display: flex !important;
  flex-direction: row;
  min-height: 520px;
}

.depo-photo {
  flex: 0 0 48%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: var(--surface2);
  filter: grayscale(8%) contrast(1.05);
}

.depo-content {
  flex: 1;
  padding: 3rem 2.5rem;
  background: var(--surface2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.depo-content::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 9rem;
  color: var(--accent);
  opacity: 0.1;
  line-height: 1;
  pointer-events: none;
}

.depo-text {
  font-size: 0.92rem;
  color: rgba(240,236,228,0.82);
  font-weight: 300;
  line-height: 1.85;
  font-style: italic;
}

.depo-autor {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  font-style: normal;
  margin-bottom: -0.75rem;
}

.depo-tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.85;
  border-top: 0.5px solid var(--border);
  padding-top: 1.25rem;
  margin-top: auto;
}

/* Responsive resultados */
@media (max-width: 900px) {
  .resultados-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  #resultados { padding: 5rem 1.5rem; }
  .resultados-counters { flex-direction: row; flex-wrap: wrap; gap: 1.25rem 2rem; }
  .counter-num { font-size: 2.2rem; min-width: 2ch; }
  .counter-suffix { font-size: 1.4rem; }
  .resultados-carousel-wrap { margin: 0 -1.5rem; border-left: none; border-right: none; border-radius: 0; }
  .depo-card { flex-direction: column; min-height: auto; }
  .depo-photo { flex: none; aspect-ratio: 4/3; width: 100%; }
  .depo-content { padding: 1.75rem 1.5rem; gap: 1rem; }
  .depo-text { font-size: 0.88rem; }
  .depo-content::before { font-size: 6rem; }
}


/* ── BOTÕES FLUTUANTES ── */
.float-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.whatsapp-float,
.instagram-float {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s, box-shadow 0.25s;
  color: #fff;
}

.whatsapp-float {
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

.instagram-float {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 4px 20px rgba(214,36,159,0.4);
}
.instagram-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 28px rgba(214,36,159,0.55);
}

@media (max-width: 900px) {
  /* Nav */
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-cta { font-size: 0.72rem; padding: 0.5rem 1rem; letter-spacing: 0.04em; }

  /* Hero — conteúdo cresce para baixo, não estoura para cima */
  #hero { height: auto; min-height: 100vh; align-items: flex-start; overflow: visible; }
  .hero-overlay {
    background:
      linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.8) 55%, rgba(10,10,10,1) 88%);
  }
  .hero-content { padding: 6.5rem 1.5rem 4rem; gap: 0.75rem; }
  .hero-title { font-size: clamp(2.6rem, 11vw, 4.5rem); }
  .hero-sub { font-size: 0.92rem; }
  .hero-desc { display: none; }
  .hero-stats { gap: 1.25rem; margin-top: 0.5rem; flex-wrap: wrap; }
  .stat-number { font-size: 1.6rem; }
  .stat-label { font-size: 0.62rem; }
  .hero-checklist { gap: 0.35rem; margin-top: 0; }
  .hero-checklist li { font-size: 0.78rem; }
  .hero-actions { gap: 0.65rem; margin-top: 0.25rem; }
  .hero-btn-primary, .hero-btn-secondary { padding: 0.7rem 1.4rem; font-size: 0.74rem; }
  .hero-scroll { display: none; }
  .side-tag { display: none; }

  /* Sections */
  section { padding: 4rem 1.5rem; }
  #sobre { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-features { grid-template-columns: 1fr; }

  /* Especialidades */
  #especialidades { padding: 4rem 1.5rem; }

  /* Processo */
  .processo-grid { grid-template-columns: 1fr; gap: 0; }
  .processo-step { border-right: none; padding: 0 0 2rem 0 !important; border-bottom: 0.5px solid var(--border); }

  /* Diferenciais */
  #diferenciais { padding: 4rem 1.5rem; }
  .dif-grid { grid-template-columns: 1fr; gap: 0; }

  /* Contato — ID precisa de override explícito no mobile */
  #contato { padding: 4rem 1.5rem; }
  .cta-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-btn, .cta-btn-outline { width: 100%; max-width: 320px; text-align: center; box-sizing: border-box; }

  /* Footer */
  footer { flex-direction: column; gap: 1.5rem; text-align: center; }

  /* WhatsApp */
  .float-buttons { bottom: 1.25rem; right: 1.25rem; gap: 0.6rem; }
  .whatsapp-float, .instagram-float { width: 50px; height: 50px; }
}
