﻿/* ============================================
   Connect Minds — Landing Page
   Tokens da marca: navy + laranja + tipografia Now
   ============================================ */

/* Tipografia "Now" via cdnfonts */
@import url('https://fonts.cdnfonts.com/css/now');
@import url('https://fonts.cdnfonts.com/css/now-alt');

:root {
  /* Brand colors */
  --navy-900: #050822;
  --navy-800: #0a0f30;
  --navy-700: #0e1542;
  --navy-600: #141d5e;
  --navy-500: #1a2780;
  --navy-400: #2a3a9e;
  --orange: #f5a623;
  --orange-bright: #ffb733;
  --orange-soft: rgba(245, 166, 35, 0.12);

  /* Neutrals */
  --bg: #050822;
  --bg-elev: #0a0f30;
  --card: #0d1438;
  --card-elev: #121a48;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.72);
  --text-dim: rgba(255, 255, 255, 0.52);

  /* Light surface (testimonials) */
  --light-bg: #f5f4f0;
  --light-text: #0a0f30;

  /* Type */
  --font-display: 'Now', 'Now Alt', 'Manrope', system-ui, sans-serif;
  --font-body: 'Now', 'Now Alt', 'Manrope', system-ui, sans-serif;

  /* Spacing */
  --container: 1200px;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

/* ============================================
   Layout primitives
   ============================================ */

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

.section {
  padding: 120px 0;
  position: relative;
}

.section-sm { padding: 80px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--orange);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}

h1 { font-size: clamp(38px, 5.5vw, 72px); letter-spacing: -0.03em; }
h2 { font-size: clamp(32px, 4vw, 56px); }
h3 { font-size: clamp(22px, 2vw, 28px); letter-spacing: -0.015em; }
h4 { font-size: 19px; letter-spacing: -0.01em; }

p { color: var(--text-muted); font-size: 17px; }

.lead {
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 680px;
}

.text-orange { color: var(--orange); }
.text-white { color: var(--text); }

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
  letter-spacing: -0.005em;
}

.btn-primary {
  background: var(--orange);
  color: var(--navy-900);
}

.btn-primary:hover {
  background: var(--orange-bright);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -8px rgba(245, 166, 35, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-arrow::after {
  content: "→";
  transition: transform 0.25s ease;
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

.btn-lg {
  padding: 19px 34px;
  font-size: 17px;
}

/* ============================================
   Nav
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(5, 8, 34, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 22px;
}

.nav-logo .logo-mark {
  width: 38px;
  height: 28px;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.nav-logo-text .connect {
  color: var(--orange);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 26px;
  font-size: 14.5px;
  color: var(--text-muted);
  flex-wrap: nowrap;
  min-width: 0;
}

.nav-links a {
  transition: color 0.2s;
  font-family: var(--font-display);
  white-space: nowrap;
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-cta .btn { padding: 13px 22px; font-size: 14.5px; }

@media (max-width: 1180px) {
  .nav-links { gap: 20px; font-size: 14px; }
}

@media (max-width: 1040px) {
  .nav-links { display: none; }
}

/* ============================================
   Background ornaments
   ============================================ */

.bg-glow {
  position: absolute;
  pointer-events: none;
  filter: blur(120px);
  opacity: 0.45;
  z-index: 0;
}

.bg-glow.orange {
  background: radial-gradient(circle, var(--orange) 0%, transparent 60%);
}

.bg-glow.navy {
  background: radial-gradient(circle, var(--navy-400) 0%, transparent 60%);
}

.bg-mark {
  position: absolute;
  pointer-events: none;
  opacity: 0.04;
  z-index: 0;
}

/* ============================================
   HERO
   ============================================ */

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 90%;
  background: radial-gradient(ellipse at center, rgba(42, 58, 158, 0.32) 0%, transparent 60%);
  filter: blur(80px);
}

.hero-bg::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(42, 58, 158, 0.22) 0%, transparent 60%);
  filter: blur(80px);
}

