/* ==========================================================================
   Cartório Bezerra de Azevedo - Folha de Estilos Principal
   3º Ofício de Registro de Títulos e Documentos e Registro Civil de
   Pessoas Jurídicas de Teresina – PI
   ========================================================================== */

/* ==========================================================================
   1. RESET & BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

:root {
  /* Paleta de cores institucional - Alinhada à logomarca oficial */
  --color-navy: #1A1F8C;            /* Azul royal do logo */
  --color-navy-dark: #0E1361;       /* Azul profundo */
  --color-navy-light: #2A2FA8;      /* Azul royal claro */
  --color-gold: #B8945F;            /* Dourado quente do logo */
  --color-gold-light: #D4B486;
  --color-gold-dark: #8E6E42;
  --color-cream: #FAF7F2;
  --color-warm-white: #FFFFFF;
  --color-charcoal: #1A1A1A;
  --color-graphite: #4A4A4A;
  --color-silver: #8A8A8A;
  --color-line: #E8E4DC;
  --color-soft-bg: #F4F1EB;
  --color-success: #2D6A4F;
  --color-whatsapp: #25D366;

  /* Tipografia */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Espaçamentos (reduzidos para melhor densidade visual) */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4.5rem;
  --space-3xl: 6rem;

  /* Container */
  --container-max: 1280px;
  --container-padding: 1.5rem;

  /* Bordas e sombras */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(10, 31, 61, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 31, 61, 0.08);
  --shadow-lg: 0 16px 48px rgba(10, 31, 61, 0.12);
  --shadow-xl: 0 24px 64px rgba(10, 31, 61, 0.16);

  /* Transições */
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-charcoal);
  background-color: var(--color-warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--color-navy);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover { color: var(--color-gold); }

ul, ol { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ==========================================================================
   2. TIPOGRAFIA
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-navy);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 500; }
h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; color: var(--color-graphite); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: var(--color-graphite);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.5rem;
}

.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background-color: var(--color-gold);
}

.section-title { margin-bottom: 1.5rem; }
.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-graphite);
  max-width: 680px;
  margin-bottom: 3rem;
}

.text-center { text-align: center; }
.text-center .eyebrow { padding-left: 2.5rem; padding-right: 2.5rem; }
.text-center .eyebrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background-color: var(--color-gold);
}
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   3. LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container-narrow {
  max-width: 920px;
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

section { padding: var(--space-xl) 0; }

@media (max-width: 768px) {
  section { padding: var(--space-lg) 0; }
}

/* ==========================================================================
   4. BOTÕES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-navy);
  color: var(--color-warm-white);
  border-color: var(--color-navy);
}
.btn-primary:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-warm-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-warm-white);
  border-color: var(--color-gold);
}
.btn-gold:hover {
  background-color: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  color: var(--color-warm-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}
.btn-outline:hover { background-color: var(--color-navy); color: var(--color-warm-white); }

.btn-outline-light {
  background-color: transparent;
  color: var(--color-warm-white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover {
  background-color: var(--color-warm-white);
  color: var(--color-navy);
  border-color: var(--color-warm-white);
}

.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: var(--color-warm-white);
  border-color: var(--color-whatsapp);
}
.btn-whatsapp:hover {
  background-color: #1ebe5d;
  border-color: #1ebe5d;
  color: var(--color-warm-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg { padding: 1.1rem 2.5rem; font-size: 0.9375rem; }

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ==========================================================================
   5. HEADER & NAVEGAÇÃO
   ========================================================================== */
.top-bar {
  background-color: var(--color-navy-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8125rem;
  padding: 0.6rem 0;
  letter-spacing: 0.02em;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-bar a { color: rgba(255, 255, 255, 0.85); }
.top-bar a:hover { color: var(--color-gold-light); }

.top-info {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.top-info-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.top-info-item svg { width: 14px; height: 14px; color: var(--color-gold-light); }

@media (max-width: 768px) { .top-bar { display: none; } }

.site-header {
  background-color: var(--color-warm-white);
  border-bottom: 1px solid var(--color-line);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition-base);
}

.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

/* Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
}

.brand-mark {
  width: 62px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-mark img,
.brand-mark svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.2; }

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: 0.02em;
}

.brand-sub {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Navegação principal */
.main-nav { display: flex; align-items: center; }

.nav-list {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}

.nav-link {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-charcoal);
  padding: 0.5rem 0;
  letter-spacing: 0.02em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: width var(--transition-base);
}

.nav-link:hover, .nav-link.active { color: var(--color-navy); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta { margin-left: 1rem; }

/* Menu mobile */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1100;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--color-navy);
  transition: all var(--transition-base);
  border-radius: 1px;
}

.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 992px) {
  .mobile-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--color-warm-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2.5rem 2.5rem;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-base);
    overflow-y: auto;
  }

  .main-nav.open { right: 0; }

  .nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
    align-items: stretch;
  }

  .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-line);
    font-size: 1.0625rem;
    display: block;
  }

  .nav-link::after { display: none; }

  .nav-cta { margin-left: 0; margin-top: 1.5rem; width: 100%; }
  .nav-cta .btn { width: 100%; }
}

