/* ========================================================
   O2B Consulting — Static site
   Cores: laranja #E85D2F · navy #143038 · creme #F5EFE6
   ======================================================== */

:root {
  --color-orange:       #E85D2F;
  --color-orange-soft:  #F47845;
  --color-orange-dark:  #C84B22;
  --color-orange-glow:  #FF8C5F;

  --color-navy:         #143038;
  --color-navy-2:       #1A3D47;
  --color-navy-deep:    #0E2128;

  --color-cream:        #F5EFE6;
  --color-cream-soft:   #FBF7F1;
  --color-bg-pillars:   #EEEAE3;

  --color-text:         #181717;
  --color-text-soft:    #4B4A48;
  --color-text-muted:   #8A8682;
  --color-text-light:   #FFFFFF;
  --color-text-light-2: rgba(255,255,255,0.78);

  --color-line:         rgba(0,0,0,0.08);
  --color-line-light:   rgba(255,255,255,0.12);

  --shadow-sm:  0 2px 8px rgba(20,48,56,0.06);
  --shadow-md:  0 10px 30px rgba(20,48,56,0.08);
  --shadow-lg:  0 24px 50px rgba(20,48,56,0.12);

  --font-sans:  'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --container: 1200px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

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

em { font-style: normal; }

/* ===== Typography helpers ===== */
.section-title {
  font-size: clamp(2rem, 4vw + 0.6rem, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 28px;
  color: var(--color-text);
}
.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}
.section-title-light { color: var(--color-text-light); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 16px;
}
.eyebrow-on-dark { color: var(--color-orange-glow); }

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

.section-lead {
  color: var(--color-text-soft);
  max-width: 640px;
  font-size: 1.0625rem;
  line-height: 1.65;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--color-orange);
  color: #fff;
  box-shadow: 0 6px 18px rgba(232,93,47,0.32);
}
.btn-primary:hover {
  background: var(--color-orange-soft);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(232,93,47,0.42);
}
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255,255,255,0.18); border-color: #fff; }
.btn-whatsapp {
  background: #fff;
  color: var(--color-text);
  padding: 16px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.btn-whatsapp svg:first-of-type { color: #25D366; width: 20px; height: 20px; }
.btn-whatsapp .arrow { color: var(--color-text); }
.btn-whatsapp:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(0,0,0,0.22); }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-line);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}
.logo-mark { color: var(--color-orange); }
.logo-name { color: var(--color-text); font-weight: 500; font-size: 1rem; }
.logo-light .logo-name { color: var(--color-text-light); }

.site-nav {
  display: flex;
  gap: 32px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
}
.site-nav a { position: relative; padding: 6px 0; transition: color 0.2s; }
.site-nav a:hover { color: var(--color-orange); }
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--color-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.25s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.mobile-drawer a { font-weight: 600; font-size: 1.05rem; padding: 8px 0; }
.mobile-drawer .btn { width: 100%; justify-content: center; margin-top: 10px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-color: #0e2128;
  background-image: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?w=1200&q=80');
  background-size: cover;
  background-position: center;
  filter: saturate(1.1) brightness(0.5) contrast(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    /* Camada preta translúcida pra escurecer toda a foto */
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    /* Degradê diagonal teal → laranja por cima */
    linear-gradient(135deg,
      rgba(20,68,80,0.82) 0%,
      rgba(20,68,80,0.62) 22%,
      rgba(60,55,55,0.55) 45%,
      rgba(232,93,47,0.62) 70%,
      rgba(232,93,47,0.82) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 820px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(20,48,56,0.45);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.pill-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-orange);
  box-shadow: 0 0 0 4px rgba(232,93,47,0.28);
}

.hero-title {
  font-size: clamp(2.4rem, 5.2vw + 0.5rem, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 0 24px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.95);
  display: inline-block;
  margin-top: 4px;
  font-size: 0.86em;
  letter-spacing: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
  margin: 0 0 36px;
  max-width: 560px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.15);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-features {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.95);
}
.hero-features li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(0,0,0,0.15);
}
.icon-check {
  width: 16px; height: 16px;
  color: var(--color-orange-glow);
  flex-shrink: 0;
}