.hero-mark {
  position: absolute;
  right: -8%;
  top: 30%;
  width: 55%;
  opacity: 0.045;
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.25);
  color: var(--orange);
  font-size: 13px;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.hero-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero h1 {
  margin-bottom: 32px;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.hero h1 .accent {
  color: var(--orange);
  font-style: italic;
  font-weight: 700;
}

.hero-sub {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-complement {
  display: none;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-microcopy {
  font-size: 13px;
  color: var(--text);
  font-family: var(--font-display);
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  margin-top: 4px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.02);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: -0.005em;
  cursor: default;
  white-space: nowrap;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}

.hero-chip::before {
  content: "✓";
  color: var(--orange);
  font-weight: 700;
  font-size: 12px;
}

.hero-chip:hover {
  border-color: rgba(245, 166, 35, 0.45);
  background: rgba(245, 166, 35, 0.06);
  color: var(--text);
}

/* Remove the old microcopy ::before checkmarks (now using .hero-chip::before instead) */
.hero-microcopy > span:not(.hero-chip)::before { display: none; }

.hero-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  max-width: 460px;
  margin-left: auto;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 8, 34, 0.5) 100%);
}

.hero-photo-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(13, 20, 56, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
}

.hero-photo-badge .dot-orange {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.hero-photo-badge .label {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.hero-photo-badge .name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-photo { max-width: 420px; margin: 0 auto; }
  .hero { padding: 130px 0 80px; }
}

/* ============================================
   Section: identificação (Se você sente que…)
   ============================================ */

.feel-section {
  background: var(--bg);
  position: relative;
  padding-top: 80px;
}

.feel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.feel-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.feel-card:hover {
  border-color: rgba(245, 166, 35, 0.35);
  transform: translateY(-2px);
}

.feel-card::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange-soft);
  display: grid;
  place-items: center;
}

.feel-card .num {
  position: absolute;
  top: 32px;
  left: 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  display: grid;
  place-items: center;
  z-index: 1;
}

.feel-card .body {
  margin-top: 64px;
  font-size: 18px;
  color: var(--text);
  line-height: 1.5;
  font-weight: 400;
}

.feel-card .body strong {
  color: var(--orange);
  font-weight: 600;
}

.feel-closing {
  margin-top: 56px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--text);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.feel-closing em {
  color: var(--orange);
  font-style: normal;
}

@media (max-width: 720px) {
  .feel-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Section: Posicionamento (3 pilares)
   ============================================ */

.position-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%);
  position: relative;
  overflow: hidden;
}

.position-header {
  max-width: 820px;
  margin-bottom: 72px;
}

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

.pillar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s;
}

.pillar:hover {
  border-color: var(--border-strong);
  background: var(--card-elev);
}

.pillar-num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  font-weight: 500;
}

.pillar h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.pillar p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.position-quote {
  margin-top: 56px;
  padding: 32px 40px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.06) 0%, rgba(42, 58, 158, 0.14) 100%);
  border: 1px solid rgba(245, 166, 35, 0.16);
  position: relative;
}

.position-quote::before {
  content: '"';
  position: absolute;
  top: -16px;
  left: 32px;
  font-family: Georgia, serif;
  font-size: 84px;
  color: var(--orange);
  line-height: 1;
}

.position-quote p {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  letter-spacing: -0.005em;
  max-width: 720px;
}

@media (max-width: 880px) {
  .pillars { grid-template-columns: 1fr; }
  .position-quote { padding: 24px 28px; }
}

/* ============================================
   Section: Diferenciais (5 blocos)
   ============================================ */

.diff-section {
  background: var(--bg);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.diff-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: all 0.3s;
}

.diff-card:hover {
  border-color: rgba(245, 166, 35, 0.3);
  background: var(--card-elev);
}

.diff-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange-soft);
  display: grid;
  place-items: center;
  color: var(--orange);
  margin-bottom: 22px;
  font-size: 22px;
}

.diff-card h4 {
  margin-bottom: 12px;
  font-size: 18px;
}

.diff-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-muted);
}

.diff-card.span-3 { grid-column: span 3; }
.diff-card.span-2 { grid-column: span 2; }

@media (max-width: 880px) {
  .diff-grid { grid-template-columns: 1fr; }
  .diff-card.span-3, .diff-card.span-2 { grid-column: span 1; }
}

/* ============================================
   Section: Serviços (6 cards)
   ============================================ */

.serv-section {
  background: #020614;
  position: relative;
}

.serv-header {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}

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

.serv-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 2px solid rgba(245, 166, 35, 0.45);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  transition: border-color 0.35s, background 0.35s, transform 0.35s, box-shadow 0.35s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 0;
}