@media (max-width: 480px) {
  .brand-sub { display: none; }
  .brand-name { font-size: 1.0625rem; }
  .brand-mark { width: 52px; height: 40px; }
}

/* ==========================================================================
   6. HERO
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 50%, var(--color-navy-light) 100%);
  color: var(--color-warm-white);
  padding: var(--space-2xl) 0 var(--space-xl);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(184, 148, 95, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(184, 148, 95, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40 Z' fill='none' stroke='%23B8945F' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero .eyebrow { color: var(--color-gold-light); }
.hero .eyebrow::before { background-color: var(--color-gold-light); }

.hero h1 {
  color: var(--color-warm-white);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero h1 .accent {
  color: var(--color-gold-light);
  font-style: italic;
  font-weight: 500;
}

.hero-subtitle {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 640px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 720px;
}

/* Variante para apenas 2 estatísticas - flex centralizado */
.hero-stats-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  max-width: none;
}

.hero-stats-2 .hero-stat {
  flex: 0 1 auto;
  min-width: 180px;
}

.hero-stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.6rem;
  line-height: 1;
}

.hero-stat-icon svg {
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
  transition: transform var(--transition-base);
}

.hero-stat-maps:hover .hero-stat-icon svg {
  transform: translateY(-3px) scale(1.05);
}

.hero-stat-instagram:hover .hero-stat-icon svg {
  transform: translateY(-3px) scale(1.08) rotate(-2deg);
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}

.hero-stat-link {
  display: block;
  text-decoration: none;
  transition: transform var(--transition-base);
}

.hero-stat-link:hover {
  transform: translateY(-3px);
}

.hero-stat-link:hover .hero-stat-number,
.hero-stat-link:hover .hero-stat-label {
  color: var(--color-gold-light);
}

.hero-stat-link .hero-stat-number {
  transition: color var(--transition-fast);
}

.hero-stat-link .hero-stat-label {
  transition: color var(--transition-fast);
  color: rgba(255, 255, 255, 0.85);
}

/* Hero secundário (interno) */
.page-hero {
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
  color: var(--color-warm-white);
  padding: var(--space-xl) 0 var(--space-lg);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(184, 148, 95, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 { color: var(--color-warm-white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255, 255, 255, 0.85); font-size: 1.0625rem; }
.page-hero .eyebrow { color: var(--color-gold-light); padding: 0 2.5rem; }
.page-hero .eyebrow::before, .page-hero .eyebrow::after { background-color: var(--color-gold-light); }
.page-hero .eyebrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
}

.breadcrumb { margin-top: 1.5rem; font-size: 0.875rem; color: rgba(255, 255, 255, 0.7); }
.breadcrumb a { color: rgba(255, 255, 255, 0.85); }
.breadcrumb a:hover { color: var(--color-gold-light); }
.breadcrumb span { margin: 0 0.5rem; opacity: 0.5; }

/* ==========================================================================
   7. SECTIONS - GENÉRICAS
   ========================================================================== */
.section-light { background-color: var(--color-warm-white); }
.section-cream { background-color: var(--color-cream); }
.section-soft { background-color: var(--color-soft-bg); }
.section-dark { background-color: var(--color-navy); color: var(--color-warm-white); }

.section-dark h1, .section-dark h2,
.section-dark h3, .section-dark h4 { color: var(--color-warm-white); }
.section-dark p { color: rgba(255, 255, 255, 0.85); }
.section-dark .eyebrow { color: var(--color-gold-light); }
.section-dark .eyebrow::before, .section-dark .eyebrow::after { background-color: var(--color-gold-light); }

/* Grid genérico */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* ==========================================================================
   8. CARDS
   ========================================================================== */
.card {
  background-color: var(--color-warm-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--color-line);
  transition: all var(--transition-base);
  position: relative;
  height: 100%;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  transition: all var(--transition-base);
}

.card-icon::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(184, 148, 95, 0.5);
  border-radius: 3px;
}

.card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--color-gold-light);
  z-index: 1;
  position: relative;
}

.card:hover .card-icon {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
}

.card:hover .card-icon::after { border-color: rgba(255, 255, 255, 0.6); }
.card:hover .card-icon svg { color: var(--color-warm-white); }

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.875rem;
  color: var(--color-navy);
}

.card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: var(--color-graphite);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  transition: gap var(--transition-base);
}

