/* ============================================================
   NEXUS GESTÃO & ADMINISTRAÇÃO — style.css
   Versão: 1.0.0 | Produção
   ============================================================ */

/* ------------------------------------------------------------
   1. TOKENS & RESET
   ------------------------------------------------------------ */
:root {
  --navy:        #0B1F3A;
  --navy-mid:    #132B50;
  --navy-light:  #1A3A6A;
  --gold:        #C09B5B;
  --gold-light:  #D4B483;
  --gold-pale:   #F5ECD9;
  --white:       #FFFFFF;
  --offwhite:    #F8F7F4;
  --slate:       #6B7A92;
  --text-dark:   #1A1A2E;
  --text-body:   #3A4558;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --max-w:       1200px;
  --radius:      4px;
  --radius-md:   8px;
  --transition:  0.3s ease;

  /* Spacing scale */
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  24px;
  --sp-lg:  40px;
  --sp-xl:  64px;
  --sp-2xl: 120px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* ------------------------------------------------------------
   2. UTILITIES
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

/* Section labels */
.section-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Section titles */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title.light {
  color: var(--white);
}

/* Section body text */
.section-body {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 600px;
  line-height: 1.8;
}
.section-body.light {
  color: rgba(255, 255, 255, 0.75);
}

/* Visually hidden (acessibilidade) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------
   3. BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 155, 91, 0.35);
}
.btn-gold:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.85);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

/* WhatsApp icon inline */
.btn .icon-wa {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-image: url("../img/icon-wa-navy.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}
.btn-outline .icon-wa,
.btn-gold-outline .icon-wa {
  background-image: url("../img/icon-wa-white.svg");
}

/* ------------------------------------------------------------
   4. TAGS
   ------------------------------------------------------------ */
.tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(192, 155, 91, 0.35);
  color: var(--gold-light);
  border-radius: 100px;
}

/* ------------------------------------------------------------
   5. NAVIGATION
   ------------------------------------------------------------ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

#site-header.scrolled {
  background: rgba(11, 31, 58, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--sp-lg);
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1;
}
.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover {
  color: var(--gold-light);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.mobile-nav a:hover {
  color: var(--gold-light);
}
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color var(--transition);
}
.mobile-nav-close:hover {
  color: var(--white);
}

/* ------------------------------------------------------------
   6. ANNOUNCE BAR
   ------------------------------------------------------------ */
.announce {
  background: var(--gold);
  padding: 14px var(--sp-lg);
  text-align: center;
}
.announce p {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--navy);
  text-transform: uppercase;
}
.announce a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ------------------------------------------------------------
   7. HERO
   ------------------------------------------------------------ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0B1F3A 0%, #1A3A6A 60%, #0D2B50 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 50%, rgba(192, 155, 91, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(192, 155, 91, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.hero-ring {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 440px;
  height: 440px;
  border: 1px solid rgba(192, 155, 91, 0.12);
  border-radius: 50%;
  pointer-events: none;
}
.hero-ring::before {
  content: '';
  position: absolute;
  inset: 48px;
  border: 1px solid rgba(192, 155, 91, 0.08);
  border-radius: 50%;
}
.hero-ring::after {
  content: '';
  position: absolute;
  inset: 100px;
  border: 1px solid rgba(192, 155, 91, 0.06);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 130px var(--sp-lg) 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(192, 155, 91, 0.15);
  border: 1px solid rgba(192, 155, 91, 0.3);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.1s ease forwards;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
  max-width: 740px;
  opacity: 0;
  animation: fadeUp 0.8s 0.25s ease forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  line-height: 1.85;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s ease forwards;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.55s ease forwards;
}

.hero-stats {
  display: flex;
  gap: 52px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  animation: fadeUp 0.8s 0.7s ease forwards;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ------------------------------------------------------------
   8. SOBRE A NEXUS
   ------------------------------------------------------------ */
.sobre {
  padding: var(--sp-2xl) 0;
  background: var(--offwhite);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-img-wrap {
  position: relative;
}
.sobre-img-wrap img,
.sobre-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}
.sobre-img-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  padding: 24px;
}
.sobre-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: var(--gold);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.22;
}

.sobre-text p {
  margin-bottom: 20px;
}
.sobre-text .btn {
  margin-top: 8px;
}

