/* ============================================================
   JOÃO PEREIRA | CONSULTORIA EMPRESARIAL
   style.css — v1.0 — ROCA Consultoria Estratégica
   ============================================================ */

/* 1. TOKENS */
:root {
  --gold:           #C9A96E;
  --gold-light:     #D4B483;
  --gold-dark:      #C4A05D;
  --gold-muted:     rgba(196,160,93,0.15);
  --gold-border:    rgba(196,160,93,0.28);
  --gold-glow:      rgba(196,160,93,0.20);

  --dark-900:       #0D0D0D;
  --dark-800:       #141414;
  --dark-700:       #1A1A1A;
  --dark-600:       #222222;

  --navy:           #1B2B4B;
  --navy-light:     #233461;

  --light-50:       #FFFFFF;
  --light-100:      #FAFAFA;
  --light-200:      #F5F0EA;
  --light-300:      #EDE8E0;

  --text-white:     #FFFFFF;
  --text-muted:     #B0B0B0;
  --text-dim:       #888888;
  --text-dark:      #1A1A1A;
  --text-navy:      #1B2B4B;
  --text-body:      #404040;

  --danger:         #E63946;
  --success:        #2D9C5E;

  --overlay-hero:   rgba(13,13,13,0.85);
  --divider-dark:   rgba(255,255,255,0.08);
  --divider-light:  rgba(0,0,0,0.10);

  --font:           'Montserrat', sans-serif;

  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      12px;
  --radius-xl:      20px;
  --radius-full:    9999px;

  --shadow-gold:    0 0 32px rgba(196,160,93,0.18);
  --shadow-card:    0 4px 24px rgba(0,0,0,0.28);
  --shadow-sm:      0 2px 10px rgba(0,0,0,0.12);

  --container:      1160px;
  --section-v:      96px;
}

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

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

body {
  font-family: var(--font);
  background: var(--dark-900);
  color: var(--text-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-v) 0;
}
.section-dark     { background: var(--dark-900); }
.section-dark-mid { background: var(--dark-800); }
.section-light    { background: var(--light-200); color: var(--text-dark); }

/* scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1),
              transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* 3. ATOMS */

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--dark-900);
}
.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-primary:active { filter: brightness(0.95); transform: translateY(0); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold-dark);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold-muted); }

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.65);
  padding: 15px 20px;
}
.btn-ghost:hover { color: var(--text-white); }

.btn-full { width: 100%; justify-content: center; padding: 18px; font-size: 15px; }

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  color: var(--gold);
}

/* Gold divider */
.divider-gold {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.divider-gold .line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold-border);
}
.divider-gold .diamond {
  font-size: 8px;
  color: var(--gold);
}
.divider-gold-center {
  justify-content: center;
}

/* Text gold */
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }

/* Section heading */
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-h2-dark { color: var(--text-white); }
.section-h2-light { color: var(--navy); }
.section-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 580px;
}
.section-sub-dark { color: var(--text-muted); }
.section-sub-light { color: var(--text-body); }

/* Card dark */
.card-dark {
  background: var(--dark-800);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.card-dark:hover {
  border-color: rgba(196,160,93,0.55);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

/* Card light */
.card-light {
  background: var(--light-50);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.card-light:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

/* 4. NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255,255,255,0.06);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.navbar-logo { height: 36px; width: auto; }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.navbar-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.70);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.navbar-links a:hover { color: var(--text-white); }

.navbar-cta { margin-left: 16px; padding: 10px 22px; font-size: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-white);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,13,13,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mobile-menu a:hover { color: var(--gold); }

/* 5. HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-900);
}
/* Photo column — right 56% of screen, absolutely positioned */
.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 56%;
  height: 100%;
  z-index: 0;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* Gradient fades photo into dark bg on the left edge */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    var(--dark-900)           0%,
    rgba(13,13,13,0.72)      30%,
    rgba(13,13,13,0.12)      65%,
    rgba(13,13,13,0)        100%
  );
  pointer-events: none;
}
/* Text column — left edge aligns with site container on every viewport */
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 60px;
  padding-left: max(24px, calc((100vw - var(--container)) / 2 + 24px));
  padding-right: 24px;
  max-width: 50%;
}
.hero-logo {
  height: 40px;
  width: auto;
  margin-bottom: 36px;
}
.hero-badge {
  margin-bottom: 24px;
}
.hero-h1 {
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.70;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.trust-bar {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.trust-item { display: flex; flex-direction: column; gap: 3px; }
.trust-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.trust-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* 6. DOR */
.dor-intro { margin-bottom: 40px; }
.dor-lead {
  font-size: 17px;
  line-height: 1.70;
  color: var(--text-body);
  margin-bottom: 28px;
  max-width: 640px;
}
.pain-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
  display: block;
}
.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--light-50);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  font-size: 16px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.5;
}
.pain-icon {
  font-size: 17px;
  color: var(--danger);
  flex-shrink: 0;
  margin-top: 1px;
}
.dor-closing {
  font-size: 17px;
  font-style: italic;
  color: var(--navy);
  font-weight: 600;
}

