/*
Theme Name: FS Assessoria
Theme URI: https://fs-assessoria.com/
Author: Rodrigo Pacheco
Author URI: https://fs-assessoria.com/
Description: Tema institucional premium desenvolvido sob medida para FS Assessoria — escritório especializado em defesa do consumidor. Design editorial-jurídico com transições suaves, números animados e estética refinada.
Version: 1.4.1
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fs-assessoria
Tags: business, professional, legal, dark, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================================
   FS ASSESSORIA — IDENTIDADE VISUAL
   Estética: Editorial-Jurídica, sóbria e premium
   Paleta: Carvão profundo + Marfim + Ouro velho
============================================================ */
:root {
  --ink: #0c0c0e;
  --ink-soft: #1a1a1f;
  --ink-mid: #2a2a30;
  --line: rgba(232, 220, 196, 0.12);
  --line-strong: rgba(232, 220, 196, 0.28);
  --ivory: #f4ecdc;
  --ivory-soft: #e8dcc4;
  --paper: #f7f1e3;
  --gold: #c9a25b;
  --gold-bright: #e0b970;
  --gold-deep: #8c6d35;
  --burgundy: #5b1a1a;
  --shadow-deep: 0 30px 80px rgba(0,0,0,0.45);

  --serif-display: 'Playfair Display', 'Times New Roman', serif;
  --serif-body: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter Tight', -apple-system, sans-serif;

  --easing: cubic-bezier(0.65, 0, 0.35, 1);
  --easing-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--ivory);
  overflow-x: hidden;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--gold); color: var(--ink); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============================================================
   PRELOADER
============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s var(--easing), visibility 1s var(--easing);
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-content { text-align: center; }
.preloader-monogram {
  font-family: var(--serif-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
}
.preloader-monogram::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  animation: lineGrow 2s var(--easing) forwards;
}
@keyframes lineGrow { to { width: 100%; left: 0; } }
.preloader-text {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  color: var(--ivory-soft);
  text-transform: uppercase;
  margin-top: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--easing) 0.8s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 0.7; transform: translateY(0); }
}

/* ============================================================
   PAGE TRANSITION OVERLAY
============================================================ */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 8000;
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.page-transition .panel {
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s var(--easing);
}
.page-transition.entering .panel { transform: scaleY(1); }
.page-transition.exiting .panel { transform: scaleY(0); transform-origin: bottom; }
.page-transition .panel:nth-child(1) { transition-delay: 0s; }
.page-transition .panel:nth-child(2) { transition-delay: 0.05s; }
.page-transition .panel:nth-child(3) { transition-delay: 0.1s; }
.page-transition .panel:nth-child(4) { transition-delay: 0.15s; }
.page-transition .panel:nth-child(5) { transition-delay: 0.2s; }
.page-transition .panel:nth-child(6) { transition-delay: 0.25s; }

/* ============================================================
   TOP BAR
============================================================ */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(12, 12, 14, 0.85);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: all 0.4s var(--easing);
}
.top-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--serif-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  position: relative;
  transition: all 0.4s var(--easing);
}
.brand-mark::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid var(--line);
  pointer-events: none;
  transition: all 0.4s var(--easing);
}
.brand:hover .brand-mark { background: var(--gold); color: var(--ink); }
.brand:hover .brand-mark::before { inset: 1px; border-color: var(--ink); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ivory);
}
.brand-tag {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 0.5rem; }
.nav-link {
  position: relative;
  padding: 0.7rem 1.2rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.nav-link::before {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--easing);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::before { width: calc(100% - 2.4rem); }
.nav-link.active,
.nav-link.current-menu-item,
.current-menu-item > .nav-link { color: var(--gold); }
.nav-link.active::before,
.nav-link.current-menu-item::before,
.current-menu-item > .nav-link::before { width: calc(100% - 2.4rem); }

.nav-cta {
  margin-left: 1rem;
  padding: 0.85rem 1.6rem;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  transition: all 0.4s var(--easing);
  position: relative;
  overflow: hidden;
}
.nav-cta span { position: relative; z-index: 2; }
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(100%);
  transition: transform 0.4s var(--easing);
  z-index: 1;
}
.nav-cta:hover { color: var(--gold); }
.nav-cta:hover::before { transform: translateY(0); }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 1px;
  background: var(--ivory);
  transition: all 0.3s var(--easing);
}
.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 26px; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg); top: 21px; }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg); top: 21px; }

/* ============================================================
   PAGE CONTAINER
============================================================ */
.site-main {
  padding-top: 88px;
  animation: pageEnter 0.9s var(--easing-out) 0.4s forwards;
  opacity: 0;
}
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   HERO — HOME
============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-content {
  padding: 5rem 4rem 4rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: revealUp 1s var(--easing-out) 0.8s forwards;
}
.hero-eyebrow::before { content: ''; width: 60px; height: 1px; background: var(--gold); }

.hero-title {
  font-family: var(--serif-display);
  font-size: clamp(2.6rem, 5.2vw, 5.2rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin-bottom: 2rem;
}
.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: revealUp 1.2s var(--easing-out) forwards;
}
.hero-title .accent { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-title .word:nth-child(1) { animation-delay: 1s; }
.hero-title .word:nth-child(2) { animation-delay: 1.1s; }
.hero-title .word:nth-child(3) { animation-delay: 1.2s; }
.hero-title .word:nth-child(4) { animation-delay: 1.3s; }
.hero-title .word:nth-child(5) { animation-delay: 1.4s; }
.hero-title .word:nth-child(6) { animation-delay: 1.5s; }
.hero-title .word:nth-child(7) { animation-delay: 1.6s; }

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

.hero-desc {
  font-family: var(--serif-body);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ivory-soft);
  max-width: 480px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: revealUp 1s var(--easing-out) 1.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: revealUp 1s var(--easing-out) 1.9s forwards;
}