/* Número marca-d'água no canto inferior direito */
.serv-card::before {
  content: attr(data-num);
  position: absolute;
  bottom: -8px;
  right: 18px;
  font-size: 96px;
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--orange);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
  transition: opacity 0.35s;
  z-index: 0;
  letter-spacing: -0.04em;
}

/* Barra laranja vertical à esquerda — aparece no hover */
.serv-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.serv-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(245, 166, 35, 0.5);
  border-top-color: rgba(245, 166, 35, 0.75);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.serv-card:hover::before { opacity: 0.13; }
.serv-card:hover::after { transform: scaleY(1); }

.serv-card .label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.serv-card h3 {
  margin-bottom: 14px;
  font-size: 20px;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.serv-card p {
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
  position: relative;
  z-index: 1;
}

.serv-closing {
  margin-top: 56px;
  padding: 36px 40px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.55;
  letter-spacing: -0.01em;
  text-align: center;
}

.serv-closing em {
  color: var(--orange);
  font-style: normal;
  font-weight: 600;
}

@media (max-width: 880px) {
  .serv-header { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  .serv-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Section: Método (3 etapas)
   ============================================ */

.method-section {
  background: var(--bg);
  position: relative;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 72px;
  position: relative;
}

.method-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange) 20%, var(--orange) 80%, transparent);
  opacity: 0.4;
  z-index: 0;
}

.method-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.method-step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-700);
  border: 1.5px solid var(--orange);
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--orange);
  position: relative;
}

.method-step-circle::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.25) 0%, transparent 70%);
  z-index: -1;
}

.method-step h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

.method-step p {
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}

.method-closing {
  margin-top: 64px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--text-muted);
  letter-spacing: -0.005em;
}

.method-closing em {
  color: var(--orange);
  font-style: normal;
  font-weight: 600;
}

@media (max-width: 800px) {
  .method-steps { grid-template-columns: 1fr; gap: 48px; }
  .method-steps::before { display: none; }
}

/* ============================================
   Section: Credibilidade humana (Sobre Laércio)
   ============================================ */

.about-section {
  background: var(--bg-elev);
  position: relative;
  overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.about-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  max-width: 460px;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5, 8, 34, 0.4) 100%);
  z-index: 1;
}

.about-photo-mark {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 44px;
  z-index: 2;
  opacity: 0.9;
}

.about-content h2 {
  margin-bottom: 32px;
  max-width: 540px;
}