/* ============ SECTIONS ============ */
.section { padding: 110px 0; position: relative; }
.section-head { margin-bottom: 56px; max-width: 780px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .section-lead { margin: 0 auto; }

/* ===== About ===== */
.section-about {
  background: var(--color-cream);
  position: relative;
  overflow: hidden;
}
.section-about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1556761175-b413da4baf72?w=1600&q=70');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
}
.section-about > * { position: relative; }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}
.about-right p { color: var(--color-text-soft); margin: 0 0 18px; font-size: 1.0625rem; line-height: 1.7; }
.about-right p:last-child { margin-bottom: 0; }
.about-right strong { color: var(--color-text); font-weight: 600; }

.about-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--color-orange);
  color: #fff;
  margin-bottom: 18px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 1.0625rem; font-weight: 700; margin: 0 0 8px; letter-spacing: -0.01em; }
.feature-card p { font-size: 0.9375rem; color: var(--color-text-muted); margin: 0; line-height: 1.55; }

/* ===== Pillars ===== */
.section-pillars { background: var(--color-bg-pillars); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 235px;
  gap: 18px;
}
.pillar {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pillar-tall { grid-row: span 2; }

.pillar-media {
  height: 60%;
  background-size: cover;
  background-position: center;
  position: relative;
}
.pillar-tall .pillar-media { height: 65%; }
.pillar-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.55) 100%);
}
.pillar h3 {
  position: absolute;
  left: 22px;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
  z-index: 2;
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.pillar h3 { top: calc(60% - 44px); }
.pillar-tall h3 { top: calc(65% - 44px); }

.pillar p {
  padding: 18px 22px 22px;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.pillar-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--color-orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(232,93,47,0.4);
}
.pillar-icon svg { width: 18px; height: 18px; }

.pillar-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.25s;
}
.pillar-arrow:hover,
.pillar:hover .pillar-arrow { background: var(--color-orange); color: #fff; transform: rotate(-15deg); }
.pillar-arrow svg { width: 16px; height: 16px; }

/* ===== Methodology ===== */
.section-methodology {
  background: var(--color-navy);
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
}
.section-methodology::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(232,93,47,0.12), transparent 50%);
  pointer-events: none;
}
.methodology-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.methodology-content p {
  color: var(--color-text-light-2);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin: 0 0 20px;
}
.methodology-content p:last-child { margin-bottom: 0; }
.methodology-content strong { color: #fff; font-weight: 600; }

.methodology-mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
}
.mark-bubble {
  position: relative;
  z-index: 3;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--color-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 0 12px rgba(232,93,47,0.18), 0 20px 60px rgba(232,93,47,0.4);
}
.mark-bubble svg { width: 42px; height: 42px; }
.mark-rings { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.mark-rings span {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  animation: pulseRing 3.6s ease-out infinite;
}
.mark-rings span:nth-child(1) { width: 160px; height: 160px; animation-delay: 0s; }
.mark-rings span:nth-child(2) { width: 230px; height: 230px; animation-delay: 1.2s; }
.mark-rings span:nth-child(3) { width: 310px; height: 310px; animation-delay: 2.4s; }
@keyframes pulseRing {
  0%   { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(1.05); opacity: 0; }
}

/* ===== Leaders ===== */
.section-leaders { background: var(--color-cream-soft); }
.leaders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.leader-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.leader-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.leader-photo {
  height: 360px;
  background: linear-gradient(135deg, #E8E2D8 0%, #D5CCBE 100%);
  position: relative;
  overflow: hidden;
}
.photo-placeholder {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-placeholder::before {
  content: attr(data-initials);
  position: absolute;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 6rem;
  color: rgba(20,48,56,0.18);
  letter-spacing: -0.03em;
}
.photo-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}
.leader-info { padding: 28px 30px 32px; }
.leader-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 4px;
  letter-spacing: -0.015em;
}
.leader-role {
  display: block;
  font-size: 0.875rem;
  color: var(--color-orange);
  font-weight: 600;
  margin-bottom: 18px;
}
.leader-info p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text-soft);
  margin: 0 0 22px;
}
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags li {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text-soft);
  background: var(--color-cream);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ===== CTA ===== */