.btn-primary {
  padding: 1.1rem 2.2rem;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--easing);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.btn-primary span { position: relative; z-index: 2; transition: color 0.4s var(--easing); }
.btn-primary svg { position: relative; z-index: 2; transition: transform 0.4s var(--easing); }
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(100%);
  transition: transform 0.5s var(--easing);
  z-index: 1;
}
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary:hover span { color: var(--gold); }
.btn-primary:hover svg { transform: translateX(4px); stroke: var(--gold); }

.btn-ghost {
  padding: 1.1rem 0;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  position: relative;
  transition: color 0.3s ease;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 0.6rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--ivory);
  transform-origin: right;
  transition: transform 0.5s var(--easing);
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost:hover::after { background: var(--gold); }

.hero-meta {
  position: absolute;
  bottom: 3rem;
  left: 4rem;
  right: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  opacity: 0;
  animation: revealUp 1s var(--easing-out) 2.2s forwards;
}
.hero-meta-item {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-soft);
  opacity: 0.6;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.hero-meta-item .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.5); }
}

.hero-visual {
  position: relative;
  background: var(--ink-soft);
  overflow: hidden;
  border-left: 1px solid var(--line);
}
.hero-image-wrap { position: absolute; inset: 0; overflow: hidden; }
.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,12,14,0.85) 0%, rgba(12,12,14,0.3) 50%, rgba(12,12,14,0.7) 100%);
  z-index: 2;
}
.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent 0, transparent 2px, rgba(0,0,0,0.04) 2px, rgba(0,0,0,0.04) 3px);
  z-index: 3;
  pointer-events: none;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) contrast(1.05) brightness(0.85);
  transform: scale(1.08);
  animation: kenBurns 20s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1.08) translate(0, 0); }
  to { transform: scale(1.18) translate(-2%, -1%); }
}

.hero-badge {
  position: absolute;
  top: 3rem;
  right: 3rem;
  z-index: 4;
  background: rgba(12, 12, 14, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-strong);
  padding: 1.2rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: revealUp 1s var(--easing-out) 2.5s forwards;
}
.hero-badge-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  color: var(--gold);
}
.hero-badge-text {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory);
  line-height: 1.3;
}
.hero-badge-text strong {
  display: block;
  font-family: var(--serif-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-transform: none;
  margin-top: 4px;
}

.hero-quote {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  right: 3rem;
  z-index: 4;
  font-family: var(--serif-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ivory);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  opacity: 0;
  animation: revealUp 1s var(--easing-out) 2.7s forwards;
}
.hero-quote-attr {
  display: block;
  margin-top: 1rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-numbering {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  z-index: 4;
  writing-mode: vertical-rl;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ivory-soft);
  opacity: 0.5;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ============================================================
   STATS SECTION (animated counters)
============================================================ */
.stats {
  background: var(--ink-soft);
  padding: 6rem 4rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stats-header {
  max-width: 1400px;
  margin: 0 auto 4rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 4rem;
  flex-wrap: wrap;
}
.stats-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.stats-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.stats-title {
  font-family: var(--serif-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 600px;
}
.stats-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.stats-subtitle {
  font-family: var(--serif-body);
  font-size: 1.15rem;
  color: var(--ivory-soft);
  max-width: 380px;
  line-height: 1.5;
}
.stats-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}
.stat-cell {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  position: relative;
  transition: background 0.4s ease;
}
.stat-cell:hover { background: rgba(201, 162, 91, 0.04); }
.stat-cell::before {
  content: attr(data-num);
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  opacity: 0.5;
}
.stat-number {
  font-family: var(--serif-display);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}
.stat-suffix {
  font-size: 0.6em;
  font-weight: 400;
  color: var(--gold-bright);
  font-style: italic;
}
.stat-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.stat-desc {
  font-family: var(--serif-body);
  font-size: 1rem;
  color: var(--ivory-soft);
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* ============================================================
   SERVICES PREVIEW
============================================================ */
.services-preview {
  padding: 7rem 4rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.section-header {
  max-width: 1400px;
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: end;
}
.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.section-title {
  font-family: var(--serif-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.section-desc {
  font-family: var(--serif-body);
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--ivory-soft);
}
.services-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}
.service-card {
  position: relative;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  overflow: hidden;
  background: var(--ink);
  transition: background 0.5s var(--easing);
  cursor: pointer;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.service-card:hover { background: var(--ink-soft); }
.service-image { position: relative; height: 240px; overflow: hidden; }
.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,12,14,0.2) 0%, rgba(12,12,14,0.7) 100%);
  z-index: 2;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) contrast(1.05);
  transition: transform 0.8s var(--easing), filter 0.5s ease;
}
.service-card:hover .service-image img {
  transform: scale(1.08);
  filter: grayscale(0.1) contrast(1.1);
}
.service-num {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 3;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  background: rgba(12,12,14,0.6);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--line-strong);
}
.service-body { padding: 2.2rem; flex: 1; display: flex; flex-direction: column; }
.service-name {
  font-family: var(--serif-display);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--ivory);
  letter-spacing: -0.01em;
  transition: color 0.4s ease;
}
.service-card:hover .service-name { color: var(--gold); }
.service-text {
  font-family: var(--serif-body);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ivory-soft);
  flex: 1;
}
.service-link {
  margin-top: 1.5rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  transition: gap 0.4s var(--easing);
}
.service-card:hover .service-link { gap: 1.1rem; }