.card-link:hover { gap: 0.875rem; color: var(--color-gold-dark); }
.card-link::after { content: '→'; transition: transform var(--transition-base); }

.card-featured {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-warm-white);
  border: none;
}

.card-featured h3 { color: var(--color-warm-white); }
.card-featured p { color: rgba(255, 255, 255, 0.85); }
.card-featured .card-icon {
  background: rgba(184, 148, 95, 0.15);
  border: 1px solid var(--color-gold);
}
.card-featured .card-link { color: var(--color-gold-light); }

/* ========== Página de Modelos ========== */
.modelos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.modelo-card {
  background: var(--color-warm-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.modelo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.modelo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.modelo-card:hover::before {
  transform: scaleX(1);
}

.modelo-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-light);
  position: relative;
}

.modelo-card-icon::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(184, 148, 95, 0.5);
  border-radius: 3px;
}

.modelo-card-icon svg {
  width: 26px;
  height: 26px;
  z-index: 1;
  position: relative;
}

.modelo-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.modelo-card-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  background-color: rgba(184, 148, 95, 0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  align-self: flex-start;
}

.modelo-card h3 {
  font-size: 1.375rem;
  color: var(--color-navy);
  margin: 0;
}

.modelo-card-content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-graphite);
  margin: 0;
  flex-grow: 1;
}

.modelo-card-meta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.modelo-card-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: var(--color-silver);
}

.modelo-card-meta-item svg {
  color: var(--color-gold);
}

.modelo-card .btn-group {
  margin-top: 0.5rem;
}

/* Card "Em breve" */
.modelo-card-coming {
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-soft-bg) 100%);
  border-style: dashed;
  border-color: var(--color-gold);
}

.modelo-card-coming .modelo-card-icon {
  background: rgba(184, 148, 95, 0.15);
  border: 1px solid var(--color-gold);
}

.modelo-card-coming .modelo-card-icon svg {
  color: var(--color-gold);
}

/* ========== Como utilizar - 3 passos ========== */
.modelos-howto-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.modelos-howto-header .eyebrow {
  padding: 0 2.5rem;
}

.modelos-howto-header .eyebrow::before,
.modelos-howto-header .eyebrow::after {
  background-color: var(--color-gold);
}

.modelos-howto-header .eyebrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
}

.modelos-howto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.modelos-howto-step {
  text-align: center;
  position: relative;
}

.modelos-howto-step-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.modelos-howto-step h4 {
  font-size: 1.125rem;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.modelos-howto-step p {
  font-size: 0.9375rem;
  color: var(--color-graphite);
  margin: 0;
}

/* ========== Card destaque "Você sabia?" ========== */
.highlight-card {
  background: linear-gradient(135deg, #FAF7F2 0%, #F4F1EB 100%);
  border: 1px solid var(--color-gold) !important;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '?';
  position: absolute;
  top: -20px;
  right: -10px;
  font-family: var(--font-serif);
  font-size: 12rem;
  font-weight: 700;
  color: var(--color-gold);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}

.highlight-card .highlight-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-warm-white);
  background-color: var(--color-gold);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.highlight-card h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  color: var(--color-navy);
  position: relative;
  z-index: 1;
}

.highlight-card p {
  position: relative;
  z-index: 1;
  color: var(--color-graphite);
  margin-bottom: 0.875rem;
}

/* ========== Box "Lembre-se" ========== */
.lembre-se-box {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  border-radius: var(--radius-md);
  color: var(--color-warm-white);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.lembre-se-box::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(184, 148, 95, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.lembre-se-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: rgba(184, 148, 95, 0.15);
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-light);
}

.lembre-se-icon svg {
  width: 36px;
  height: 36px;
}

.lembre-se-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.lembre-se-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 0.4rem;
}

.lembre-se-text {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 500;
  font-style: italic;
  color: var(--color-warm-white);
  line-height: 1.35;
  margin: 0;
}

@media (max-width: 700px) {
  .lembre-se-box { flex-direction: column; text-align: center; padding: 1.75rem; }
  .lembre-se-text { font-size: 1.375rem; }
}

/* Card serviço detalhado */
.service-card {
  background-color: var(--color-warm-white);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  border: 1px solid var(--color-line);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card .service-num {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.875rem;
  display: block;
}

.service-card h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  color: var(--color-navy);
}

.service-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: var(--color-graphite);
  flex-grow: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.service-tag {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem;
  background-color: var(--color-soft-bg);
  color: var(--color-navy-light);
  border-radius: 999px;
}

/* ==========================================================================
   9. SECTION DESTAQUE INSTITUCIONAL
   ========================================================================== */
