/* ==========================================================================
   GRANDO | ESTRATÉGIA CONTÁBIL E TRIBUTÁRIA
   Custom Figma-Exact Bento Grid Design System
   Rock-Solid Responsive Layout, Strict SVG Bounds & Optimized Performance
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Dark Luxury Palette */
  --bg-main: #0c0806;
  --bg-surface-1: #130e0b;
  --bg-surface-2: #19120e;
  --bg-surface-3: #221812;
  --bg-card-dark: #1a130f;
  --bg-card-dark-hover: #261c16;

  /* Accent Gold / Amber */
  --gold-primary: #dfb15b;
  --gold-light: #f5d084;
  --gold-dark: #b68b37;
  --gold-gradient: linear-gradient(135deg, #f5d084 0%, #dfb15b 50%, #b68b37 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(223, 177, 91, 0.2) 0%, rgba(223, 177, 91, 0.04) 100%);
  --gold-border: rgba(223, 177, 91, 0.22);
  --gold-border-bright: rgba(223, 177, 91, 0.55);

  /* WhatsApp Green */
  --whatsapp-green: #00D95F;
  --whatsapp-green-hover: #00bf53;
  --whatsapp-dark: #128C7E;

  /* Typography */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-editorial: 'Libre Baskerville', Georgia, serif;

  /* Text Colors */
  --text-pure: #ffffff;
  --text-primary: #fcf9f5;
  --text-secondary: #cdc3b5;
  --text-muted: #958a7c;

  /* Layout & Geometry */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-container: 32px;
  --radius-pill: 9999px;
  --shadow-bento: 0 16px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 10px 30px rgba(223, 177, 91, 0.2);
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

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

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* --- Global Background Grid & Mouse Follower Spotlight Canvas --- */
.bg-grid-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Subtle Golden-Charcoal Blueprint Grid */
.bg-grid-pattern {
  position: absolute;
  inset: 0;
  background-size: 48px 48px;
  background-image: 
    linear-gradient(to right, rgba(223, 177, 91, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(223, 177, 91, 0.055) 1px, transparent 1px);
}

/* Dark Gold Mouse Light Spotlight Follower */
.cursor-glow-spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(182, 139, 55, 0.28) 0%, rgba(223, 177, 91, 0.1) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  will-change: left, top, transform;
  opacity: 0;
}

main, section, footer, .announcement-bar {
  position: relative;
  z-index: 2;
}

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

svg {
  display: block;
  flex-shrink: 0;
}

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

ul {
  list-style: none;
}

/* --- Container & Spacing --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}

.bg-surface-1 {
  background-color: transparent;
}

.bg-surface-2 {
  background-color: transparent;
}

.text-center {
  text-align: center;
}

/* --- Typography & Editorial Italic Font --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-title);
  color: var(--text-pure);
  letter-spacing: -0.02em;
  font-weight: 700;
}

.font-editorial-gold {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 700;
  color: var(--gold-light);
  text-shadow: 0 0 25px rgba(223, 177, 91, 0.35);
  letter-spacing: 0;
}

.font-editorial-gold-dark {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 700;
  color: #b5832a;
  letter-spacing: 0;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem auto;
}

.section-title {
  font-size: clamp(2.1rem, 3.8vw, 2.75rem);
  line-height: 1.22;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Announcement Bar --- */
.announcement-bar {
  background: #1a120c;
  border-bottom: 1px solid rgba(223, 177, 91, 0.2);
  padding: 0.45rem 1rem;
  font-size: 0.825rem;
  text-align: center;
}

.announcement-bar {
  background: linear-gradient(90deg, #c9954a 0%, #f7dc9b 25%, #dfb15b 50%, #f7dc9b 75%, #c9954a 100%);
  border-bottom: 1px solid rgba(182, 139, 55, 0.4);
  padding: 0.7rem 0;
  position: relative;
  z-index: 50;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  font-size: 0.885rem;
  color: #1a1208;
  font-weight: 500;
}

.announcement-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.announcement-tag {
  background: #140e08;
  color: #f7dc9b;
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.22rem 0.65rem;
  border-radius: 4px;
  text-transform: uppercase;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.announcement-content p {
  color: #181008;
}

.announcement-content strong {
  color: #0d0804;
  font-weight: 800;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #140e08;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(20, 14, 8, 0.7);
  animation: pulse-ring-dark 1.8s infinite;
  flex-shrink: 0;
}

@keyframes pulse-ring-dark {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(20, 14, 8, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(20, 14, 8, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(20, 14, 8, 0); }
}

.announcement-link {
  color: #f7dc9b;
  background: #140e08;
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(247, 220, 155, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: var(--transition-smooth);
}

.announcement-link:hover {
  background: #241a12;
  color: #ffffff;
  border-color: #f7dc9b;
  transform: translateX(2px) scale(1.03);
}

/* --- Buttons System --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn-whatsapp-green {
  background-color: var(--whatsapp-green);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 217, 95, 0.35);
}

.btn-whatsapp-green:hover {
  background-color: var(--whatsapp-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 217, 95, 0.5);
}

.btn-gold-solid {
  background: var(--gold-gradient);
  color: #160e06;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-gold-solid:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(223, 177, 91, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid rgba(223, 177, 91, 0.3);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(223, 177, 91, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-border);
}

.btn-outline-gold:hover {
  background: var(--gold-gradient-soft);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
  padding: 0.85rem 1.5rem;
}

.icon-svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  flex-shrink: 0;
  display: inline-block !important;
}

/* --- HERO SECTION (FIGMA 2 COLUMNS) --- */
.hero-section {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

.hero-glow-bg {
  position: absolute;
  top: -100px;
  left: 20%;
  width: 600px;
  height: 450px;
  background: radial-gradient(circle, rgba(223, 177, 91, 0.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Brand Logo (Hero & Footer) */
.hero-logo-wrapper {
  margin-bottom: 2rem;
}

.brand-logo-img {
  height: 46px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 2rem;
}

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

/* Hero Camila Image (Enlarged on Desktop) */
.hero-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}

.hero-camila-img {
  width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: contain;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 50px rgba(223, 177, 91, 0.25));
  transition: var(--transition-smooth);
}

.hero-camila-img:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 55px rgba(223, 177, 91, 0.3));
}

/* --- BENTO GRIDS CORE SYSTEM --- */
.bento-grid {
  display: grid;
  gap: 1.5rem;
}

.bento-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.bento-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.bento-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
}

.bento-card-dark {
  background: var(--bg-card-dark);
  border: 1px solid var(--gold-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.bento-card-dark:hover {
  background: var(--bg-card-dark-hover);
  border-color: var(--gold-border-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow-bento);
}

/* --- STRICT PROBLEM & RISK BADGES (ALERT PALETTE) --- */
.problem-badge {
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  max-width: 46px;
  max-height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.problem-badge svg {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  min-width: 22px !important;
  min-height: 22px !important;
  display: block !important;
}

/* Risco: Coral Red / Crimson Alert */
.problem-badge-risk {
  background: linear-gradient(135deg, #e63946 0%, #ba181b 100%);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(230, 57, 70, 0.45);
}

/* Custo Oculto: Warm Orange / Amber Warning */
.problem-badge-cost {
  background: linear-gradient(135deg, #f77f00 0%, #d62828 100%);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(247, 127, 0, 0.45);
}

/* Oportunidade: Amber / Gold Solution Transition */
.problem-badge-opp {
  background: var(--gold-gradient);
  color: #140e08;
  box-shadow: 0 4px 18px rgba(223, 177, 91, 0.45);
}

.bento-card-risk,
.bento-card-cost,
.bento-card-opp {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bento-card-risk .problem-badge,
.bento-card-cost .problem-badge,
.bento-card-opp .problem-badge {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25rem;
}

.bento-card-risk:hover {
  border-color: rgba(230, 57, 70, 0.55);
}

.bento-card-cost:hover {
  border-color: rgba(247, 127, 0, 0.55);
}

.bento-card-opp:hover {
  border-color: var(--gold-border-bright);
}

/* Standard Bento Icon Pill */
.card-icon-pill {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  max-width: 44px;
  max-height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient-soft);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.card-icon-pill svg {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  min-width: 22px !important;
  min-height: 22px !important;
  display: block !important;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
  color: var(--text-pure);
}

.card-text {
  color: var(--text-secondary);
  font-size: 0.925rem;
  line-height: 1.55;
}

.card-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold-gradient-soft);
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
}

.card-link-gold {
  margin-top: auto;
  padding-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.card-link-gold:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

/* ==========================================================================
   SECTION 1: CONTAINER BRANCO (EXPERIÊNCIA PRÁTICA + PROPÓSITO + CAMILA GRANDO)
   ========================================================================== */
.section-light-wrapper {
  padding-top: 5rem;
  padding-bottom: 0;
  position: relative;
  z-index: 20;
}

.white-bento-container {
  background: #FFFFFF;
  border-radius: var(--radius-container);
  padding: 4.5rem 3.5rem;
  color: #1a1208;
  position: relative;
  z-index: 21;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.text-dark {
  color: #160e08 !important;
}

.text-dark-muted {
  color: #5c4e43 !important;
}

.white-box-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 149, 74, 0.25), transparent);
  margin: 3.5rem 0;
}

/* 1. Experiência Prática no Topo */
.experience-showcase-block {
  padding-bottom: 0.5rem;
}

.experience-lead-subtitle {
  max-width: 860px;
  margin: 0 auto 1.75rem auto;
}

.experience-bottom-tagline {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.05rem;
  color: #9e6f20;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

/* Dynamic Client Logos Carousel */
.client-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  margin: 0 auto;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-md);
  padding: 0.35rem 0;
}

.carousel-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.client-logo-slide {
  flex: 0 0 calc((100% - (4 * 1.25rem)) / 5); /* 5 visíveis no desktop */
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo-wrapper {
  width: 100%;
  max-width: 110px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border: 1.5px solid rgba(223, 177, 91, 0.25);
  border-radius: 16px;
  overflow: hidden;
  background: #19120e;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 10;
  pointer-events: auto;
  transition: border-color 0.3s ease;
}

.client-logo-wrapper:hover {
  border-color: var(--gold-primary);
}

.client-logo-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 14px;
  filter: grayscale(100%) brightness(0.85) contrast(1.15);
  opacity: 0.8;
  transition: filter 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.client-logo-wrapper:hover .client-logo-img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

/* Nav Buttons */
.carousel-nav-btn {
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  border-radius: 50%;
  background: rgba(26, 19, 15, 0.95);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  flex-shrink: 0;
  position: relative;
  z-index: 40;
  pointer-events: auto;
}

.carousel-nav-btn:hover {
  background: var(--gold-gradient);
  color: #140e08;
  border-color: var(--gold-primary);
  transform: scale(1.12);
  box-shadow: 0 4px 15px rgba(223, 177, 91, 0.35);
}

.carousel-nav-btn svg {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  display: block !important;
}

/* Dots */
.carousel-dots-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  position: relative;
  z-index: 40;
  pointer-events: auto;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(223, 177, 91, 0.25);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 0;
  pointer-events: auto;
}

.carousel-dot.active {
  width: 24px;
  border-radius: var(--radius-pill);
  background: var(--gold-primary);
  box-shadow: 0 0 10px rgba(223, 177, 91, 0.5);
}

/* 2. Profile Section inside White Box */
.profile-white-section {
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}

.profile-section-title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin-bottom: 2.75rem;
}

.profile-white-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.profile-image-container {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(223, 177, 91, 0.35);
  background: #19120e;
}

.profile-camila-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.bio-lead-text {
  font-size: 1.05rem;
  color: #382c23;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.bio-lead-text strong {
  color: #160e08;
}

.bio-quote-text {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.15rem;
  color: #b5832a;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 2rem;
}

/* 4 Credential Horizontal Pills */
.credential-pills-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cred-pill-dark {
  background: #1a120c;
  border: 1px solid rgba(223, 177, 91, 0.2);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-smooth);
}

.cred-pill-dark:hover {
  border-color: var(--gold-primary);
  background: #241a13;
  transform: translateX(4px);
}

.cred-pill-highlight {
  border-color: rgba(223, 177, 91, 0.45);
  background: linear-gradient(135deg, #1c140d 0%, #261b11 100%);
  box-shadow: 0 4px 20px rgba(223, 177, 91, 0.08);
}

.cred-pill-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  max-width: 36px;
  max-height: 36px;
  border-radius: 50%;
  background: var(--gold-gradient-soft);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.cred-pill-icon.gold {
  background: var(--gold-gradient);
  color: #140e08;
}

.cred-pill-icon svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  display: block !important;
}

.cred-pill-text {
  font-size: 0.875rem;
  color: #d1c7bc;
  line-height: 1.4;
}

.cred-pill-text strong {
  color: var(--gold-light);
}

/* ==========================================================================
   MINIMALIST TIMELINE / PROCESS RULER (METODOLOGIA & CONTRATAÇÃO)
   Sem caixas e sem ícones: layout de linha do tempo contínua, limpa e editorial
   ========================================================================== */
.timeline-ruler-track,
.process-ruler-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 3.5rem;
}

.timeline-ruler-track::before,
.process-ruler-track::before {
  content: '';
  position: absolute;
  top: 48px; /* Alinhado ao centro dos pontos brilhantes */
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(223, 177, 91, 0.2) 0%, rgba(223, 177, 91, 0.85) 50%, rgba(223, 177, 91, 0.2) 100%);
  z-index: 1;
}

.timeline-step-item,
.ruler-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}

.timeline-step-item:hover,
.ruler-step-item:hover {
  transform: translateY(-4px);
}

.timeline-node,
.ruler-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.timeline-node-num,
.ruler-node-num {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  background: #19120e;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gold-border-bright);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.timeline-node-dot,
.ruler-node-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-primary);
  border: 3.5px solid #140e08;
  box-shadow: 0 0 16px rgba(223, 177, 91, 0.75);
  transition: var(--transition-smooth);
}