/* ============================================================
   ABOUT TEASER
============================================================ */
.about-teaser {
  padding: 7rem 4rem;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-soft) 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.about-teaser::before {
  content: 'FS';
  position: absolute;
  top: 50%;
  left: -3rem;
  transform: translateY(-50%);
  font-family: var(--serif-display);
  font-size: 35vw;
  font-weight: 700;
  color: rgba(232, 220, 196, 0.025);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.05em;
}
.about-teaser-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.about-img-stack { position: relative; aspect-ratio: 4/5; }
.about-img-main {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.2) contrast(1.05);
  border: 1px solid var(--line-strong);
}
.about-img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 162, 91, 0.3);
  transform: translate(20px, 20px);
  pointer-events: none;
}
/* Par de fotos da equipe na seção Quem Somos da home */
.about-img-pair {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-img-twin {
  width: 100%;
  height: 100%;
  min-height: 480px;
  background-size: cover;
  background-position: center top;
  filter: grayscale(0.15) contrast(1.05);
  transition: filter 0.6s var(--easing);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.about-img-twin::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(12,12,14,0.25));
  pointer-events: none;
}
.about-img-twin:hover {
  filter: grayscale(0) contrast(1.1);
}
.about-img-twin-offset {
  margin-top: 3rem;
}
.about-img-twin-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(12,12,14,0.85);
  backdrop-filter: blur(10px);
  border-left: 2px solid var(--gold);
  padding: 0.7rem 1rem;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  z-index: 2;
}
.about-img-twin-tag strong {
  display: block;
  font-family: var(--serif-display);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--gold);
  text-transform: none;
  font-weight: 600;
  margin-top: 3px;
  line-height: 1.2;
}
@media (max-width: 900px) {
  .about-img-twin { min-height: 320px; }
  .about-img-twin-offset { margin-top: 1.5rem; }
  .about-img-twin-tag {
    bottom: 0.6rem;
    left: 0.6rem;
    right: 0.6rem;
    padding: 0.55rem 0.7rem;
    font-size: 0.55rem;
    letter-spacing: 0.18em;
  }
  .about-img-twin-tag strong { font-size: 0.85rem; }
}
.about-content h3 {
  font-family: var(--serif-display);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.about-content h3 em { font-style: italic; color: var(--gold); font-weight: 400; }
.about-content p {
  font-family: var(--serif-body);
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--ivory-soft);
  margin-bottom: 1.5rem;
}
.about-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin: 2.5rem 0;
}
.pillar {
  display: flex;
  align-items: start;
  gap: 0.8rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.pillar-icon { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.pillar-text {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--ivory);
  font-weight: 400;
}

/* ============================================================
   FOUNDER SECTION
============================================================ */
.founder {
  padding: 8rem 4rem;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.founder-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  align-items: center;
}
.founder-content { padding-right: 2rem; }
.founder-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.founder-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.founder-name {
  font-family: var(--serif-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.founder-name em { font-style: italic; font-weight: 400; color: var(--gold); }
.founder-oab {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ivory-soft);
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line-strong);
  margin-bottom: 2rem;
  display: inline-block;
}
.founder-bio {
  font-family: var(--serif-body);
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--ivory-soft);
  margin-bottom: 1.5rem;
}
.founder-image {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--ink-soft);
  border: 1px solid var(--line-strong);
  overflow: hidden;
}
.founder-image::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--gold);
  transform: translate(20px, 20px);
  z-index: -1;
}
.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
  transition: transform 1s var(--easing), filter 0.5s ease;
}
.founder-image:hover img { transform: scale(1.04); filter: grayscale(0) contrast(1.1); }
.founder-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(12,12,14,0.85);
  backdrop-filter: blur(10px);
  border-left: 2px solid var(--gold);
  padding: 1rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ivory);
}
.founder-tag strong {
  display: block;
  font-family: var(--serif-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-transform: none;
  font-weight: 600;
  margin-top: 4px;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials {
  padding: 8rem 4rem;
  background: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '\201C';
  position: absolute;
  top: -3rem;
  right: 4rem;
  font-family: var(--serif-display);
  font-size: 25rem;
  color: rgba(201, 162, 91, 0.06);
  line-height: 1;
  font-weight: 700;
}
.test-grid {
  max-width: 1400px;
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.test-card {
  padding: 3rem;
  background: var(--ink);
  border: 1px solid var(--line-strong);
  position: relative;
  transition: all 0.5s var(--easing);
}
.test-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}
.test-quote-mark {
  font-family: var(--serif-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 1rem;
  font-weight: 700;
}
.test-headline {
  font-family: var(--serif-display);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.test-text {
  font-family: var(--serif-body);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ivory-soft);
  margin-bottom: 2rem;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.test-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ink-soft);
  border: 1px solid var(--gold);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: var(--serif-display);
  font-weight: 600;
  font-size: 1.3rem;
}
.test-avatar img { width: 100%; height: 100%; object-fit: cover; }
.test-name {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ivory);
}
.test-role {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ivory-soft);
  margin-top: 4px;
}

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section {
  padding: 7rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at center, rgba(201, 162, 91, 0.12) 0%, transparent 60%),
    var(--ink);
  border-bottom: 1px solid var(--line);
}
.cta-section::before, .cta-section::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  left: 50%;
}
.cta-section::before { top: 0; }
.cta-section::after { bottom: 0; }
.cta-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.cta-title {
  font-family: var(--serif-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin: 0 auto 2rem;
}
.cta-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.cta-desc {
  font-family: var(--serif-body);
  font-size: 1.3rem;
  color: var(--ivory-soft);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.55;
}

/* ============================================================
   PAGE LAYOUTS (sobre, servicos, processo, contato)
============================================================ */
.about-hero {
  padding: 5rem 4rem 6rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.about-hero-inner { max-width: 1400px; margin: 0 auto; }
.page-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.page-eyebrow::before { content: ''; width: 60px; height: 1px; background: var(--gold); }
.page-eyebrow .num { margin-left: auto; color: var(--ivory-soft); opacity: 0.6; }
.page-title {
  font-family: var(--serif-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: 900px;
}
.page-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.page-subtitle {
  font-family: var(--serif-body);
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--ivory-soft);
  max-width: 700px;
  margin-top: 2.5rem;
}

.history { padding: 7rem 4rem; border-bottom: 1px solid var(--line); background: var(--ink-soft); }
.history-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}
.history-img {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.2) contrast(1.05);
  border: 1px solid var(--line-strong);
  position: relative;
}
.history-img::after {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--gold);
  transform: translate(20px, 20px);
  z-index: -1;
}
.history-text h2 {
  font-family: var(--serif-display);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}