/* 7. SOBRE */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  aspect-ratio: 3/4;
}
.sobre-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.sobre-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(13,13,13,0.6), transparent);
  pointer-events: none;
}
.sobre-content { display: flex; flex-direction: column; gap: 20px; }
.badges-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0; }
.sobre-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
}
.sobre-credentials {
  border-top: 1px solid var(--gold-border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.cred-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  color: white;
}

/* 8. METODOLOGIA */
.metodologia-header { margin-bottom: 48px; }
.trust-chips {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--light-50);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.trust-chip-star { color: var(--gold-dark); }

.fases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.fases-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  border-top: 2px dashed var(--gold-border);
  z-index: 0;
}
.fase-card {
  position: relative;
  z-index: 1;
  background: var(--light-50);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  margin: 0 8px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  overflow: hidden;
}
.fase-card:hover {
  border-color: var(--gold-border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}
.fase-num-ghost {
  position: absolute;
  top: -8px;
  right: 12px;
  font-size: 72px;
  font-weight: 900;
  color: rgba(196,160,93,0.12);
  line-height: 1;
  user-select: none;
}
.fase-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.fase-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.fase-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-body);
}

/* 9. SERVIÇOS */
.servicos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.servico-card { display: flex; flex-direction: column; gap: 16px; }
.servico-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.servico-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-white);
  line-height: 1.25;
}
.servico-hook {
  font-size: 15px;
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.servico-desc {
  font-size: 15px;
  line-height: 1.70;
  color: var(--text-muted);
  flex: 1;
}
.servico-cta { align-self: flex-start; margin-top: auto; }

/* 10. PARA QUEM */
.para-quem-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 28px;
}
.pq-card { padding: 32px; border-radius: var(--radius-lg); }
.pq-sim {
  background: var(--light-50);
  border-left: 4px solid var(--success);
  box-shadow: var(--shadow-sm);
}
.pq-nao {
  background: var(--light-50);
  border-left: 4px solid #BBBBBB;
  box-shadow: var(--shadow-sm);
}
.pq-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}
.pq-title-sim { color: var(--success); }
.pq-title-nao { color: #888888; }
.pq-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pq-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.50;
}
.pq-item-nao { color: var(--text-body); }
.pq-check { font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.pq-check-sim { color: var(--success); }
.pq-check-nao { color: #BBBBBB; }
.pq-note {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 10px;
  font-style: italic;
}

/* 11. COMO FUNCIONA */
.steps-desktop {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-desktop::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(to right, var(--gold-border), var(--gold-border));
  border-top: 2px solid rgba(196,160,93,0.22);
}
.step {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  text-align: center;
}
.step-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--gold-dark);
  background: rgba(196,160,93,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 24px;
}
.step-num-ghost {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  font-weight: 900;
  color: rgba(196,160,93,0.07);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-dim);
}

/* 12. DEPOIMENTOS */
.depoimentos-label {
  font-size: 12px;
  color: var(--text-dim);
  font-style: italic;
  margin-top: 4px;
  display: block;
}
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.dep-card {
  position: relative;
  background: var(--dark-800);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.dep-card:hover {
  border-color: rgba(196,160,93,0.50);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.dep-quote {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 64px;
  line-height: 1;
  color: rgba(196,160,93,0.08);
  font-family: Georgia, serif;
  font-weight: 700;
  user-select: none;
}
.dep-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; }
.dep-text {
  font-size: 14px;
  line-height: 1.72;
  color: rgba(255,255,255,0.80);
  flex: 1;
}
.dep-footer { display: flex; flex-direction: column; gap: 2px; }
.dep-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold);
}