.sobre-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 44px;
}
.sobre-num-card {
  background: var(--white);
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: box-shadow var(--transition);
}
.sobre-num-card:hover {
  box-shadow: 0 6px 20px rgba(11, 31, 58, 0.07);
}
.sobre-num-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1;
}
.sobre-num-card span {
  font-size: 0.8rem;
  color: var(--slate);
  font-weight: 500;
  line-height: 1.4;
}

/* ------------------------------------------------------------
   9. SERVIÇOS
   ------------------------------------------------------------ */
.servicos {
  padding: var(--sp-2xl) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.servicos::before {
  content: '';
  position: absolute;
  right: -200px;
  top: -200px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(192, 155, 91, 0.07);
  border-radius: 50%;
  pointer-events: none;
}
.servicos::after {
  content: '';
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(192, 155, 91, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.servicos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 24px;
}
.servicos-header .section-label {
  color: rgba(192, 155, 91, 0.85);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.servico-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 48px 44px;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.servico-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}
.servico-card:hover {
  background: rgba(192, 155, 91, 0.07);
}
.servico-card:hover::before {
  height: 100%;
}

.servico-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(192, 155, 91, 0.14);
  line-height: 1;
  margin-bottom: 18px;
  user-select: none;
}

.servico-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.25;
}

.servico-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.8;
  margin-bottom: 24px;
}

.servico-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ------------------------------------------------------------
   10. DIFERENCIAIS
   ------------------------------------------------------------ */
.diferenciais {
  padding: var(--sp-2xl) 0;
  background: var(--white);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.diferencial-card {
  padding: 36px 32px;
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  position: relative;
  background: var(--white);
}
.diferencial-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(11, 31, 58, 0.08);
  transform: translateY(-4px);
}

.diferencial-icon-wrap {
  width: 50px;
  height: 50px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.diferencial-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.diferencial-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.diferencial-card p {
  font-size: 0.87rem;
  color: var(--slate);
  line-height: 1.75;
}

/* ------------------------------------------------------------
   11. COMO TRABALHAMOS
   ------------------------------------------------------------ */
.como {
  padding: var(--sp-2xl) 0;
  background: var(--offwhite);
}

.como-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.como-steps::before {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(to right, var(--gold), rgba(192, 155, 91, 0.15));
  z-index: 0;
}

.como-step {
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 70px;
  height: 70px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
  border: 3px solid var(--offwhite);
  box-shadow: 0 0 0 2px var(--gold);
  transition: all var(--transition);
}
.como-step:hover .step-num {
  background: var(--navy-light);
  transform: scale(1.05);
}

.como-step h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.como-step p {
  font-size: 0.84rem;
  color: var(--slate);
  line-height: 1.75;
}

/* ------------------------------------------------------------
   12. EQUIPE
   ------------------------------------------------------------ */
.equipe {
  padding: var(--sp-2xl) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.equipe::before {
  content: '';
  position: absolute;
  right: -150px;
  top: -150px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(192, 155, 91, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.equipe-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 72px;
}

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

.equipe-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}
.equipe-card:hover {
  background: rgba(192, 155, 91, 0.07);
  border-color: rgba(192, 155, 91, 0.28);
  transform: translateY(-4px);
}

.equipe-avatar {
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(to bottom, var(--navy-light), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
}
.equipe-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.avatar-initials {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold-light);
  opacity: 0.55;
  user-select: none;
}

.equipe-info {
  padding: 26px 26px 30px;
}
.equipe-role {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 9px;
}
.equipe-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.equipe-desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.7;
  margin-bottom: 18px;
}
.equipe-bullets {
  margin-bottom: 22px;
}
.equipe-bullets li {
  font-size: 0.79rem;
  color: rgba(255, 255, 255, 0.48);
  padding: 3px 0 3px 16px;
  position: relative;
  line-height: 1.5;
}
.equipe-bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.65rem;
}
.equipe-links {
  display: flex;
  gap: 16px;
}
.equipe-links a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(192, 155, 91, 0.3);
  padding-bottom: 2px;
  transition: all var(--transition);
}
.equipe-links a:hover {
  border-color: var(--gold-light);
  color: var(--white);
}

/* ------------------------------------------------------------
   13. PARA QUEM ATENDEMOS
   ------------------------------------------------------------ */
.publico {
  padding: var(--sp-2xl) 0;
  background: var(--white);
}

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

.publico-card {
  background: var(--offwhite);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
}
.publico-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(11, 31, 58, 0.07);
  background: var(--white);
}

.publico-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1;
}

.publico-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.publico-card p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.75;
}