.history-text h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.history-text p {
  font-family: var(--serif-body);
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--ivory-soft);
  margin-bottom: 1.5rem;
}

.values { padding: 7rem 4rem; border-bottom: 1px solid var(--line); }
.values-grid {
  max-width: 1400px;
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}
.value-card {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  position: relative;
  transition: background 0.4s ease;
}
.value-card:hover { background: rgba(201, 162, 91, 0.03); }
.value-num {
  font-family: var(--serif-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  font-style: italic;
  margin-bottom: 2rem;
}
.value-name {
  font-family: var(--serif-display);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--ivory);
}
.value-text {
  font-family: var(--serif-body);
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ivory-soft);
}

.services-full { padding: 4rem 4rem 7rem; border-bottom: 1px solid var(--line); }
.service-row {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  padding: 5rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.service-row:last-child { border-bottom: none; }
.service-row:nth-child(even) { grid-template-columns: 1.2fr 1fr; }
.service-row:nth-child(even) .service-row-img { order: 2; }
.service-row-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.3) contrast(1.05);
  border: 1px solid var(--line-strong);
  position: relative;
  overflow: hidden;
  transition: filter 0.6s ease;
}
.service-row-img:hover { filter: grayscale(0) contrast(1.1); }
.service-row-img::after {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--gold);
  transform: translate(15px, 15px);
  z-index: -1;
}
.service-row-num {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.service-row-title {
  font-family: var(--serif-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.service-row-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.service-row-text {
  font-family: var(--serif-body);
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--ivory-soft);
  margin-bottom: 1.5rem;
}
.service-row-list { list-style: none; margin-bottom: 2rem; }
.service-row-list li {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--ivory);
  padding: 0.7rem 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.service-row-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  flex-shrink: 0;
  transform: rotate(45deg);
}

.process { padding: 4rem 4rem 7rem; border-bottom: 1px solid var(--line); background: var(--ink-soft); }
.process-steps {
  max-width: 1100px;
  margin: 5rem auto 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 60px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line-strong);
}
.step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 3rem;
  padding: 3rem 0;
  position: relative;
  border-bottom: 1px dashed var(--line);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 120px;
  font-family: var(--serif-display);
  font-size: 4.5rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  position: relative;
  z-index: 2;
}
.step-num::after {
  content: '';
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateX(50%) translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--ink);
  border: 2px solid var(--gold);
  border-radius: 50%;
}
.step-content { padding-top: 1rem; }
.step-title {
  font-family: var(--serif-display);
  font-size: 1.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--ivory);
}
.step-text {
  font-family: var(--serif-body);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ivory-soft);
}

.contact-page { padding: 4rem 4rem 7rem; border-bottom: 1px solid var(--line); }
.contact-grid {
  max-width: 1400px;
  margin: 5rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--serif-display);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}