/* 13. FAQ */
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.10);
}
.faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 24px 0;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font);
  transition: color 0.2s;
}
.faq-btn:hover { color: var(--gold-dark); }
.faq-icon {
  font-size: 20px;
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner {
  overflow: hidden;
}
.faq-answer-inner p {
  font-size: 15px;
  line-height: 1.72;
  color: var(--text-body);
  padding-bottom: 24px;
  padding-right: 40px;
}

/* 14. CTA FINAL / CONTATO */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.contato-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  aspect-ratio: 3/4;
  max-height: 580px;
}
.contato-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.contato-inner { display: flex; flex-direction: column; gap: 6px; }
.contato-form {
  background: var(--dark-800);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-top: 40px;
  text-align: left;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 15px;
  color: var(--text-white);
  width: 100%;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.28); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(196,160,93,0.12);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-trust {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 16px;
}

/* 15. FOOTER */
.footer {
  background: #0A0A0A;
  border-top: 1px solid rgba(196,160,93,0.12);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo { height: 30px; width: auto; opacity: 0.75; }
.footer-meta {
  font-size: 12px;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-dim);
}
.footer-berry {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-dim);
}
.footer-berry strong { color: var(--gold); }

/* ============================================================
   RESPONSIVO — Mobile first adjustments
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-v: 80px; }

  .fases-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .fases-grid::before { display: none; }
  .fase-card { margin: 0; }

  .steps-desktop { grid-template-columns: 1fr 1fr; gap: 40px; }
  .steps-desktop::before { display: none; }
  .step { text-align: left; display: flex; gap: 20px; align-items: flex-start; padding: 0; }
  .step-circle { margin: 0; flex-shrink: 0; }
  .step-content { flex: 1; }
  .step-num-ghost { display: none; }

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

@media (max-width: 768px) {
  :root { --section-v: 64px; }

  /* Navbar */
  .navbar-links, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .navbar { height: 60px; }

  /* Hero — mobile: foto volta full-bleed, overlay sobe de baixo */
  .hero-bg { width: 100%; left: 0; right: 0; }
  .hero-content { max-width: 100%; padding: 80px 24px 60px; }
  .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(13,13,13,0.97) 0%,
      rgba(13,13,13,0.82) 52%,
      rgba(13,13,13,0.30) 100%
    );
  }
  .hero-logo { height: 32px; margin-bottom: 28px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .trust-bar { gap: 20px; }
  .trust-value { font-size: 17px; }

  /* Sobre */
  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre-photo-wrap { max-width: 360px; margin: 0 auto; aspect-ratio: 4/5; }

  /* Fases */
  .fases-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Serviços */
  .servicos-grid { grid-template-columns: 1fr; }

  /* Para quem */
  .para-quem-grid { grid-template-columns: 1fr; }

  /* Steps */
  .steps-desktop { grid-template-columns: 1fr; gap: 32px; }

  /* Depoimentos — carousel */
  .depoimentos-grid {
    grid-template-columns: repeat(4, 85vw);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    gap: 16px;
    scrollbar-width: none;
  }
  .depoimentos-grid::-webkit-scrollbar { display: none; }
  .dep-card { scroll-snap-align: start; }

  /* Contato */
  .contato-grid { grid-template-columns: 1fr; gap: 40px; }
  .contato-photo { max-width: 300px; max-height: 380px; margin: 0 auto; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; }

  /* Section headings */
  .section-h2 { font-size: clamp(24px, 7vw, 32px); }
}

@media (max-width: 480px) {
  .trust-bar { gap: 16px; flex-wrap: wrap; }
  .badges-wrap .badge { font-size: 10px; padding: 5px 10px; }
}

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */

/* Floating button — fixed bottom-right */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: white;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.10);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
@media (max-width: 768px) {
  .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
}

/* CTA button in Contato section */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 40px;
  background: #25D366;
  color: white;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  max-width: 440px;
  margin: 28px 0 0;
  text-transform: uppercase;
}
.btn-whatsapp:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.40);
}

/* Contato sans formulário */
.contato-cta-wrap {
  text-align: center;
  margin-top: 40px;
}