/* ------------------------------------------------------------
   14. MISSÃO, VISÃO E VALORES
   ------------------------------------------------------------ */
.mvv {
  padding: var(--sp-2xl) 0;
  background: var(--offwhite);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(11, 31, 58, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 60px;
}

.mvv-card {
  background: var(--white);
  padding: 48px 40px;
  position: relative;
}
.mvv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}
.mvv-card:nth-child(2)::before {
  background: var(--navy);
}
.mvv-card:nth-child(3)::before {
  background: var(--slate);
}

.mvv-label {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.mvv-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.2;
}
.mvv-card p {
  font-size: 0.87rem;
  color: var(--slate);
  line-height: 1.8;
}

/* ------------------------------------------------------------
   15. POR QUE CONTRATAR
   ------------------------------------------------------------ */
.porque {
  padding: var(--sp-2xl) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.porque::before {
  content: 'NEXUS';
  position: absolute;
  font-family: var(--font-display);
  font-size: 20rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.025);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.porque-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px 80px;
  margin-top: 60px;
}

.porq-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.porq-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(192, 155, 91, 0.22);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
}
.porq-content h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.25;
}
.porq-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.78;
}

/* ------------------------------------------------------------
   16. CTA FINAL / CONTATO
   ------------------------------------------------------------ */
.cta {
  padding: var(--sp-2xl) 0;
  background: linear-gradient(135deg, #0B1F3A 0%, #1A3A6A 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(192, 155, 91, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}
.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.cta h2 em {
  color: var(--gold-light);
  font-style: italic;
}
.cta p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.62);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.85;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.cta-buttons .btn {
  padding: 15px 36px;
  font-size: 0.82rem;
}

.cta-contact-info {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-item {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.03em;
}
.contact-item strong {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  margin-bottom: 3px;
  font-size: 0.88rem;
}
.contact-item a {
  transition: color var(--transition);
}
.contact-item a:hover {
  color: var(--gold-light);
}

/* ------------------------------------------------------------
   17. FOOTER
   ------------------------------------------------------------ */
footer {
  background: #060F1E;
  padding: 60px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 28px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1;
}
.footer-logo span {
  color: var(--gold);
}
.footer-about {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-col-title {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.42);
  transition: color var(--transition);
  line-height: 1.4;
}
.footer-links a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-copy {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.22);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.38);
  transition: all var(--transition);
  letter-spacing: 0;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(192, 155, 91, 0.08);
}

/* ------------------------------------------------------------
   18. WHATSAPP FLUTUANTE
   ------------------------------------------------------------ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.38);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulseWa 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  animation: none;
}
.wa-float svg {
  width: 28px;
  height: 28px;
}

/* ------------------------------------------------------------
   19. ANIMAÇÕES
   ------------------------------------------------------------ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseWa {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.38);
  }
  50% {
    box-shadow: 0 4px 28px rgba(37, 211, 102, 0.65),
                0 0 0 10px rgba(37, 211, 102, 0.08);
  }
}

/* Scroll reveal (adicionado via JS) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------------------
   20. RESPONSIVIDADE — TABLET (≤ 960px)
   ------------------------------------------------------------ */
@media (max-width: 960px) {

  :root {
    --sp-2xl: 88px;
  }

  .container {
    padding: 0 28px;
  }

  /* Nav */
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-inner {
    padding: 20px 28px;
  }

  /* Hero */
  .hero-ring {
    display: none;
  }
  .hero-content {
    padding: 100px 28px 64px;
  }
  .hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    max-width: 580px;
  }
  .hero-stats {
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 56px;
  }

  /* Sobre */
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .sobre-accent {
    display: none;
  }

  /* Serviços */
  .servicos-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .servicos-grid {
    grid-template-columns: 1fr;
  }

  /* Diferenciais */
  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Como trabalhamos */
  .como-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 32px;
  }
  .como-steps::before {
    display: none;
  }

  /* Equipe */
  .equipe-intro {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 52px;
  }
  .equipe-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  /* Público */
  .publico-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* MVV */
  .mvv-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  /* Por que */
  .porque-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* ------------------------------------------------------------
   21. RESPONSIVIDADE — MOBILE (≤ 600px)
   ------------------------------------------------------------ */