.contact-info h3 em { font-style: italic; color: var(--gold); font-weight: 400; }
.contact-list { list-style: none; }
.contact-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line-strong);
  display: flex;
  align-items: start;
  gap: 1.5rem;
  cursor: pointer;
  transition: padding 0.4s var(--easing);
  text-decoration: none;
  color: inherit;
}
.contact-item:hover { padding-left: 1rem; }
.contact-item:hover .contact-label { color: var(--gold); }
.contact-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  transition: all 0.4s var(--easing);
}
.contact-item:hover .contact-icon { background: var(--gold); color: var(--ink); }
.contact-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-soft);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.contact-value {
  font-family: var(--serif-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: -0.01em;
}
.contact-form {
  background: var(--ink-soft);
  padding: 3rem;
  border: 1px solid var(--line-strong);
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--gold);
  transform: translate(15px, 15px);
  z-index: -1;
  pointer-events: none;
}
.form-title {
  font-family: var(--serif-display);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.form-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.form-desc {
  font-family: var(--serif-body);
  font-size: 1.05rem;
  color: var(--ivory-soft);
  margin-bottom: 2.5rem;
}
.form-group { margin-bottom: 1.5rem; position: relative; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-row .form-group { margin-bottom: 0; }
.form-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-soft);
  margin-bottom: 0.6rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.9rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ivory);
  font-family: var(--serif-body);
  font-size: 1.1rem;
  transition: border-color 0.3s ease;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-bottom-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder {
  color: var(--ivory-soft);
  opacity: 0.4;
  font-style: italic;
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3e%3cpath d='M3 4.5L6 7.5L9 4.5' stroke='%23c9a25b' stroke-width='1.2'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  padding-right: 2rem;
  cursor: pointer;
}
.form-select option { background: var(--ink); color: var(--ivory); }
.form-textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%;
  padding: 1.2rem;
  margin-top: 1rem;
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--easing);
}
.btn-submit span { position: relative; z-index: 2; }
.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(100%);
  transition: transform 0.5s var(--easing);
  z-index: 1;
}
.btn-submit:hover { color: var(--gold); }
.btn-submit:hover::before { transform: translateY(0); }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--ink-soft);
  padding: 5rem 4rem 2rem;
  border-top: 1px solid var(--gold);
  position: relative;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand h4 {
  font-family: var(--serif-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer-brand p {
  font-family: var(--serif-body);
  font-size: 1.05rem;
  color: var(--ivory-soft);
  line-height: 1.6;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col li, .footer-col a {
  padding: 0.5rem 0;
  font-family: var(--serif-body);
  font-size: 1.05rem;
  color: var(--ivory-soft);
  cursor: pointer;
  transition: color 0.3s ease, padding 0.3s ease;
  text-decoration: none;
  display: block;
}
.footer-col li:hover, .footer-col a:hover { color: var(--gold); padding-left: 0.5rem; }
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory-soft);
  opacity: 0.6;
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--ivory);
  text-decoration: none;
  transition: all 0.3s var(--easing);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--easing-out), transform 1s var(--easing-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--easing-out), transform 0.9s var(--easing-out); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.5s; }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }

/* ============================================================
   FLOATING WHATSAPP
============================================================ */
.float-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  width: 60px;
  height: 60px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 12px 40px rgba(201, 162, 91, 0.4);
  transition: all 0.4s var(--easing);
  animation: floatPulse 3s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.1) rotate(8deg); background: var(--gold-bright); }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 12px 40px rgba(201, 162, 91, 0.4), 0 0 0 0 rgba(201, 162, 91, 0.5); }
  50% { box-shadow: 0 12px 40px rgba(201, 162, 91, 0.4), 0 0 0 16px rgba(201, 162, 91, 0); }
}

/* ============================================================
   WORDPRESS DEFAULT CLASSES
============================================================ */
.alignleft { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-family: var(--serif-body); font-style: italic; color: var(--ivory-soft); font-size: 0.95rem; margin-top: 0.5rem; }
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden;
  padding: 0; position: absolute; width: 1px; word-wrap: normal !important;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 3rem 2rem; }
  .hero-meta { position: relative; left: 0; right: 0; bottom: 0; padding: 2rem; }
  .hero-visual { aspect-ratio: 16/9; min-height: 400px; }
  .hero-quote { font-size: 1.1rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .section-header, .about-teaser-inner, .founder-inner, .history-inner, .contact-grid, .test-grid, .footer-inner {
    grid-template-columns: 1fr;
  }
  .values-grid { grid-template-columns: 1fr; }
  .service-row, .service-row:nth-child(even) { grid-template-columns: 1fr; }
  .service-row:nth-child(even) .service-row-img { order: 0; }
  .step { grid-template-columns: 80px 1fr; gap: 1.5rem; }
  .step-num { font-size: 3rem; width: 80px; }
  .process-steps::before { left: 40px; }
  .step-num::after { right: 40px; }
}

@media (max-width: 720px) {
  .top-bar-inner { padding: 1rem 1.2rem; }
  .nav { display: none; position: fixed; top: 78px; left: 0; right: 0; background: var(--ink); flex-direction: column; padding: 2rem; gap: 0; border-top: 1px solid var(--line); z-index: 99; }
  .nav.open { display: flex; }
  .nav-link { width: 100%; text-align: left; padding: 1rem 0; border-bottom: 1px solid var(--line); }
  .nav-cta { margin-left: 0; margin-top: 1rem; text-align: center; }
  .menu-toggle { display: block; }
  .brand-tag { font-size: 0.55rem; }
  .hero-content { padding: 2.5rem 1.5rem; }
  .hero-eyebrow { font-size: 0.6rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; }
  .stats, .services-preview, .about-teaser, .founder, .testimonials, .cta-section,
  .about-hero, .history, .values, .services-full, .process, .contact-page, .footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .section-header { gap: 2rem; margin-bottom: 3rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-header { flex-direction: column; align-items: flex-start; }
  .test-card { padding: 2rem; }
  .hero-quote { font-size: 1rem; left: 1.5rem; right: 1.5rem; bottom: 1.5rem; }
  .hero-badge { top: 1.5rem; right: 1.5rem; padding: 0.8rem 1rem; }
  .hero-badge-text { font-size: 0.6rem; }
  .hero-badge-text strong { font-size: 0.9rem; }
  .footer-inner { gap: 2rem; }
  .float-wa { bottom: 1rem; right: 1rem; width: 52px; height: 52px; }
  .contact-form { padding: 2rem; }
}


/* ==========================================================
   CALCULADORA DE JUROS — v1.1
   Mantém padrão visual do tema: fundo --ink, texto --ivory,
   tipografia --serif-display / --serif-body / --sans
   ========================================================== */

/* ----- Seção principal da calculadora ----- */
.calc-section {
  padding: 6rem 4rem 7rem;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  position: relative;
}
.calc-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.calc-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.calc-intro-title {
  font-family: var(--serif-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin-bottom: 1.2rem;
}
.calc-intro-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.calc-intro-desc {
  font-family: var(--serif-body);
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--ivory-soft);
  opacity: 0.85;
}

/* ----- Wrapper do form ----- */
.calc-wrapper {
  background: rgba(244, 236, 220, 0.03);
  border: 1px solid var(--line-strong);
  padding: 3.5rem;
  position: relative;
}
.calc-wrapper::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 80px;
  height: 2px;
  background: var(--gold);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
  margin-bottom: 2.5rem;
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.calc-field label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ivory-soft);
  opacity: 0.85;
}