.feature-block {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-block.reverse { grid-template-columns: 1fr 1.05fr; }
.feature-block.reverse .feature-image { order: 2; }

@media (max-width: 900px) {
  .feature-block, .feature-block.reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .feature-block.reverse .feature-image { order: 0; }
}

.feature-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-image::before {
  content: '';
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(184, 148, 95, 0.5);
  pointer-events: none;
}

.feature-image-content {
  text-align: center;
  color: var(--color-warm-white);
  padding: 2rem;
  position: relative;
  z-index: 1;
}

/* ========== Feature image com foto real (fachada institucional) ========== */
.feature-image.feature-photo {
  background: var(--color-soft-bg);
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.feature-image.feature-photo::before {
  content: '';
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(184, 148, 95, 0.6);
  z-index: 2;
  pointer-events: none;
}

.feature-image.feature-photo > img,
.feature-image.feature-photo picture,
.feature-image.feature-photo picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-image.feature-photo:hover > img,
.feature-image.feature-photo:hover picture img {
  transform: scale(1.04);
}

/* Pequeno overlay sutil para integrar a foto à paleta institucional */
.feature-image.feature-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 31, 61, 0) 50%, rgba(10, 31, 61, 0.18) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Bloco "Conheça nosso espaço" - Contato */
.fachada-section {
  padding-top: 0 !important;
}

.fachada-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--color-warm-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-line);
}

.fachada-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-soft-bg);
}

.fachada-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}

.fachada-card-image:hover img {
  transform: scale(1.03);
}

.fachada-card-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fachada-card-content .eyebrow {
  margin-bottom: 0.75rem;
}

.fachada-card-content h3 {
  font-size: 1.625rem;
  margin-bottom: 1rem;
  color: var(--color-navy);
}

.fachada-card-content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-graphite);
  margin-bottom: 0.875rem;
}

.fachada-card-content p:last-child {
  margin-bottom: 0;
}

.fachada-features {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.fachada-feature {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-navy);
}

.fachada-feature svg {
  width: 16px;
  height: 16px;
  color: var(--color-gold);
}

@media (max-width: 800px) {
  .fachada-card { grid-template-columns: 1fr; }
  .fachada-card-content { padding: 1.75rem; }
}

.feature-image-content .ornament {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--color-gold-light);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.8;
}

/* Variante com SVG (caneta tinteiro etc.) */
.feature-image-content .ornament-pen {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  margin-bottom: 1.25rem;
}

.feature-image-content .ornament-pen svg {
  width: 90px;
  height: 90px;
  color: var(--color-gold-light);
  opacity: 0.95;
}

.feature-image-content h4 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--color-warm-white);
  margin-bottom: 0.5rem;
}

.feature-image-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
}

.feature-image-badge {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background-color: var(--color-gold);
  color: var(--color-warm-white);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.feature-image-badge .number {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
}

.feature-image-badge .label {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.95;
}

/* Badge com texto institucional em duas linhas */
.feature-image-badge .badge-label-line1 {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin-bottom: 0.2rem;
}

.feature-image-badge .badge-label-line2 {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  opacity: 0.95;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

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

.feature-list-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(184, 148, 95, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
}

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

.feature-list-content h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}

.feature-list-content p { font-size: 0.9375rem; margin: 0; }

/* Valores (sobre) */
.value-card {
  text-align: center;
  padding: 2.25rem 1.5rem;
}

.value-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.value-icon::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(184, 148, 95, 0.5);
  border-radius: 50%;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-gold-light);
  z-index: 1;
}

.value-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }

/* ==========================================================================
   10. CTA SECTION
   ========================================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-warm-white);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(184, 148, 95, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 800px) {
  .cta-band-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-band-inner .btn-group { justify-content: center; }
}

.cta-band h2 { color: var(--color-warm-white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255, 255, 255, 0.85); margin: 0; font-size: 1.0625rem; }

/* ==========================================================================
   11. FAQ
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-warm-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover { border-color: rgba(184, 148, 95, 0.4); }
.faq-item.open { border-color: var(--color-gold); box-shadow: var(--shadow-md); }

.faq-question {
  width: 100%;
  padding: 1.5rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--color-navy);
  transition: color var(--transition-fast);
}

.faq-question:hover { color: var(--color-gold-dark); }

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(184, 148, 95, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  position: relative;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-gold);
  border-radius: 1px;
  transition: transform var(--transition-base);
}

.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after { width: 2px; height: 12px; }

.faq-item.open .faq-icon { background-color: var(--color-gold); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background-color: var(--color-warm-white); }
.faq-item.open .faq-icon::after { transform: rotate(90deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer-inner {
  padding: 0 1.75rem 1.75rem;
  color: var(--color-graphite);
  font-size: 0.9875rem;
  line-height: 1.75;
}

.faq-answer-inner p { margin-bottom: 0.875rem; }

/* ==========================================================================
   12. CONTATO
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-star