.about-content p {
  font-size: 16.5px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.about-signature {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-signature .name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.about-signature .role {
  font-size: 13px;
  color: var(--text-dim);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

.about-closing {
  margin-top: 80px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: var(--text);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.about-closing em {
  color: var(--orange);
  font-style: normal;
}

@media (max-width: 880px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { max-width: 420px; margin: 0 auto; }
}

/* ============================================
   Section: Prova social
   ============================================ */

.social-section {
  background: var(--bg);
  padding: 120px 0 40px;
}

.social-grid {
  display: none;
}

/* ===== Carousel ===== */
.social-carousel {
  position: relative;
  margin-top: 64px;
  z-index: 2;
}

.social-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 12px 4px 28px;
  margin: 0 -4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.social-track::-webkit-scrollbar { display: none; }
.social-track.dragging { cursor: grabbing; scroll-behavior: auto; }
.social-track.dragging .testimonial { pointer-events: none; }

.social-track .testimonial {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 320px;
  scroll-snap-align: start;
  margin: 0;
  user-select: none;
}

@media (max-width: 960px) {
  .social-track .testimonial { flex: 0 0 calc((100% - 20px) / 2); }
}
@media (max-width: 640px) {
  .social-track .testimonial { flex: 0 0 88%; min-width: 0; }
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(10, 15, 48, 0.85);
  backdrop-filter: blur(8px);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.25s;
}

.carousel-arrow:hover:not(:disabled) {
  background: var(--orange);
  color: var(--navy-900);
  border-color: var(--orange);
  box-shadow: 0 8px 24px -6px rgba(245, 166, 35, 0.5);
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-arrow.prev { left: -22px; }
.carousel-arrow.next { right: -22px; }

@media (max-width: 720px) {
  .carousel-arrow.prev { left: 0; }
  .carousel-arrow.next { right: 0; }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.carousel-dots button.active {
  background: var(--orange);
  width: 28px;
  border-radius: 4px;
  box-shadow: 0 0 10px var(--orange);
}

@media (max-width: 880px) {
  .social-grid { grid-template-columns: 1fr; }
}

.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: all 0.3s;
}

.testimonial:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.testimonial .quote-mark {
  font-family: Georgia, serif;
  font-size: 60px;
  line-height: 1;
  color: var(--orange);
  height: 30px;
  display: block;
  margin-bottom: 8px;
}

.testimonial-body {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 28px;
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-500), var(--navy-700));
  color: var(--orange);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  flex-shrink: 0;
  border: 1.5px solid rgba(245, 166, 35, 0.3);
}

.author-info .name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.author-info .role {
  font-size: 13px;
  color: var(--text-dim);
}

@media (max-width: 880px) {
  .social-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Section: Quebra de objeções (accordion)
   ============================================ */

.obj-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%);
  position: relative;
}

.obj-list {
  margin-top: 64px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.obj-item {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}

.obj-item:first-child {
  border-top: 1px solid var(--border);
}

.obj-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 8px;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}

.obj-head:hover .obj-q { color: var(--orange); }

.obj-q {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 500;
  color: var(--text);
  transition: color 0.25s;
  letter-spacing: -0.005em;
}

.obj-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.25s;
  color: var(--orange);
}

.obj-item.open .obj-toggle {
  background: var(--orange);
  color: var(--navy-900);
  transform: rotate(45deg);
}

.obj-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.obj-item.open .obj-body {
  max-height: 400px;
  padding: 0 8px 28px 8px;
}

.obj-body p {
  font-size: 16px;
  line-height: 1.65;
  max-width: 720px;
}

/* ============================================
   CTA intermediário
   ============================================ */

.mid-cta {
  background: var(--bg);
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
}

.mid-cta-card {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.mid-cta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(245, 166, 35, 0.25) 0%, transparent 60%);
  filter: blur(60px);
  z-index: 0;
}

.mid-cta-card > * { position: relative; z-index: 1; }

.mid-cta-card h2 {
  font-size: clamp(28px, 3.6vw, 46px);
  margin-bottom: 22px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.mid-cta-card p {
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.mid-cta-card .micro {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-dim);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

@media (max-width: 720px) {
  .mid-cta-card { padding: 56px 28px; }
}

/* ============================================
   FAQ
   ============================================ */

.faq-section {
  background: var(--bg);
  padding-top: 60px;
}

.faq-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}

.faq-side h2 {
  margin-bottom: 20px;
}

.faq-side p {
  font-size: 16px;
  max-width: 380px;
}

@media (max-width: 880px) {
  .faq-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   Fechamento final
   ============================================ */

.close-section {
  position: relative;
  overflow: hidden;
  padding: 140px 0 120px;
  background: var(--bg-elev);
}

.close-bg-mark {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  opacity: 0.04;
  z-index: 0;
  pointer-events: none;
}

.close-bg-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(245, 166, 35, 0.18) 0%, transparent 60%);
  filter: blur(80px);
  z-index: 0;
}

.close-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.close-inner h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 28px;
  letter-spacing: -0.025em;
}

.close-inner h2 em {
  color: var(--orange);
  font-style: italic;
  font-weight: 700;
}

.close-inner p {
  font-size: clamp(17px, 1.5vw, 20px);
  max-width: 680px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.close-impact {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  color: var(--text);
  margin: 40px auto;
  line-height: 1.4;
  letter-spacing: -0.01em;
  max-width: 720px;
}

.close-impact .sep {
  color: var(--orange);
  margin: 0 8px;
}

.close-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.close-micro {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-dim);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--navy-900);
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand .logo-line img {
  width: 44px;
}

.footer-brand .brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.footer-brand .brand-name .c { color: var(--orange); font-size: 13px; font-weight: 500; }

.footer-brand p {
  font-size: 14px;
  max-width: 320px;
  color: var(--text-dim);
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 14.5px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-dim);
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom .socials {
  display: flex;
  gap: 12px;
}

.footer-bottom .socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  transition: all 0.25s;
}

.footer-bottom .socials a:hover {
  background: var(--orange);
  color: var(--navy-900);
  border-color: var(--orange);
}

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   WhatsApp floating button
   ============================================ */