.calc-field input {
  font-family: var(--serif-body);
  font-size: 1.3rem;
  font-weight: 400;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ivory);
  transition: all 0.4s var(--easing);
  letter-spacing: 0.01em;
}
.calc-field input:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.calc-field input::placeholder {
  color: var(--ivory-soft);
  opacity: 0.35;
  font-style: italic;
}

.calc-hint {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: var(--ivory-soft);
  opacity: 0.5;
  letter-spacing: 0.08em;
}

.calc-actions {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.btn-calc {
  padding: 1.1rem 2.6rem;
}

.btn-link {
  background: transparent;
  border: none;
  color: var(--ivory-soft);
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  cursor: pointer;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}
.btn-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--easing);
}
.btn-link:hover { color: var(--gold); }
.btn-link:hover::after { transform: scaleX(1); }

.calc-error {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: rgba(180, 50, 50, 0.1);
  border-left: 2px solid #d96666;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: #f4ecdc;
  letter-spacing: 0.02em;
}

/* ----- Resultado ----- */
.calc-result {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--line);
  animation: calcFadeIn 0.7s var(--easing) both;
}

@keyframes calcFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.calc-result-divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.calc-result-divider span {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}
.calc-result-divider::before,
.calc-result-divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.calc-result-title {
  font-family: var(--serif-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--ivory);
  text-align: center;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.calc-result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
  margin-bottom: 3rem;
}

.calc-result-item {
  background: var(--ink);
  padding: 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calc-result-item.calc-result-highlight {
  background: rgba(201, 162, 91, 0.08);
  grid-column: 1 / -1;
  padding: 2rem 1.8rem;
}

.calc-result-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ivory-soft);
  opacity: 0.6;
}

.calc-result-value {
  font-family: var(--serif-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ivory);
}
.calc-result-item.calc-result-highlight .calc-result-value {
  font-size: 2.4rem;
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

/* ----- Verdict (análise de abusividade) ----- */
.calc-verdict {
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
  padding: 2.2rem;
  margin-bottom: 2.5rem;
  border-left: 2px solid var(--gold);
  background: rgba(244, 236, 220, 0.03);
  transition: all 0.5s var(--easing);
}

.calc-verdict-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
}

.calc-verdict.ok {
  border-left-color: #5fa073;
}
.calc-verdict.ok .calc-verdict-icon {
  background: #5fa073;
  color: var(--ink);
}

.calc-verdict.atencao {
  border-left-color: #d4a04c;
}
.calc-verdict.atencao .calc-verdict-icon {
  background: #d4a04c;
  color: var(--ink);
}

.calc-verdict.abusivo {
  border-left-color: #c66060;
}
.calc-verdict.abusivo .calc-verdict-icon {
  background: #c66060;
  color: var(--ivory);
}

.calc-verdict-text h4 {
  font-family: var(--serif-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ivory);
  margin: 0 0 0.6rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.calc-verdict-text p {
  font-family: var(--serif-body);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ivory-soft);
  opacity: 0.92;
  margin: 0;
}

.calc-cta {
  text-align: center;
  padding: 2.5rem;
  background: rgba(201, 162, 91, 0.06);
  border: 1px solid rgba(201, 162, 91, 0.2);
  margin-top: 1rem;
}
.calc-cta p {
  font-family: var(--serif-body);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ivory-soft);
  opacity: 0.95;
  margin-bottom: 1.8rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.calc-disclaimer {
  max-width: 760px;
  margin: 3rem auto 0;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.78rem;
  line-height: 1.8;
  color: var(--ivory-soft);
  opacity: 0.55;
  letter-spacing: 0.05em;
}
.calc-disclaimer strong {
  color: var(--gold);
  opacity: 1;
  font-weight: 500;
}

/* ----- Seção "Como identificar" ----- */
.calc-info {
  padding: 7rem 4rem;
  border-bottom: 1px solid var(--line);
  background: var(--ink-soft, var(--ink));
}
.calc-info-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.calc-info-header {
  margin-bottom: 4.5rem;
  max-width: 900px;
}
.calc-info-header .page-eyebrow {
  margin-bottom: 1.5rem;
}
.calc-info-h2 {
  font-family: var(--serif-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ivory);
}
.calc-info-h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.calc-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.calc-info-card {
  padding: 3rem 2.5rem;
  background: rgba(244, 236, 220, 0.03);
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.5s var(--easing);
  overflow: hidden;
}
.calc-info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px;
  height: 1px;
  background: var(--gold);
  transition: width 0.5s var(--easing);
}
.calc-info-card:hover {
  background: rgba(244, 236, 220, 0.06);
  border-color: var(--line-strong);
  transform: translateY(-4px);
}
.calc-info-card:hover::before {
  width: 100%;
}

.calc-info-num {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 1.4rem;
}

