/* ============================================================
   HERMES DANTE — Site Profissional
   Design: Swiss Minimalism Executivo ("Arquitetura Invisível")
   Paleta: Off-white (#F7F5F0) + Azul-petróleo (#1B4965) + Dourado (#8B7355)
   Tipografia: Playfair Display (serif) + Source Sans 3 (sans-serif)
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --petrol: #1B4965;
  --petrol-light: #2A6F97;
  --petrol-dark: #0F2D40;
  --gold: #8B7355;
  --gold-light: #A8956F;
  --warm-white: #F7F5F0;
  --graphite: #1A1A2E;
  --graphite-light: #5A5A6E;
  --border: #E8E5DD;
  --card-bg: #FDFCF9;
  --muted: #9A9A9A;
}

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

body {
  font-family: 'Source Sans 3', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--warm-white);
  color: var(--graphite);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  line-height: 1.1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

ul {
  list-style: none;
}

main {
  flex: 1; /* faz o conteúdo ocupar o espaço restante */
}

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #EDE9E1; }
::-webkit-scrollbar-thumb { background: rgba(27,73,101,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(27,73,101,0.5); }

::selection {
  background: rgba(27,73,101,0.15);
  color: var(--graphite);
}

/* ── Utilities ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.section-overline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-overline .line {
  width: 3rem;
  height: 1.5px;
  background: var(--gold);
}

.section-overline span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ── Animations ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes progress-fill {
  from { width: 0; }
}

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.5s ease, box-shadow 0.5s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(247, 245, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 1024px) {
  .navbar-inner { height: 5rem; }
}

.navbar-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--petrol);
  letter-spacing: -0.02em;
}

@media (min-width: 1024px) {
  .navbar-logo { font-size: 1.5rem; }
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .navbar-links { display: flex; }
}

.navbar-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--graphite-light);
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--petrol);
  transition: width 0.3s ease;
}

.navbar-links a:hover {
  color: var(--petrol);
}

.navbar-links a:hover::after {
  width: 100%;
}

.btn-cta-nav {
  margin-left: 0.5rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--petrol);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-cta-nav:hover {
  background: var(--petrol-dark);
}

/* Mobile Toggle */
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--petrol);
}

@media (min-width: 768px) {
  .mobile-toggle { display: none; }
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(247, 245, 240, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
}

.mobile-menu.open {
  display: flex;
}

@media (min-width: 768px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--graphite-light);
  padding: 0.25rem 0;
}

.mobile-menu a:hover {
  color: var(--petrol);
}

.btn-cta-mobile {
  margin-top: 0.5rem;
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--petrol);
  color: #fff;
  border: none;
  cursor: pointer;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 30, 45, 0.92),
    rgba(15, 30, 45, 0.75),
    rgba(15, 30, 45, 0.4)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 8rem 0 4rem;
}

@media (min-width: 1024px) {
  .hero-content { padding: 0; }
}

.hero-overline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInLeft 0.6s 0.2s forwards;
}

@keyframes fadeInLeft {
  to { opacity: 1; transform: translateX(0); }
}

.hero-overline .line {
  width: 3rem;
  height: 1.5px;
  background: var(--gold);
}

.hero-overline span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s 0.4s forwards;
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 .accent {
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.7s 0.7s forwards;
}

@media (min-width: 1024px) {
  .hero-subtitle { font-size: 1.25rem; }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.7s 0.9s forwards;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: #fff;
  color: var(--petrol-dark);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: rgba(255,255,255,0.9);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  animation: float 2s ease-in-out infinite;
  opacity: 0;
  animation: fadeInUp 0.5s 1.5s forwards, float 2s 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-indicator svg {
  width: 16px;
  height: 16px;
}

/* ── Section: Sobre ───────────────────────────────────────── */
.section-sobre {
  padding: 6rem 0;
  background: var(--warm-white);
}

@media (min-width: 1024px) {
  .section-sobre { padding: 8rem 0; }
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--petrol);
  margin-bottom: 0.5rem;
}

.section-title .light {
  color: var(--graphite-light);
}

.sobre-grid {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .sobre-grid {
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
  }
}

.sobre-text p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(26,26,46,0.8);
  margin-bottom: 1.5rem;
}

.sobre-text strong {
  color: var(--petrol);
  font-weight: 600;
}

.sobre-separator {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 2rem 0 2.5rem;
}

.traits-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .traits-grid { grid-template-columns: 1fr 1fr; }
}

.trait-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.trait-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27,73,101,0.05);
  border-radius: 2px;
  color: var(--petrol);
  transition: background 0.3s ease;
}

.trait-item:hover .trait-icon {
  background: rgba(27,73,101,0.1);
}