.section-cta { padding: 60px 0 110px; background: var(--color-cream-soft); }
.cta-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 60px 56px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
  color: #fff;
  box-shadow: 0 20px 60px rgba(232,93,47,0.25);
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,180,140,0.35), transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(200,75,34,0.45), transparent 60%),
    linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
  z-index: 0;
}
.cta-content, .cta-contacts { position: relative; z-index: 1; }
.cta-content p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
  margin: 0 0 32px;
  max-width: 480px;
}
.cta-content .eyebrow-on-dark { color: rgba(255,255,255,0.85); }
.cta-content .section-title { margin-bottom: 24px; }

.cta-contacts { display: flex; flex-direction: column; gap: 14px; }
.contact-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  transition: all 0.25s;
}
.contact-pill:hover { background: rgba(255,255,255,0.22); transform: translateX(4px); }
.contact-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2px;
}
.contact-value { display: block; font-size: 0.95rem; font-weight: 600; color: #fff; word-break: break-word; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--color-navy);
  color: var(--color-text-light-2);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--color-line-light);
}
.footer-brand p {
  margin-top: 18px;
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 320px;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col li {
  font-size: 0.9rem;
  color: var(--color-text-light-2);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--color-orange-glow); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-tag {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-orange-glow);
}

/* ============ ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .section { padding: 90px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-cards { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .pillar-tall { grid-row: span 1; }
  .pillar-tall .pillar-media { height: 60%; }
  .pillar-tall h3 { top: calc(60% - 44px); }

  .methodology-grid { grid-template-columns: 1fr; gap: 50px; }
  .methodology-mark { height: 260px; }
  .cta-card { grid-template-columns: 1fr; gap: 36px; padding: 48px 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 720px) {
  .site-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .site-header.menu-open { background: #fff; }
  .site-header.menu-open .mobile-drawer { display: flex; }

  .hero { padding: 120px 0 70px; min-height: auto; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-features { gap: 14px 22px; }

  .section { padding: 70px 0; }
  .section-title { font-size: clamp(1.8rem, 6vw + 0.4rem, 2.4rem); }

  .about-cards { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .leaders-grid { grid-template-columns: 1fr; }
  .leader-photo { height: 320px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-card { padding: 40px 26px; }
  .contact-pill { padding: 14px 16px; gap: 12px; }
  .contact-value { font-size: 0.88rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ========================================================
   PÁGINAS INTERNAS DE PILAR (pilar-*.html)
   ======================================================== */

/* Header sobre qualquer hero escuro (home + páginas de pilar) */
.site-header:not(.scrolled) .site-nav a,
.site-header:not(.scrolled) .logo-name {
  color: var(--color-text-light);
}
.site-header:not(.scrolled) .menu-toggle span {
  background: var(--color-text-light);
}

/* ===== Hero do Pilar (fundo navy) ===== */
.pillar-hero {
  position: relative;
  background: var(--color-navy);
  color: var(--color-text-light);
  padding: 160px 0 100px;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: center;
}
.pillar-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: saturate(0.9);
}
.pillar-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(20,48,56,0.95) 0%, rgba(20,48,56,0.78) 55%, rgba(20,48,56,0.55) 100%),
    radial-gradient(circle at 90% 50%, rgba(232,93,47,0.10), transparent 60%);
}
.pillar-hero-inner { position: relative; z-index: 2; max-width: 760px; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  transition: color 0.2s, transform 0.2s;
}
.back-link svg { width: 16px; height: 16px; }
.back-link:hover { color: var(--color-orange-glow); transform: translateX(-3px); }