.timeline-step-item:hover .timeline-node-dot,
.ruler-step-item:hover .ruler-node-dot {
  background: #ffffff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 30px rgba(223, 177, 91, 0.8);
  transform: scale(1.2);
}

.timeline-text-content,
.ruler-text-content {
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-step-title,
.ruler-step-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}

.timeline-step-text,
.ruler-step-text {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 250px;
}

/* ==========================================================================
   SECTION 2: CONTAINER DOURADO (PORTFÓLIO DE SOLUÇÕES)
   ========================================================================== */
.section-gold-wrapper {
  padding-top: 5rem;
  padding-bottom: 0;
  position: relative;
  z-index: 20;
}

.gold-bento-container {
  background: linear-gradient(145deg, #e5ba6a 0%, #d4a545 100%);
  border-radius: var(--radius-container);
  padding: 4.5rem 3.5rem 0 3.5rem;
  position: relative;
  z-index: 21;
  box-shadow: 0 25px 60px rgba(212, 165, 69, 0.25);
}

.text-gold-dark {
  color: #140e08 !important;
}

.text-gold-muted {
  color: #453218 !important;
}

.featured-card-gold-inner {
  border-color: var(--gold-light);
  background: #241a13;
}

.card-footer-action {
  margin-top: auto;
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid rgba(223, 177, 91, 0.15);
  width: 100%;
  flex-wrap: nowrap;
}

.product-price-term {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.card-link-gold {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.card-link-gold:hover {
  color: var(--text-pure);
  transform: translateX(3px);
}

/* Negative Margin Overlap Box 2 (EXACT 50% / Centered on Edge) */
.negative-margin-box-2 {
  position: relative;
  z-index: 25;
  margin-bottom: 0;
  transform: translateY(50%);
  padding: 0 1rem;
}

.floating-dark-card {
  background: #140e0a;
  border: 1.5px solid var(--gold-border-bright);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.floating-quote-title {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-pure);
  line-height: 1.45;
}

/* Spacer for section below negative margin box 2 */
#planos {
  padding-top: 9.5rem;
}

/* ==========================================================================
   SECTION: PLANOS CONTÁBEIS (FIGMA)
   ========================================================================== */
.bento-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.plan-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.plan-card:hover {
  border-color: var(--gold-border-bright);
  transform: translateY(-6px);
  box-shadow: var(--shadow-bento);
}

.featured-plan {
  background: linear-gradient(180deg, #241a13 0%, #17110c 100%);
  border: 2px solid var(--gold-primary);
  box-shadow: 0 15px 50px rgba(223, 177, 91, 0.22);
  transform: scale(1.03);
}

.featured-plan:hover {
  transform: scale(1.03) translateY(-6px);
}

.featured-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #1a1208;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-gold);
}

.plan-header {
  margin-bottom: 1.5rem;
}

.plan-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.plan-icon.gold {
  background: var(--gold-gradient-soft);
  border-color: var(--gold-primary);
}

.plan-icon svg {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  min-width: 22px !important;
  min-height: 22px !important;
  display: block !important;
}

.plan-name {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.plan-for {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.45;
  min-height: 50px;
}

.plan-pricing {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(223, 177, 91, 0.15);
  border-bottom: 1px solid rgba(223, 177, 91, 0.15);
  margin-bottom: 1.5rem;
}

.price-from {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-val {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-pure);
}

.price-val small {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.gold-text {
  color: var(--gold-light);
}

.plan-features {
  flex: 1;
  margin-bottom: 2rem;
}

.plan-features h4 {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.plan-features ul {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.plan-features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.4;
}

.check-icon {
  color: var(--gold-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.plans-disclaimer {
  text-align: center;
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-top: 2.5rem;
}

/* ==========================================================================
   SECTION: FECHAMENTO & FINAL CTA (FIGMA)
   ========================================================================== */
.final-cta-section {
  position: relative;
  overflow: hidden;
}

.final-glow-bg {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(223, 177, 91, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-card {
  background: linear-gradient(145deg, #19120e 0%, #110c08 100%);
  border: 1px solid var(--gold-border-bright);
  border-radius: var(--radius-container);
  padding: 4.5rem 3.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.final-cta-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.final-headline {
  font-size: clamp(2.3rem, 4.5vw, 3.6rem);
  line-height: 1.18;
  margin-bottom: 2rem;
}

/* ==========================================================================
   NOVO RODAPÉ INSTITUCIONAL COMPLETO & DADOS CADASTRAIS
   ========================================================================== */
.site-footer {
  background: #0a0705;
  border-top: 1px solid rgba(223, 177, 91, 0.18);
  padding-top: 4.5rem;
  padding-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-logo-wrap {
  margin-bottom: 1.25rem;
}

.footer-brand-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 340px;
}

.footer-badge-abetri {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(223, 177, 91, 0.1);
  border: 1px solid rgba(223, 177, 91, 0.3);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
}

.abetri-shield-icon {
  color: var(--gold-primary);
  font-weight: 800;
}

.footer-col-title {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-info-list,
.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-info-list li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.footer-info-list li strong {
  color: var(--gold-light);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.footer-social-link svg {
  color: var(--gold-primary);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.footer-social-link:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-social-link:hover svg {
  transform: scale(1.15);
  color: var(--gold-light);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: center;
}

.footer-lgpd-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 820px;
  margin: 0 auto;
}

.footer-lgpd-text strong {
  color: var(--text-secondary);
}

.footer-copyright {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON WIDGET
   ========================================================================== */
.floating-whatsapp-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-direction: row-reverse;
}

.floating-whatsapp-btn {
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 217, 95, 0.45);
  transition: var(--transition-smooth);
  position: relative;
}

.floating-whatsapp-btn:hover {
  background-color: var(--whatsapp-green-hover);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 217, 95, 0.65);
}

.whatsapp-btn-icon {
  width: 30px !important;
  height: 30px !important;
  max-width: 30px !important;
  max-height: 30px !important;
}

.whatsapp-badge-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--whatsapp-green);
  opacity: 0.6;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  pointer-events: none;
  z-index: -1;
}

.whatsapp-tooltip {
  background: var(--bg-surface-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-bento);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  max-width: 230px;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.floating-whatsapp-widget:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.tooltip-status {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.status-online {
  width: 6px;
  height: 6px;
  background-color: var(--whatsapp-green);
  border-radius: 50%;
}

.tooltip-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (SAFE & ALWAYS VISIBLE)
   ========================================================================== */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM (MOBILE & TABLET EXCELLENCE)
   ========================================================================== */

@media (max-width: 1080px) {
  .hero-container {
    grid-template-columns: 1fr 1.05fr;
    gap: 2rem;
  }

  .hero-image-wrapper {
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-camila-img {
    max-height: 520px;
  }

  .profile-white-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .bento-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-plans-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .timeline-ruler-track,
  .process-ruler-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }

  .timeline-ruler-track::before,
  .process-ruler-track::before {
    display: none;
  }

  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .featured-plan {
    transform: none;
  }

  .featured-plan:hover {
    transform: translateY(-6px);
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-logo-slide {
    flex: 0 0 calc((100% - (2 * 1rem)) / 3);
  }
}

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

  .hide-mobile {
    display: none !important;
  }

  /* Remoção de quebras de linha forçadas no mobile para leitura natural */
  .hero-title br,
  .section-title br,
  .profile-section-title br,
  .final-headline br,
  .floating-box-title br,
  .floating-quote-title br {
    display: none !important;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: clamp(1.75rem, 5.5vw, 2.25rem);
    line-height: 1.25;
  }

  .section-description {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  /* Hero Mobile: Logo no topo, foto no meio, textos abaixo */
  .hero-section {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
  }

  .hero-left {
    display: contents; /* Desempacota para ordenar logo no topo, foto no meio e textos abaixo */
  }

  .hero-logo-wrapper {
    order: 1;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .hero-logo-wrapper .brand-logo-img {
    height: 38px;
    max-width: 220px;
    width: auto;
    margin-bottom: 0;
  }

  .hero-right {
    order: 2;
    width: 100%;
  }

  .hero-image-wrapper {
    max-width: 310px;
    margin: 0 auto;
  }

  .hero-camila-img {
    max-height: 370px;
    width: 100%;
  }

  .hero-title {
    order: 3;
    width: 100%;
    font-size: clamp(1.85rem, 6.5vw, 2.4rem);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    order: 4;
    width: 100%;
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
  }

  .hero-cta-group {
    order: 5;
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    min-height: 50px;
  }

  /* White Master Container */
  .section-light-wrapper {
    padding-top: 3rem;
  }

  .white-bento-container,
  .gold-bento-container {
    padding: 2.25rem 1rem 0 1rem;
    border-radius: 22px;
  }

  .bento-grid-3,
  .bento-grid-4 {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 0;
  }

  .bento-card {
    padding: 1.35rem 1.15rem;
    border-radius: 16px;
  }

  /* Profile Section */
  .profile-white-section {
    padding-top: 0.5rem;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  .profile-section-title {
    font-size: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .profile-section-title .profile-name-break {
    display: block;
    margin-top: 0.25rem;
  }

  .profile-image-container {
    max-width: 250px;
    margin: 0 auto 1.5rem auto;
    border-radius: 18px;
  }

  .bio-lead-text {
    font-size: 0.925rem;
    line-height: 1.55;
    text-align: left;
  }

  .bio-quote-text {
    font-size: 1.05rem;
    line-height: 1.45;
    text-align: left;
    margin-bottom: 1.5rem;
  }

  .credential-pills-stack {
    gap: 0.75rem;
    margin-bottom: 0 !important;
  }

  .cred-pill-dark {
    padding: 0.75rem 0.85rem;
    gap: 0.75rem;
    align-items: flex-start;
    border-radius: 12px;
  }

  .cred-pill-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    margin-top: 2px;
  }

  .cred-pill-text {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  /* Floating Transition Cards */
  .negative-margin-box-1 {
    transform: translateY(50%);
    margin-top: -95px !important;
    margin-bottom: 0;
    padding: 0 0.25rem;
  }

  .floating-dark-card {
    padding: 1.35rem 0.75rem;
    border-radius: 18px;
  }

  .floating-box-title {
    font-size: 1.15rem;
    line-height: 1.35;
    margin-bottom: 1rem;
  }

  #metodo {
    padding-top: 10rem;
  }

  .negative-margin-box-2 {
    transform: translateY(50%);
    margin-top: -65px !important;
    margin-bottom: 0;
    padding: 0 0.25rem;
  }

  .floating-quote-title {
    font-size: 1.05rem;
    line-height: 1.4;
  }

  #planos {
    padding-top: 7rem;
  }

  /* Plan Cards */
  .plan-card {
    padding: 1.75rem 1.15rem;
    border-radius: 18px;
  }

  .plan-name {
    font-size: 1.25rem;
  }

  .plan-for {
    min-height: auto;
    margin-bottom: 0.75rem;
  }

  /* Hiring Steps */
  .hiring-step-card {
    padding: 1.35rem 1.15rem;
    border-radius: 16px;
  }

  .hiring-step-number {
    font-size: 1.35rem;
    top: 1rem;
    right: 1rem;
  }

  /* Final CTA Card */
  .final-cta-card {
    padding: 2.25rem 1rem;
    border-radius: 22px;
  }

  .final-cta-desc {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
  }

  .final-headline {
    font-size: clamp(1.75rem, 5.5vw, 2.25rem);
    line-height: 1.25;
    margin-bottom: 1.5rem;
  }

  .final-cta-actions .btn {
    width: 100%;
    min-height: 52px;
  }

  /* Timeline Minimalista Mobile */
  .timeline-ruler-track,
  .process-ruler-track {
    display: flex;
    flex-direction: column;
    gap: 1.85rem;
    margin-top: 2rem;
    position: relative;
    padding-left: 2.85rem;
  }

  .timeline-ruler-track::before,
  .process-ruler-track::before {
    display: block !important;
    position: absolute;
    top: 20px;
    bottom: 25px;
    left: 17px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--gold-primary), rgba(223, 177, 91, 0.2));
  }

  .timeline-step-item,
  .ruler-step-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
    position: relative;
  }

  .timeline-node,
  .ruler-node {
    position: absolute;
    left: -2.85rem;
    top: 0;
    margin-bottom: 0;
    flex-direction: column;
    align-items: center;
    width: 36px;
    gap: 0.35rem;
  }

  .timeline-node-num,
  .ruler-node-num {
    font-size: 0.72rem;
    padding: 0.1rem 0.45rem;
  }

  .timeline-node-dot,
  .ruler-node-dot {
    width: 14px;
    height: 14px;
  }

  .timeline-text-content,
  .ruler-text-content {
    padding: 0;
    align-items: flex-start;
    text-align: left;
  }

  .timeline-step-title,
  .ruler-step-title {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
  }

  .timeline-step-text,
  .ruler-step-text {
    font-size: 0.885rem;
    line-height: 1.5;
    max-width: 100%;
  }

  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    margin-bottom: 2.5rem;
  }

  .site-footer {
    padding-top: 3rem;
    padding-bottom: 5.5rem;
  }

  .footer-copyright {
    font-size: 0.8rem;
  }

  /* Floating WhatsApp Widget Mobile */
  .floating-whatsapp-widget {
    bottom: 1rem;
    right: 1rem;
  }

  .floating-whatsapp-btn {
    width: 52px;
    height: 52px;
  }

  .whatsapp-btn-icon {
    width: 26px !important;
    height: 26px !important;
  }

  .whatsapp-tooltip {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .client-carousel-container {
    gap: 0.75rem;
    padding: 0 0.5rem;
    justify-content: center;
  }

  .carousel-viewport {
    overflow: hidden;
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
    padding: 0.35rem 0;
  }

  .carousel-track {
    display: flex;
    gap: 0;
  }

  .client-logo-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .client-logo-wrapper {
    width: 130px;
    height: 130px;
    min-width: 130px;
    min-height: 130px;
    max-width: 130px;
    max-height: 130px;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    margin: 0 auto;
  }

  .client-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
  }

  .carousel-nav-btn {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
  }

  .carousel-nav-btn svg {
    width: 16px !important;
    height: 16px !important;
  }
}

/* ==========================================================================
   SECTION: REFORMA TRIBUTÁRIA (FIGMA-EXACT BENTO CONTAINER & TIMELINE)
   ========================================================================== */
.section-eyebrow-gold {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
}

/* Master Timeline Outer Box */
.reforma-master-box {
  background: var(--bg-card-dark);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-bento);
  position: relative;
  overflow: hidden;
}

.reforma-timeline-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.timeline-tab-btn {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(223, 177, 91, 0.15);
  border-radius: var(--radius-md);
  padding: 1.15rem 1rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: var(--transition-smooth);
  text-align: center;
  width: 100%;
}

.timeline-tab-btn:hover {
  background: rgba(223, 177, 91, 0.08);
  border-color: var(--gold-border-bright);
}

.timeline-tab-btn.active {
  background: rgba(223, 177, 91, 0.14);
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(223, 177, 91, 0.2), inset 0 0 12px rgba(223, 177, 91, 0.1);
}

.timeline-tab-btn .tab-year {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-pure);
  letter-spacing: -0.01em;
}

.timeline-tab-btn.active .tab-year {
  color: var(--gold-light);
}

.timeline-tab-btn .tab-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.timeline-tab-btn.active .tab-label {
  color: var(--gold-primary);
  font-weight: 600;
}

/* Tab Display Content Card */
.reforma-tab-display {
  background: rgba(12, 8, 6, 0.55);
  border: 1px solid rgba(223, 177, 91, 0.18);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.reforma-display-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  background: rgba(223, 177, 91, 0.12);
  border: 1px solid rgba(223, 177, 91, 0.3);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.25rem;
}

.reforma-display-title {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: var(--text-pure);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.reforma-display-desc {
  font-size: 1.025rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 960px;
}

.reforma-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.reforma-tag {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(223, 177, 91, 0.15);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.85rem;
  transition: var(--transition-fast);
}

.reforma-tag:hover {
  border-color: var(--gold-border-bright);
  color: var(--text-pure);
}

/* 2. Produto Estruturado: Integra Fiscal 360 */
.reforma-product-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-bento);
}

.reforma-product-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.25rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(223, 177, 91, 0.15);
}

.reforma-product-info {
  max-width: 680px;
}

.reforma-product-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.75rem;
}

.reforma-product-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.reforma-invest-badge {
  background: rgba(12, 8, 6, 0.75);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex-shrink: 0;
  text-align: left;
}

.invest-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  text-transform: uppercase;
}

.invest-val {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-pure);
}

.reforma-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.reforma-pillar-item {
  background: rgba(12, 8, 6, 0.45);
  border: 1px solid rgba(223, 177, 91, 0.12);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  transition: var(--transition-smooth);
}

.reforma-pillar-item:hover {
  background: rgba(223, 177, 91, 0.06);
  border-color: var(--gold-border-bright);
  transform: translateY(-3px);
}

.reforma-pillar-item .pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(223, 177, 91, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 1.15rem;
}

.reforma-pillar-item .pillar-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.6rem;
}

.reforma-pillar-item .pillar-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* 3. Bento 3 Subcards */
.reforma-subcard {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}

.text-gold {
  color: var(--gold-light) !important;
}

.card-lead-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.reforma-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(223, 177, 91, 0.1);
}