.trait-icon svg {
  width: 18px;
  height: 18px;
}

.trait-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.trait-item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Sobre Image */
.sobre-image-wrapper {
  position: relative;
}

.sobre-image-wrapper img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.sobre-quote {
  margin-top: 1.5rem;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
}

.sobre-quote p {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Section: Experiência ─────────────────────────────────── */
.section-experiencia {
  padding: 6rem 0;
  background: var(--petrol-dark);
}

@media (min-width: 1024px) {
  .section-experiencia { padding: 8rem 0; }
}

.section-experiencia .section-overline span {
  color: var(--gold-light);
}

.section-experiencia .section-title {
  color: #fff;
}

.section-experiencia .section-title .light {
  color: rgba(255,255,255,0.5);
}

.section-experiencia .section-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.6);
  max-width: 640px;
  margin-top: 1rem;
}

/* Timeline */
.timeline {
  margin-top: 4rem;
  position: relative;
  padding-left: 3rem;
}

@media (min-width: 1024px) {
  .timeline { padding-left: 5rem; }
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

@media (min-width: 1024px) {
  .timeline::before { left: 2rem; }
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -2.35rem;
  top: 0.5rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: var(--petrol-dark);
}

@media (min-width: 1024px) {
  .timeline-dot { left: -3.35rem; }
}

.timeline-item.active .timeline-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(139,115,85,0.4);
}

.timeline-card {
  padding: 1.5rem;
  border-left: 4px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  transition: background 0.3s ease;
}

@media (min-width: 1024px) {
  .timeline-card { padding: 2rem; }
}

.timeline-card:hover {
  background: rgba(255,255,255,0.05);
}

.timeline-item.active .timeline-card {
  border-left-color: var(--gold);
  background: rgba(255,255,255,0.07);
}

.timeline-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: 0.75rem;
}

.timeline-period {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.badge-active {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.15rem 0.5rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(139,115,85,0.2);
  color: var(--gold-light);
}

.badge-active .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

.timeline-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

@media (min-width: 1024px) {
  .timeline-card h3 { font-size: 1.875rem; }
}

.timeline-role {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.25rem;
}

.timeline-sector {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.timeline-sector svg {
  width: 13px;
  height: 13px;
}

.timeline-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.timeline-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.timeline-highlights li svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 0.2rem;
  color: rgba(139,115,85,0.6);
}

/* ── Section: Competências ────────────────────────────────── */
.section-competencias {
  position: relative;
  padding: 6rem 0;
  background: var(--warm-white);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .section-competencias { padding: 8rem 0; }
}

.competencias-bg {
  position: absolute;
  inset: 0;
  opacity: 0.04;
}

.competencias-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-competencias .container {
  position: relative;
  z-index: 1;
}

.competencias-grid {
  display: grid;
  gap: 3rem;
  margin-top: 3.5rem;
}

@media (min-width: 1024px) {
  .competencias-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.comp-card {
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
}

.comp-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.comp-card-header svg {
  width: 20px;
  height: 20px;
  color: var(--petrol);
}

.comp-card-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.comp-card-desc {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* Progress Bars */
.skill-item {
  margin-bottom: 1.25rem;
}

.skill-item:last-child {
  margin-bottom: 0;
}

.skill-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.skill-label span:first-child {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(26,26,46,0.8);
}

.skill-label span:last-child {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--petrol);
}

.skill-bar {
  width: 100%;
  height: 6px;
  background: rgba(27,73,101,0.1);
  border-radius: 3px;
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--petrol), var(--petrol-light));
  border-radius: 3px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.skill-bar-fill.animated {
  animation: progress-fill 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* BI Tools */
.bi-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.bi-tool {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(27,73,101,0.03);
  transition: background 0.3s ease;
  text-align: center;
}

.bi-tool:hover {
  background: rgba(27,73,101,0.07);
}

.bi-tool svg {
  width: 24px;
  height: 24px;
  color: var(--petrol);
}

.bi-tool span {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(26,26,46,0.7);
}

/* Strategic Areas */
.strategic-areas {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.strategic-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.strategic-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139,115,85,0.1);
  transition: background 0.3s ease;
}

.strategic-item:hover .strategic-icon {
  background: rgba(139,115,85,0.2);
}

.strategic-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.strategic-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.strategic-item p {
  font-size: 0.875rem;
  color: var(--muted);
}

/* ── Section: Formação ────────────────────────────────────── */
.section-formacao {
  padding: 6rem 0;
  background: #F2EFE8;
}

@media (min-width: 1024px) {
  .section-formacao { padding: 8rem 0; }
}

.section-formacao .section-subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 640px;
  margin-top: 1rem;
}

.formacao-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