.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px -8px rgba(37, 211, 102, 0.55), 0 0 0 0 rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: transform 0.25s;
  animation: wa-pulse 2.5s infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
}

.whatsapp-fab svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.whatsapp-fab .wa-label {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #0a0f30;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}

.whatsapp-fab:hover .wa-label {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}

@keyframes wa-pulse {
  0%, 100% {
    box-shadow: 0 12px 32px -8px rgba(37, 211, 102, 0.55), 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 12px 32px -8px rgba(37, 211, 102, 0.55), 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

@media (max-width: 480px) {
  .whatsapp-fab { width: 56px; height: 56px; bottom: 18px; right: 18px; }
}

/* ============================================
   Mobile Improvements
   ============================================ */

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

  .section { padding: 80px 0; }
  .section-sm { padding: 56px 0; }

  /* Hero */
  .hero { padding: 104px 0 56px; min-height: auto; }
  .hero-inner { gap: 36px; }
  .hero h1 { font-size: clamp(28px, 8.5vw, 38px); margin-bottom: 22px; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .hero-tag { font-size: 12px; margin-bottom: 20px; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-microcopy { flex-wrap: wrap; gap: 6px; margin-top: 8px; }
  .hero-chip { font-size: 11.5px; padding: 6px 10px; }
  .hero-photo { max-width: 100%; }
  .hero-photo-badge { flex-direction: column; align-items: flex-start; gap: 6px; padding: 12px 14px; }

  /* Services */
  .serv-section { padding: 80px 0; }
  .serv-header { margin-bottom: 40px; }
  .serv-header h2 { font-size: clamp(26px, 7.5vw, 36px); }
  .serv-grid { gap: 12px; }
  .serv-card { padding: 26px 20px 22px; }
  .serv-card::before { font-size: 72px; }
  .serv-card h3 { font-size: 18px; }
  .serv-closing { padding: 26px 20px; font-size: 16px; }

  /* Feel (identificação) */
  .feel-card { padding: 28px 22px; }
  .feel-card .body { font-size: 16px; }

  /* Pillars / Position */
  .position-quote { padding: 22px 20px; }
  .position-quote p { font-size: 17px; }

  /* Method */
  .method-step h3 { font-size: 20px; }
  .method-steps { gap: 40px; }

  /* About */
  .about-inner { gap: 32px; }
  .about-content h2 { font-size: clamp(24px, 7vw, 32px); }
  .about-content p { font-size: 15.5px; }
  .about-photo { max-width: 100%; }

  /* Obj accordion */
  .obj-q { font-size: 16px; }
  .obj-head { padding: 22px 4px; }

  /* Mid CTA */
  .mid-cta { padding: 80px 0 32px; }
  .mid-cta-card { padding: 40px 20px; border-radius: var(--radius); }
  .mid-cta-card h2 { font-size: clamp(24px, 7vw, 32px); }
  .mid-cta-card p { font-size: 15px; margin-bottom: 28px; }

  /* FAQ */
  .faq-inner { gap: 20px; }
  .faq-side p { font-size: 15px; }

  /* Close (fechamento final) */
  .close-section { padding: 88px 0 72px; }
  .close-inner h2 { font-size: clamp(30px, 8.5vw, 46px); }
  .close-impact { font-size: clamp(15px, 4.2vw, 20px); letter-spacing: -0.005em; }
  .close-ctas { flex-direction: column; align-items: center; gap: 10px; }
  .close-ctas .btn { width: 100%; justify-content: center; max-width: 360px; }

  /* Footer */
  .footer { padding: 48px 0 28px; }
  .footer-inner { gap: 28px; margin-bottom: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }

  /* Testimonials carousel */
  .carousel-arrow { display: none; }

  /* Buttons */
  .btn { padding: 14px 22px; font-size: 15px; }
}

@media (max-width: 400px) {
  .container { padding: 0 12px; }
  .hero { padding: 92px 0 48px; }
  .hero h1 { font-size: clamp(26px, 8vw, 32px); }
  .hero-tag { font-size: 11px; padding: 6px 12px; }
  .feel-card .body { font-size: 15.5px; }
  .serv-card { padding: 22px 16px 18px; }
  .mid-cta-card { padding: 36px 16px; }
  .close-section { padding: 72px 0 60px; }
}
/* ============================================
   Utility
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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