.reforma-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.885rem;
  color: var(--text-primary);
  line-height: 1.45;
}

.check-mark {
  color: var(--gold-primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* 4. Bottom CTA Bar */
.reforma-cta-banner {
  background: var(--bg-card-dark);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow-bento);
}

.reforma-cta-title {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.35rem;
}

.reforma-cta-subtitle {
  font-size: 0.925rem;
  color: var(--text-secondary);
}

.btn-reforma-cta {
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
}

/* --- Responsive Adjustments for Reforma Section --- */
@media (max-width: 1024px) {
  .reforma-timeline-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .reforma-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reforma-product-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .reforma-master-box,
  .reforma-product-card {
    padding: 1.75rem 1.25rem;
    border-radius: 18px;
  }

  .reforma-tab-display {
    padding: 1.5rem 1.15rem;
  }

  .reforma-timeline-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .timeline-tab-btn {
    padding: 0.85rem 0.65rem;
  }

  .timeline-tab-btn .tab-year {
    font-size: 1.05rem;
  }

  .timeline-tab-btn .tab-label {
    font-size: 0.75rem;
  }

  .reforma-pillars-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .reforma-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1.25rem;
    gap: 1.25rem;
  }

  .btn-reforma-cta {
    width: 100%;
  }
}

/* Dedicated Page Header Styles */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(12, 8, 6, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(223, 177, 91, 0.2);
  padding: 0.85rem 0;
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(12, 8, 6, 0.96);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  border-bottom-color: var(--gold-border);
}

.header-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1.5rem !important;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-link .brand-logo-img {
  height: 42px;
  width: auto;
  max-width: 240px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.65rem 0;
  }

  .header-actions .btn span {
    display: none;
  }

  .header-actions .btn {
    padding: 0.5rem 0.65rem;
    min-width: 40px;
  }
}