@media (min-width: 768px) {
  .formacao-grid { grid-template-columns: repeat(3, 1fr); }
}

.formacao-card {
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: box-shadow 0.5s ease, transform 0.3s ease;
  height: 100%;
}

.formacao-card:hover {
  box-shadow: 0 8px 30px rgba(27,73,101,0.06);
  transform: translateY(-2px);
}

.formacao-icon {
  display: inline-flex;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.formacao-card:hover .formacao-icon {
  transform: scale(1.05);
}

.formacao-icon svg {
  width: 24px;
  height: 24px;
  color: var(--petrol);
}

.formacao-icon.muted { background: rgba(154,154,154,0.1); }
.formacao-icon.active { background: rgba(27,73,101,0.1); }

.formacao-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.formacao-status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.formacao-status.muted { color: var(--muted); }
.formacao-status.active { color: var(--petrol); }

.formacao-separator {
  width: 2rem;
  height: 1.5px;
  background: var(--gold);
  margin-bottom: 1rem;
}

.formacao-card .institution {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(26,26,46,0.8);
  margin-bottom: 0.25rem;
}

.formacao-card .location {
  font-size: 0.875rem;
  color: var(--muted);
}

/* ── Section: Diferencial ─────────────────────────────────── */
.section-diferencial {
  padding: 6rem 0;
  background: var(--petrol);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .section-diferencial { padding: 8rem 0; }
}

.section-diferencial .glow-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(139,115,85,0.05);
  border-radius: 50%;
  filter: blur(120px);
}

.section-diferencial .glow-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  filter: blur(100px);
}

.section-diferencial .container {
  position: relative;
  z-index: 1;
}

.section-diferencial .section-overline span {
  color: var(--gold-light);
}

.section-diferencial .section-title {
  color: #fff;
}

.section-diferencial .section-title .light {
  color: rgba(255,255,255,0.4);
}

.section-diferencial .section-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.6);
  max-width: 640px;
  margin-top: 1rem;
  line-height: 1.7;
}

.pillars-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 4rem;
}

@media (min-width: 640px) {
  .pillars-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(4, 1fr); }
}

.pillar-card {
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  transition: background 0.5s ease, transform 0.3s ease;
  height: 100%;
}

@media (min-width: 1024px) {
  .pillar-card { padding: 2rem; }
}

.pillar-card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
}

.pillar-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(139,115,85,0.2);
  transition: color 0.5s ease;
}

.pillar-card:hover .pillar-number {
  color: rgba(139,115,85,0.4);
}

.pillar-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.pillar-separator {
  width: 2rem;
  height: 1.5px;
  background: var(--gold);
  margin-bottom: 1rem;
}

.pillar-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.diferencial-cta {
  margin-top: 4rem;
  text-align: center;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: var(--gold);
  color: var(--petrol-dark);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-gold:hover {
  background: var(--gold-light);
}

.btn-gold svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-gold:hover svg {
  transform: translateX(4px);
}

/* ── Section: Perfil ──────────────────────────────────────── */
.section-perfil {
  padding: 6rem 0;
  background: var(--warm-white);
}

@media (min-width: 1024px) {
  .section-perfil { padding: 8rem 0; }
}

.perfil-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3.5rem;
}

@media (min-width: 640px) {
  .perfil-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .perfil-grid { grid-template-columns: repeat(3, 1fr); }
}

.perfil-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  transition: background 0.3s ease;
}

.perfil-item:hover {
  background: #F2EFE8;
}

.perfil-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27,73,101,0.05);
  border-radius: 2px;
  transition: background 0.3s ease;
}

.perfil-item:hover .perfil-icon {
  background: rgba(27,73,101,0.1);
}

.perfil-icon svg {
  width: 20px;
  height: 20px;
  color: var(--petrol);
}

.perfil-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.perfil-item p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Objectives Block */
.objectives-block {
  margin-top: 5rem;
  padding: 2rem;
  background: #F2EFE8;
  border-left: 4px solid var(--petrol);
}

@media (min-width: 1024px) {
  .objectives-block { padding: 3rem; }
}

.objectives-block h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--petrol);
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .objectives-block h3 { font-size: 1.875rem; }
}

.objectives-block p {
  font-size: 1rem;
  color: rgba(26,26,46,0.8);
  line-height: 1.75;
  max-width: 720px;
}

@media (min-width: 1024px) {
  .objectives-block p { font-size: 1.125rem; }
}

/* ── Section: Contato ─────────────────────────────────────── */
.section-contato {
  padding: 6rem 0;
  background: var(--petrol-dark);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .section-contato { padding: 8rem 0; }
}