.calc-info-card h3 {
  font-family: var(--serif-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ivory);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.calc-info-card p {
  font-family: var(--serif-body);
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--ivory-soft);
  opacity: 0.82;
  margin: 0;
}


/* ============================================================
   CALCULADORA — FUNDO CLARO (v1.2.0)
   Inversão de tema mantendo identidade editorial.
   Override aplicado no final do CSS para sobrescrever os blocos
   originais sem alterá-los. Mantém: ouro nos detalhes, hierarquia
   tipográfica, layout. Inverte: fundos escuros → marfim/ivory,
   textos claros → carvão (--ink), com contraste otimizado.
   ============================================================ */

/* --- Seção principal da página /calculadora/ --- */
.calc-section {
  background: var(--ivory);
}
.calc-intro-title { color: var(--ink); }
.calc-intro-desc {
  color: var(--ink);
  opacity: 0.78;
}

/* Wrapper do formulário */
.calc-wrapper {
  background: rgba(12, 12, 14, 0.025);
  border-color: rgba(12, 12, 14, 0.12);
}

.calc-field label {
  color: var(--ink);
  opacity: 0.7;
}
.calc-field input {
  color: var(--ink);
  border-bottom-color: rgba(12, 12, 14, 0.18);
}
.calc-field input::placeholder {
  color: var(--ink);
  opacity: 0.35;
}
.calc-hint {
  color: var(--ink);
  opacity: 0.55;
}
.calc-actions {
  border-top-color: rgba(12, 12, 14, 0.1);
}
.btn-link {
  color: var(--ink);
  opacity: 0.7;
}
.btn-link:hover {
  color: var(--gold);
  opacity: 1;
}
.calc-error {
  background: rgba(180, 50, 50, 0.08);
  color: #8a2a2a;
}

/* Resultado */
.calc-result {
  border-top-color: rgba(12, 12, 14, 0.1);
}
.calc-result-title {
  color: var(--ink);
}
.calc-result-grid {
  background: rgba(12, 12, 14, 0.12);
  border-color: rgba(12, 12, 14, 0.12);
}
.calc-result-item {
  background: var(--ivory);
}
.calc-result-item.calc-result-highlight {
  background: rgba(201, 162, 91, 0.1);
}
.calc-result-label {
  color: var(--ink);
  opacity: 0.6;
}
.calc-result-value {
  color: var(--ink);
}
.calc-result-item.calc-result-highlight .calc-result-value {
  color: var(--gold);
}

/* Verdict */
.calc-verdict {
  background: rgba(12, 12, 14, 0.03);
}
.calc-verdict-text h4 { color: var(--ink); }
.calc-verdict-text p {
  color: var(--ink);
  opacity: 0.78;
}

/* CTA */
.calc-cta {
  background: rgba(201, 162, 91, 0.08);
  border-color: rgba(201, 162, 91, 0.25);
}
.calc-cta p {
  color: var(--ink);
  opacity: 0.85;
}

/* Disclaimer */
.calc-disclaimer {
  color: var(--ink);
  opacity: 0.55;
}

/* --- Seção "Como identificar juros abusivos" --- */
.calc-info {
  background: rgba(12, 12, 14, 0.04);
}
.calc-info-h2 { color: var(--ink); }
.calc-info-card {
  background: var(--ivory);
  border-color: rgba(12, 12, 14, 0.1);
}
.calc-info-card:hover {
  background: rgba(244, 236, 220, 0.6);
  border-color: rgba(12, 12, 14, 0.18);
}
.calc-info-card h3 { color: var(--ink); }
.calc-info-card p {
  color: var(--ink);
  opacity: 0.78;
}


/* ============================================================
   PÁGINA QUEM SOMOS — Tagline + ajustes mobile (v1.2.0)
   ============================================================ */

/* Tagline final da história */
.history-tagline {
  margin-top: 2.5rem;
  padding: 1.8rem 0 0;
  border-top: 1px solid var(--line-strong);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.history-tagline::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--gold);
}
.history-tagline .history-tagline-brand {
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold);
  font-weight: 500;
}
.history-tagline em {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--ivory);
  letter-spacing: -0.01em;
  display: block;
}

/* --- Ajustes mobile da página Quem Somos --- */
@media (max-width: 1100px) {
  .history { padding: 5rem 2rem; }
  .history-inner { gap: 3rem; }
  .history-img {
    aspect-ratio: 4/3;
    position: relative;
    top: auto;
    max-height: 420px;
    background-position: center top;
  }
  .history-img::after {
    transform: translate(12px, 12px);
  }
}

@media (max-width: 720px) {
  .about-hero { padding: 6rem 1.5rem 3rem; }
  .page-title { font-size: clamp(2rem, 8vw, 2.8rem); line-height: 1.1; }
  .page-subtitle { font-size: 1.05rem; line-height: 1.55; }
  .history { padding: 4rem 1.5rem; }
  .history-inner { gap: 2.2rem; }
  .history-img {
    aspect-ratio: 4/3;
    max-height: 320px;
    background-position: center top;
  }
  .history-img::after {
    transform: translate(8px, 8px);
  }
  .history-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
  }
  .history-text p {
    font-size: 1.02rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }
  .history-tagline {
    margin-top: 2rem;
    padding-top: 1.4rem;
  }
  .history-tagline .history-tagline-brand {
    font-size: 0.62rem;
    letter-spacing: 0.28em;
  }
  .history-tagline em {
    font-size: 1.2rem;
    line-height: 1.3;
  }
  .values { padding: 4rem 1.5rem; }
  .values-grid {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
    border-left: none;
    border-top: none;
  }
  .value-card {
    padding: 2rem 1.5rem;
    border-right: none;
    border: 1px solid var(--line-strong);
    border-bottom: none;
  }
  .value-card:last-child {
    border-bottom: 1px solid var(--line-strong);
  }
  .value-num { font-size: 2.2rem; }
  .value-name { font-size: 1.2rem; }
  .value-text { font-size: 0.98rem; }
}