.pilar-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.pilar-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--color-orange);
  color: #fff;
  box-shadow: 0 6px 18px rgba(232,93,47,0.4);
}
.pilar-badge-icon svg { width: 22px; height: 22px; }
.pilar-badge-text {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}

.pillar-hero-title {
  font-size: clamp(2.4rem, 5.4vw + 0.4rem, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 24px;
  color: #fff;
}
.pillar-hero-lead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 0 36px;
}

.btn-pill-cta {
  padding: 16px 26px;
  font-size: 0.95rem;
}
.btn-pill-cta svg { width: 18px; height: 18px; }

/* ===== Seção Escopo ===== */
.scope-section { background: var(--color-cream); padding: 110px 0; }
.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.scope-left .section-title { font-size: clamp(1.8rem, 3.5vw + 0.4rem, 2.6rem); }
.scope-left .section-lead { font-size: 0.98rem; margin-top: 20px; }

.deliverables { display: flex; flex-direction: column; gap: 14px; }
.deliverable {
  background: #fff;
  padding: 22px 26px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 2px 6px rgba(20,48,56,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--color-text);
}
.deliverable:hover { transform: translateX(4px); box-shadow: 0 6px 18px rgba(20,48,56,0.08); }
.deliverable .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(232,93,47,0.12);
  color: var(--color-orange);
  flex-shrink: 0;
}
.deliverable .check svg { width: 16px; height: 16px; }

/* ===== Imagem destacada ===== */
.featured-image-section { background: var(--color-cream); padding: 0 0 110px; }
.featured-image {
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: var(--radius-xl);
  background-color: var(--color-navy);
  background-image: linear-gradient(135deg, rgba(20,48,56,0.0), rgba(232,93,47,0.0));
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 60px rgba(20,48,56,0.18);
  position: relative;
  overflow: hidden;
}
.featured-image::after {
  /* Padrão geométrico de fallback caso a imagem não carregue */
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(232,93,47,0.12), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(232,93,47,0.08), transparent 50%);
  z-index: 0;
}
.featured-image[style*="url"]::after {
  /* Quando há imagem de fundo, esconde o fallback */
  display: none;
}

/* ===== Outros pilares ===== */
.other-pillars-section { background: var(--color-bg-pillars); padding: 90px 0 110px; }
.other-pillars-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 16px;
  flex-wrap: wrap;
}
.other-pillars-title {
  font-size: clamp(1.5rem, 2.5vw + 0.4rem, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}
.view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-orange);
  transition: gap 0.25s, color 0.2s;
}
.view-all svg { width: 16px; height: 16px; }
.view-all:hover { color: var(--color-orange-dark); gap: 10px; }

.other-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.other-pillar-card {
  background: #fff;
  padding: 26px 24px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  color: var(--color-text);
}
.other-pillar-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.other-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(20,48,56,0.06);
  color: var(--color-navy);
}
.other-icon svg { width: 20px; height: 20px; }
.other-pillar-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.other-pillar-card p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}

/* ===== Responsivo das páginas internas ===== */
@media (max-width: 1024px) {
  .pillar-hero { padding: 140px 0 80px; min-height: auto; }
  .scope-grid { grid-template-columns: 1fr; gap: 48px; }
  .other-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-image { aspect-ratio: 4 / 2.4; }
}
@media (max-width: 720px) {
  .pillar-hero { padding: 120px 0 64px; }
  .scope-section, .other-pillars-section { padding: 70px 0; }
  .featured-image-section { padding-bottom: 70px; }
  .featured-image { aspect-ratio: 4 / 3; border-radius: var(--radius-lg); }
  .other-pillars-grid { grid-template-columns: 1fr; }
  .deliverable { padding: 18px 20px; gap: 14px; }
}