.section-contato .glow {
  position: absolute;
  top: 50%;
  right: 0;
  width: 500px;
  height: 500px;
  background: rgba(139,115,85,0.05);
  border-radius: 50%;
  filter: blur(150px);
  transform: translateY(-50%);
}

.section-contato .container {
  position: relative;
  z-index: 1;
}

.contato-grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contato-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.section-contato .section-overline span {
  color: var(--gold-light);
}

.section-contato .section-title {
  color: #fff;
}

.section-contato .section-title .light {
  color: rgba(255,255,255,0.4);
}

.contato-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.6);
  max-width: 420px;
  line-height: 1.7;
}

.contato-links {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contato-link {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contato-link-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  transition: background 0.3s ease;
}

.contato-link:hover .contato-link-icon {
  background: rgba(255,255,255,0.1);
}

.contato-link-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold-light);
}

.contato-link-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.15rem;
}

.contato-link-value {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.contato-link:hover .contato-link-value {
  color: #fff;
}

.contato-link-value .arrow {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contato-link:hover .contato-link-value .arrow {
  opacity: 1;
}

.contato-link-value .arrow svg {
  width: 14px;
  height: 14px;
}

/* CTA Card */
.contato-cta-card {
  display: flex;
  align-items: center;
}

.contato-cta-inner {
  width: 100%;
  padding: 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
}

.cv-actions {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-cv-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--gold);
  border: 1px solid var(--gold);
  transition: all 0.3s ease;
}

.btn-cv-primary svg {
  width: 18px;
  height: 18px;
}

.btn-cv-primary:hover {
  background: var(--gold);
  color: #0F2D40;
}

.btn-cv-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  transition: all 0.3s ease;
}

.btn-cv-secondary svg {
  width: 18px;
  height: 18px;
}

.btn-cv-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

@media (min-width: 1024px) {
  .contato-cta-inner { padding: 3rem; }
}

.contato-cta-inner h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .contato-cta-inner h3 { font-size: 1.875rem; }
}

.contato-cta-inner > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contato-differentials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.contato-differentials li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}

.contato-differentials li .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.btn-gold-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: var(--gold);
  color: var(--petrol-dark);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-gold-full:hover {
  background: var(--gold-light);
}

.btn-gold-full svg {
  width: 16px;
  height: 16px;
}

a.nav-highlight {
  position: relative;
  font-weight: 600;
  color: var(--gold);
  transition: all 0.3s ease;
}

a.nav-highlight::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

/* Hover */
a.nav-highlight:hover::after {
  width: 100%;
}

/* Se estiver ativo */
a.nav-highlight.active::after {
  width: 100%;
}

.insights-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.insight-card {
  padding: 28px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  background: var(--card-bg);
  border-radius: 6px;
}

.insight-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.insight-meta {
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  color: var(--muted);
}

.insight-category {
  color: var(--gold);
  font-weight: 600;
}

.insight-title {
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.insight-excerpt {
  font-size: 0.9rem;
  color: var(--graphite-light);
  margin-bottom: 16px;
}

.insight-link {
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}

.insight-link:hover {
  opacity: 0.8;
}

/* ── Modal ───────────────────────────────────────────────── */
#modal-root {
  position: fixed;
  inset: 0;
  z-index: 5000;
  pointer-events: none;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,15,15,0.6);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1);
}

.modal-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 6vh 20px;
  overflow-y: auto;

  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: 
    opacity 0.35s cubic-bezier(.4,0,.2,1),
    transform 0.35s cubic-bezier(.4,0,.2,1);
}

.modal-article {
  width: min(820px,100%);
  background: var(--card-bg);
  border-radius: 12px;
  padding: 60px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);

  line-height: 1.7;
  font-size: 1.05rem;
}

.modal-article h1 {
  margin-bottom: 25px;
  font-weight: 600;
}

.modal-close {
  position: fixed;
  top: 30px;
  right: 40px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.5);
  color: var(--gold);
  font-size: 22px;
  cursor: pointer;
}

#modal-root.active {
  pointer-events: auto;
}

#modal-root.active .modal-overlay {
  opacity: 1;
}

#modal-root.active .modal-wrapper {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Modal Mobile ───────────────────────────────────────── */
@media (max-width: 768px) {

  .modal-wrapper {
    padding: 4vh 16px;
    align-items: flex-start;
  }

  .modal-article {
    width: 100%;
    border-radius: 16px;
    padding: 28px 22px 40px;
    font-size: 0.98rem;
    line-height: 1.65;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  }

  .modal-article h1 {
    font-size: 1.4rem;
    margin-bottom: 18px;
  }

  .modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  padding: 2rem 0;
  background: var(--graphite);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.3);
}

.footer a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.3s ease;
}

.footer a:hover {
  color: rgba(255,255,255,0.6);
}