@media (max-width: 600px) {

  :root {
    --sp-2xl: 72px;
    --sp-lg:  20px;
  }

  .container {
    padding: 0 20px;
  }

  .section-title {
    font-size: clamp(1.75rem, 7vw, 2.2rem);
  }

  /* Nav */
  .nav-inner {
    padding: 18px 20px;
  }
  .nav-logo {
    font-size: 1.3rem;
  }

  /* Announce bar */
  .announce p {
    font-size: 0.74rem;
  }

  /* Hero */
  .hero-content {
    padding: 92px 20px 56px;
  }
  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 2.8rem);
  }
  .hero-sub {
    font-size: 0.95rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    margin-top: 44px;
    padding-top: 28px;
  }
  .hero-stat-num {
    font-size: 2rem;
  }

  /* Sobre */
  .sobre-numbers {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* Serviços */
  .servico-card {
    padding: 32px 24px;
  }

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

  /* Como trabalhamos */
  .como-steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Equipe */
  .equipe-grid {
    max-width: 100%;
  }

  /* Público */
  .publico-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* MVV */
  .mvv-card {
    padding: 36px 24px;
  }

  /* CTA */
  .cta h2 {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
  }
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-buttons .btn {
    width: 100%;
  }
  .cta-contact-info {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* WA float */
  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

/* ------------------------------------------------------------
   22. PRINT
   ------------------------------------------------------------ */
@media print {
  .wa-float,
  #site-header,
  .hamburger,
  .mobile-nav {
    display: none !important;
  }
  body {
    font-size: 12pt;
    color: #000;
  }
}

/* ------------------------------------------------------------
   23. ÍCONES SVG INLINE NOS BOTÕES
   ------------------------------------------------------------ */
.btn-icon {
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
}

/* ------------------------------------------------------------
   24. SEÇÃO CONTATO — GRID (cards + QR Code)
   ------------------------------------------------------------ */

/* Wrapper principal: cards à esquerda, QR à direita */
.cta-contact-grid {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: center;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

/* Grid 2×2 dos cards de contato */
.cta-contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  flex: 1;
  min-width: 280px;
  max-width: 560px;
}

/* Card individual de contato */
.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 16px 20px;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.contact-card:hover {
  background: rgba(192, 155, 91, 0.1);
  border-color: rgba(192, 155, 91, 0.35);
  transform: translateY(-2px);
}

/* Círculo do ícone */
.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon--wa  { background: rgba(37, 211, 102, 0.12); }
.contact-card-icon--ig  { background: rgba(225, 48, 108, 0.12); }
.contact-card-icon--mail  { background: rgba(192, 155, 91, 0.12); }
.contact-card-icon--phone { background: rgba(192, 155, 91, 0.12); }

/* Textos do card */
.contact-card-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  min-width: 0;
}
.contact-card-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 3px;
}
.contact-card-value {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ------------------------------------------------------------
   25. QR CODE — BLOCO LATERAL
   ------------------------------------------------------------ */
.cta-qr-wrap {
  flex-shrink: 0;
}

.cta-qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
}

.cta-qr-img {
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
}

/* O SVG gerado pelo qrcode já tem background branco */
.qr-svg {
  display: block;
  border-radius: 6px;
}

.cta-qr-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* ------------------------------------------------------------
   26. FOOTER — LINKS DE CONTATO COM ÍCONES
   ------------------------------------------------------------ */
.footer-contact-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.42);
  transition: color var(--transition);
  line-height: 1.4;
}
.footer-contact-item a:hover {
  color: rgba(255, 255, 255, 0.85);
}
.footer-contact-item a svg {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity var(--transition);
}
.footer-contact-item a:hover svg {
  opacity: 1;
}

/* ------------------------------------------------------------
   27. RESPONSIVIDADE — NOVOS COMPONENTES
   ------------------------------------------------------------ */

/* Tablet */
@media (max-width: 960px) {
  .cta-contact-grid {
    gap: 32px;
  }
  .cta-contact-cards {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .cta-contact-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .cta-contact-cards {
    grid-template-columns: 1fr;
    min-width: unset;
    max-width: 100%;
  }
  .contact-card {
    padding: 14px 16px;
  }
  .contact-card-value {
    font-size: 0.82rem;
    white-space: normal;
  }
  .cta-qr-wrap {
    display: flex;
    justify-content: center;
  }
  .cta-qr-card {
    max-width: 220px;
    margin: 0 auto;
  }
}

/* ------------------------------------------------------------
   28. NAV LINK ATIVO (highlight ao rolar)
   ------------------------------------------------------------ */
.nav-links a.active {
  color: var(--gold-light);
}
.nav-links a.active::after {
  width: 100%;
}