/* ============================================================
   LOGO HERO — 1º BLOCO DA HOME (v1.3.0 + v1.4.0)
   Bloco de abertura: logo da FS Assessoria sobre imagem de fundo
   (dama da justiça), com tagline em serif itálico. A imagem é
   passada via style inline no PHP; o overlay garante contraste.
   ============================================================ */
.logo-hero {
  padding: 8rem 4rem 7rem;
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
/* Overlay escuro com vinheta lateral, preserva o centro mais visível */
.logo-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(12,12,14,0.55) 0%, rgba(12,12,14,0.82) 60%, rgba(12,12,14,0.92) 100%),
    linear-gradient(180deg, rgba(12,12,14,0.4) 0%, rgba(12,12,14,0.2) 50%, rgba(12,12,14,0.7) 100%);
  z-index: 1;
  pointer-events: none;
}
/* Linhas douradas decorativas */
.logo-hero::before,
.logo-hero::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
  z-index: 2;
}
.logo-hero::before { top: 3rem; }
.logo-hero::after  { bottom: 3rem; }

.logo-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.logo-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.logo-hero-eyebrow span {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.logo-hero-mark {
  width: 100%;
  max-width: 420px;
  display: flex;
  justify-content: center;
}
.logo-hero-img {
  width: 100%;
  height: auto;
  max-width: 380px;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(201, 162, 91, 0.08));
}

.logo-hero-tagline {
  font-family: var(--serif-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--ivory);
  margin: 0;
  letter-spacing: 0.01em;
  position: relative;
  padding-top: 1.5rem;
}
.logo-hero-tagline em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--gold) 50%, var(--ivory) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 900px) {
  .logo-hero {
    padding: 5rem 2rem 4rem;
    min-height: 440px;
    background-position: center;
  }
  .logo-hero::before { top: 2rem; }
  .logo-hero::after  { bottom: 2rem; }
  .logo-hero-inner { gap: 2rem; }
  .logo-hero-mark { max-width: 260px; }
  .logo-hero-img { max-width: 240px; }
  .logo-hero-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.32em;
  }
  .logo-hero-eyebrow span { width: 20px; }
}

@media (max-width: 480px) {
  .logo-hero {
    padding: 4rem 1.5rem 3rem;
    min-height: 380px;
  }
  .logo-hero-mark { max-width: 200px; }
  .logo-hero-img { max-width: 180px; }
}

/* ============================================================
   CALCULADORA FUNCIONAL NA HOME — 2º BLOCO (v1.3.0)
   Header com título + descrição, depois o formulário completo
   da calculadora (renderizado via inc/calculator-form.php).
   Fundo claro (marfim) — mesma identidade visual da página
   /calculadora/. O CSS do formulário em si (.calc-wrapper,
   .calc-grid, .calc-result etc) vem do bloco "CALCULADORA —
   FUNDO CLARO (v1.2.0)" mais acima.
   ============================================================ */
.calc-home-form {
  padding: 6rem 4rem 7rem;
  background: var(--ivory);
  position: relative;
}
.calc-home-form-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.calc-home-form-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.calc-home-form-header .section-eyebrow {
  color: var(--gold);
  justify-content: center;
}
.calc-home-form-title {
  font-family: var(--serif-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 1.5rem 0 1.5rem;
}
.calc-home-form-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.calc-home-form-desc {
  font-family: var(--serif-body);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.75;
  margin: 0;
}

@media (max-width: 900px) {
  .calc-home-form { padding: 4rem 2rem 5rem; }
  .calc-home-form-header { margin-bottom: 2.5rem; }
}
@media (max-width: 480px) {
  .calc-home-form { padding: 3.5rem 1.25rem 4rem; }
  .calc-home-form-desc { font-size: 1rem; }
}

/* ============================================================
   CALCULADORA — DESTAQUES EM VERMELHO (v1.4.0)
   - "Juros totais pagos": vermelho + negrito (sempre)
   - Veredito "Fortes indícios de abusividade": título, descrição
     e ícone X em vermelho intenso.
   Vermelho usado: #c0392b — suficiente para alertar sem virar
   ruído visual, harmoniza com o ouro/marfim do tema.
   ============================================================ */

/* Juros totais — destaque crítico do resultado */
.calc-result-item.calc-result-highlight .calc-result-value {
  color: #c0392b !important;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Veredito "abusivo" — título, descrição e ícone em vermelho */
.calc-verdict.abusivo .calc-verdict-text h4 {
  color: #c0392b;
  font-weight: 600;
}
.calc-verdict.abusivo .calc-verdict-text p {
  color: #c0392b;
  opacity: 1;
}
/* Símbolo X: vermelho intenso, sem fundo de círculo */
.calc-verdict.abusivo .calc-verdict-icon {
  background: transparent;
  color: #c0392b;
}
.calc-verdict.abusivo .calc-verdict-icon svg {
  width: 44px;
  height: 44px;
  stroke-width: 2.5;
}
/* Borda esquerda reforçada no veredito abusivo */
.calc-verdict.abusivo {
  border-left-color: #c0392b;
  border-left-width: 3px;
}
