/* ==========================================
   RENOVO AGENCY - DESIGN SYSTEM & STYLES
   Colors: Deep Black, Graphite, Warm Off-White, Champagne, Soft Gold
   Typography: Neue Haas Grotesk / Inter + Cormorant Garamond
=========================================== */

:root {
  /* Palette Variables */
  --c-deep-black: #080b0d;
  --c-graphite: #242d31;
  --c-graphite-light: #2e393e;
  --c-warm-white: #f5f4f0;
  --c-champagne: #c8b98a;
  --c-soft-gold: #e6d6a6;
  --c-muted: #8c969a;
  
  --bg-dark: var(--c-deep-black);
  --bg-card: rgba(36, 45, 49, 0.6);
  --border-subtle: rgba(200, 185, 138, 0.15);
  
  /* Typography */
  --font-sans: "Neue Haas Grotesk Text Pro", "Neue Haas Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  
  /* Layout Spacing */
  --container-width: 1240px;
  --header-height: 80px;
  
  /* Transitions */
  --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--c-warm-white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.max-w-700 { max-width: 700px; margin-left: auto; margin-right: auto; }
.max-w-900 { max-width: 900px; margin-left: auto; margin-right: auto; }
.mt-4 { margin-top: 1.5rem; }

.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--c-soft-gold);
}

.display-block { display: block; }

/* Badges & Typography Helpers */
.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-champagne);
  margin-bottom: 16px;
  font-weight: 600;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--c-warm-white);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--c-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s var(--transition-smooth);
}

.btn-primary {
  background-color: var(--c-soft-gold);
  color: var(--c-deep-black);
  border: 1px solid var(--c-soft-gold);
}

.btn-primary:hover {
  background-color: var(--c-warm-white);
  border-color: var(--c-warm-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(230, 214, 166, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--c-warm-white);
  border: 1px solid var(--border-subtle);
}

.btn-outline:hover {
  border-color: var(--c-soft-gold);
  color: var(--c-soft-gold);
  transform: translateY(-2px);
}

.btn-outline-sm {
  padding: 10px 18px;
  font-size: 0.85rem;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
}

.btn-outline-sm:hover {
  border-color: var(--c-soft-gold);
  color: var(--c-soft-gold);
}

.btn-text {
  padding: 0;
  color: var(--c-warm-white);
  font-weight: 500;
}

.btn-text .arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-text:hover .arrow {
  transform: translateX(6px);
  color: var(--c-soft-gold);
}

.btn-large {
  padding: 18px 36px;
  font-size: 1rem;
}

/* ==========================================
   HEADER & NAVBAR
=========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(8, 11, 13, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Correção de tamanho e nitidez do Logo */
.brand-logo .logo-img,
.footer-logo {
  height: 125px !important;
  width: 126px !important;
  opacity: 1;
  display: block;
}

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 0.88rem;
  color: var(--c-muted);
  font-weight: 400;
}

.nav-link:hover, .nav-link.active {
  color: var(--c-warm-white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--c-warm-white);
  transition: 0.3s;
}

.mobile-drawer {
  display: none;
}

/* ==========================================
   HERO SECTION
=========================================== */
.hero-section {
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 100px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
}

.grid-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.tag-location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(36, 45, 49, 0.5);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  margin-bottom: 24px;
}

/* Animação do Ponto da Badge */
.dot-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--c-soft-gold);
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.dot-pulse::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--c-soft-gold);
  animation: pulse-gold-gpu 2s infinite ease-in-out;
}

@keyframes pulse-gold-gpu {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

.tag-text {
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-champagne);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-description {
  min-height: 4.8em;
  font-size: 1.15rem;
  color: var(--c-muted);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 540px;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-media {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: grayscale(20%) contrast(105%);
}

.badge-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(8, 11, 13, 0.85);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
}

.badge-overlay .number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-soft-gold);
}

.badge-overlay .label {
  font-size: 0.75rem;
  color: var(--c-muted);
}

/* ==========================================
   SECTION MANIFESTO & STICKY STACK CARDS
=========================================== */
.section-manifesto {
  padding: 120px 0;
  position: relative;
}

.grid-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.sticky-column {
  position: sticky;
  top: 140px;
  height: fit-content;
}

.stack-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* O efeito Sticky para os cards empilharem */
.stack-card {
  position: sticky;
  top: 140px;
  background: var(--c-graphite);
  border: 1px solid var(--border-subtle);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6);
}

.stack-card.accent-card {
  border-color: var(--c-champagne);
  background: linear-gradient(135deg, var(--c-graphite) 0%, rgba(46, 57, 62, 0.9) 100%);
}

.card-step {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-champagne);
  margin-bottom: 16px;
  display: block;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--c-warm-white);
}

.card-text {
  color: var(--c-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ==========================================
   SECTION METHOD
=========================================== */
.section-method {
  padding: 120px 0;
  background: rgba(36, 45, 49, 0.2);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.grid-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.method-card {
  background: var(--c-graphite);
  border: 1px solid var(--border-subtle);
  padding: 40px 30px;
  border-radius: 8px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.method-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-soft-gold);
}

.card-icon {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-soft-gold);
  margin-bottom: 20px;
}

.method-card h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.method-card .subtitle {
  font-size: 0.85rem;
  color: var(--c-champagne);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.method-card .description {
  color: var(--c-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.5;
}

.method-list {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.method-list li {
  font-size: 0.85rem;
  color: var(--c-warm-white);
  margin-bottom: 10px;
  position: relative;
  padding-left: 16px;
}

.method-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--c-soft-gold);
}

/* ==========================================
   SECTION CASES
=========================================== */
.section-cases {
  padding: 120px 0;
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}

.cases-stack-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.case-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  background: var(--c-graphite);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px;
}

.case-media {
  border-radius: 8px;
  overflow: hidden;
}

.case-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s var(--transition-smooth);
}

.case-card:hover .case-img {
  transform: scale(1.03);
}

.case-tags {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.case-tags .tag {
  font-size: 0.7rem;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--c-champagne);
}

.case-title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.case-description {
  color: var(--c-muted);
  font-size: 0.98rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.case-action {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-soft-gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================
   SECTION REVIEWS & GOOGLE TESTIMONIALS
=========================================== */
.section-testimonials {
  padding: 120px 0;
  background: rgba(36, 45, 49, 0.15);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

/* Skeleton Loading */
.review-skeleton {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px;
  color: var(--c-muted);
}

.spinner {
  width: 32px;
  height: 32px;
  border: 2px solid var(--border-subtle);
  border-top-color: var(--c-soft-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Estilo que o script injeta */
.review-card {
  background: var(--c-graphite);
  border: 1px solid var(--border-subtle);
  padding: 30px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  color: var(--c-soft-gold);
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--c-warm-white);
  line-height: 1.6;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 600;
}

/* ==========================================
   SECTION CTA
=========================================== */
.section-cta {
  padding: 140px 0;
  border-top: 1px solid var(--border-subtle);
  margin-top: 36px;
}

.cta-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.1rem;
  color: var(--c-muted);
  margin-bottom: 40px;
  font-weight: 300;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ==========================================
   FOOTER
=========================================== */
.footer-site {
  background: #050708;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 40px;
}

.grid-footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 26px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  color: var(--c-muted);
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-heading {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-champagne);
  margin-bottom: 20px;
  display: block;
}

.footer-nav ul, .footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a, .footer-contact a {
  font-size: 0.9rem;
  color: var(--c-muted);
}

.footer-nav a:hover, .footer-contact a:hover {
  color: var(--c-warm-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--c-muted);
}

/* ==========================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
=========================================== */
@media (max-width: 992px) {
  .grid-hero, .grid-two-col, .case-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .grid-three-col {
    grid-template-columns: 1fr;
  }

  .sticky-column {
    position: relative;
    top: 0;
  }

  .section-header-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .grid-footer {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-list, .nav-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .case-card {
    padding: 20px !important;
    gap: 24px !important;
  }

  .case-media {
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.2);
  }

  .case-img {
    height: auto !important;
    max-height: 280px;
    object-fit: contain !important; /* Preserva a captura do site sem cortar topo/base */
    width: 100%;
  }
}

/* ==========================================
   MOBILE DRAWER & HAMBURGER ANIMATION
=========================================== */
.mobile-drawer {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: rgba(8, 11, 13, 0.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.4s var(--transition-smooth);
  padding: 40px 24px;
}

/* Estado Aberto */
.mobile-drawer.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 320px;
}

.mobile-nav a {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--c-warm-white);
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--c-soft-gold);
}

/* Animação do Ícone Hamburguer (Transforma em X) */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
  background-color: var(--c-soft-gold);
}

.menu-toggle.active span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
  background-color: var(--c-soft-gold);
}

/* Evita a rolagem de fundo com o menu aberto */
body.no-scroll {
  overflow: hidden;
}

/* Estilos dos Cards de Avaliação do Google */
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.google-icon-card {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.review-time {
  font-size: 0.75rem;
  color: var(--c-muted);
}

.author-avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-graphite-light);
  color: var(--c-soft-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 1px solid var(--border-subtle);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-badge {
  font-size: 0.7rem;
  color: var(--c-muted);
}

.no-scroll {
  overflow: hidden;
}

/* Botão de Tema Minimalista */
.theme-toggle-btn {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--c-warm-white);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
}

.theme-toggle-btn:hover {
  border-color: var(--c-soft-gold);
  color: var(--c-soft-gold);
  transform: translateY(-1px);
}

.theme-toggle-btn svg {
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Transição de Exibição dos SVGs */
.icon-sun { display: none; }
.icon-moon { display: block; }

[data-theme="light"] .icon-sun { display: block; }
[data-theme="light"] .icon-moon { display: none; }

/* ==========================================
   EXPANSÃO DE TEXTO NOS CARDS DE AVALIAÇÃO
=========================================== */
.review-body {
  position: relative;
  transition: all 0.4s ease;
}

/* Estado truncado (máximo 4 linhas visíveis) */
.review-body.is-truncated {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}

/* Estado totalmente expandido */
.review-body.is-expanded {
  display: block;
  margin-bottom: 12px;
}

/* Botão minimalista Ver Mais / Ver Menos */
.toggle-review-btn {
  background: transparent;
  border: none;
  color: var(--c-soft-gold);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 20px;
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s ease;
}

.toggle-review-btn:hover {
  color: var(--c-warm-white);
}

/* Ajuste no modo claro */
[data-theme="light"] .toggle-review-btn {
  color: var(--c-champagne);
}

[data-theme="light"] .toggle-review-btn:hover {
  color: var(--c-warm-white);
}

/* Stagger / Scroll Reveal System */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Atrasos sutis para cards em sequências (stagger effect) */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ==========================================
   BENTO GRID SYSTEM FOR CASES
=========================================== */
.section-bento-cases {
  padding-bottom: 80px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Card Principal Destaque (Ocupa 2 colunas) */
.bento-item.bento-featured {
  grid-column: span 2;
  height: 520px;
}

/* Cards Secundários (Ocupam 1 coluna cada) */
.bento-item.bento-half {
  grid-column: span 1;
  height: 420px;
}

.bento-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--c-graphite);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.bento-item:hover {
  transform: translateY(-4px);
  border-color: var(--c-soft-gold);
}

.bento-media {
  width: 100%;
  height: 100%;
  position: relative;
}

.bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-item:hover .bento-img {
  transform: scale(1.04);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 11, 13, 0.1) 0%, rgba(8, 11, 13, 0.9) 85%);
  transition: opacity 0.4s ease;
}

.bento-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bento-title {
  font-family: var(--ff-primary);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--c-warm-white);
  line-height: 1.2;
}

.bento-featured .bento-title {
  font-size: 2.25rem;
}

.bento-description {
  font-size: 0.95rem;
  color: rgba(245, 245, 240, 0.75);
  max-width: 600px;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .bento-item.bento-featured,
  .bento-item.bento-half {
    grid-column: span 1;
    height: 380px;
  }

  .bento-content {
    padding: 20px;
  }

  .bento-title, 
  .bento-featured .bento-title {
    font-size: 1.4rem;
  }
}

/* ==========================================
   METODO: SHIFT EXPERIENCE & BRAND ELEMENTS
=========================================== */
.section-shift-experience {
  padding: 40px 0 80px;
}

.shift-interactive-container {
  margin-top: 40px;
}

.shift-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.shift-tab {
  background: var(--c-graphite);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--c-warm-white);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.shift-tab.active,
.shift-tab:hover {
  background: var(--c-soft-gold);
  color: var(--c-deep-black);
  border-color: var(--c-soft-gold);
}

.shift-card-display {
  position: relative;
  background: var(--c-graphite);
  border: 1px solid rgba(230, 214, 166, 0.2);
  border-radius: 16px;
  padding: 48px;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

/* Elementos Proprietários: Frame Deslocado & Ponto de Travessia */
.shifted-frame {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(230, 214, 166, 0.15);
  pointer-events: none;
}

.crossing-point {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 10px;
  height: 10px;
  background-color: var(--c-soft-gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--c-soft-gold);
}

.shift-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.shift-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}

.label-from { color: rgba(245, 245, 240, 0.4); }
.label-to { color: var(--c-soft-gold); }

.shift-title {
  font-family: var(--ff-primary);
  font-size: 1.5rem;
  color: var(--c-warm-white);
  margin-bottom: 12px;
}

.shift-desc {
  font-size: 0.95rem;
  color: rgba(245, 245, 240, 0.75);
  line-height: 1.6;
}

.shift-arrow {
  font-size: 1.8rem;
  color: var(--c-soft-gold);
}

/* Pilares Grid */
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-bottom: 48px;
}

.pilar-card {
  background: var(--c-graphite);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.pilar-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-soft-gold);
}

.pilar-num {
  font-family: var(--ff-secondary);
  font-size: 2.5rem;
  color: rgba(230, 214, 166, 0.2);
  position: absolute;
  top: 24px;
  right: 28px;
}

.pilar-tag {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--c-soft-gold);
  font-weight: 700;
}

.pilar-name {
  font-family: var(--ff-primary);
  font-size: 1.8rem;
  color: var(--c-warm-white);
  margin: 12px 0;
}

.pilar-desc {
  font-size: 0.92rem;
  color: rgba(245, 245, 240, 0.75);
  margin-bottom: 20px;
}

.pilar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(245, 245, 240, 0.6);
}

@media (max-width: 768px) {
  .shift-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .shift-divider {
    text-align: center;
    transform: rotate(90deg);
  }

  .pilares-grid {
    grid-template-columns: 1fr;
  }

  .shift-card-display {
    padding: 24px;
  }
}

/* ==========================================
   SERVIÇOS: ECOSSISTEMA & MÓDULOS
=========================================== */
.service-module {
  background: var(--c-graphite);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 48px;
}

.module-pillar {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--c-soft-gold);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.module-title {
  font-family: var(--ff-primary);
  font-size: 2rem;
  color: var(--c-warm-white);
  margin-bottom: 8px;
}

.module-subtitle {
  font-size: 0.98rem;
  color: rgba(245, 245, 240, 0.7);
  margin-bottom: 32px;
  max-width: 700px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(8, 11, 13, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  border-color: var(--c-soft-gold);
  transform: translateY(-4px);
}

.service-name {
  font-family: var(--ff-secondary);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-warm-white);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.9rem;
  color: rgba(245, 245, 240, 0.7);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .service-module {
    padding: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   INSIGHTS & BLOG REPOSITORY
=========================================== */
.blog-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--c-graphite);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--c-warm-white);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--c-soft-gold);
  color: var(--c-deep-black);
  border-color: var(--c-soft-gold);
}

/* Post Destaque */
.featured-post-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  background: var(--c-graphite);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 48px;
  align-items: center;
}

.post-featured-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--c-soft-gold);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  margin-top: 96px;
}

.post-featured-title {
  font-family: var(--ff-primary);
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.post-featured-title a {
  color: var(--c-warm-white);
  transition: color 0.3s ease;
}

.post-featured-title a:hover {
  color: var(--c-soft-gold);
}

.post-excerpt {
  font-size: 0.95rem;
  color: rgba(245, 245, 240, 0.75);
  line-height: 1.6;
  margin-bottom: 24px;
}

.btn-read-more {
  color: var(--c-soft-gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Grid Secundário */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  background-color: #161a1d; /* Cor escura sólida do fundo do card */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 160, 89, 0.3); /* Acento Champagne/Gold no hover */
}

.article-title {
  font-family: var(--ff-primary);
  font-size: 1.4rem;
  line-height: 1.3;
  margin-bottom: 12px;
}

.article-title a {
  color: var(--c-warm-white);
}

.article-excerpt {
  font-size: 0.88rem;
  color: rgba(245, 245, 240, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

.article-link {
  font-size: 0.85rem;
  color: var(--c-soft-gold);
  font-weight: 600;
}

@media (max-width: 992px) {
  .featured-post-card {
    grid-template-columns: 1fr;
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================
   ARTICLE PAGE STYLES (MOBILE-FIRST READABILITY)
=========================================== */
.article-container {
  padding: 40px 24px 80px;
}

.max-w-800 { max-width: 800px; margin: 0 auto; }
.max-w-700 { max-width: 700px; margin: 0 auto; }
.justify-center { justify-content: center; }

.back-link {
  font-size: 0.85rem;
  color: var(--c-soft-gold);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.back-link:hover { opacity: 0.8; }

.article-page-title {
  font-family: var(--ff-primary);
  font-size: 2.5rem;
  line-height: 1.18;
  color: var(--c-warm-white);
  margin-top: 32px;
}

.article-featured-media {
  margin: 40px auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.article-cover-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Tipografia do Corpo do Texto */
.article-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245, 245, 240, 0.88);
}

.tldr-box {
  background: var(--c-graphite);
  border-left: 3px solid var(--c-soft-gold);
  padding: 24px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.tldr-box strong {
  color: var(--c-soft-gold);
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

.article-lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--c-warm-white);
  margin-bottom: 32px;
}

.article-body h2 {
  font-family: var(--ff-primary);
  font-size: 1.8rem;
  color: var(--c-warm-white);
  margin: 40px 0 16px;
  line-height: 1.25;
}

.article-body p { margin-bottom: 24px; }

.article-body ul {
  margin-bottom: 32px;
  padding-left: 20px;
}

.article-body li {
  margin-bottom: 12px;
}

.article-body blockquote {
  border-left: 2px solid var(--c-soft-gold);
  padding-left: 24px;
  margin: 40px 0;
  font-family: var(--ff-primary);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--c-warm-white);
}

.article-author-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--c-graphite);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 56px;
}

.author-avatar {
  border-radius: 50%;
  background: var(--c-deep-black);
  padding: 8px;
}

.author-name {
  font-weight: 600;
  color: var(--c-warm-white);
  display: block;
  font-size: 0.95rem;
}

.author-bio {
  font-size: 0.85rem;
  color: rgba(245, 245, 240, 0.6);
  margin: 0 !important;
}

.article-card-media {
    position: relative;
    width: 100%;
    height: 180px; /* Altura da imagem no topo (~35% do card) */
    overflow: hidden;
}

.article-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

@media (max-width: 768px) {
  .article-page-title { font-size: 1.8rem; }
  .article-body { font-size: 1rem; }
  .article-lead { font-size: 1.1rem; }
}

/* ==========================================
   CARDS DE ARTIGOS REFORMULADOS (IMAGEM NO TOPO + CONTEÚDO SÓLIDO)
=========================================== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.article-card {
  background-color: #161a1d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 160, 89, 0.3);
}

/* Imagem no Topo (~35% da altura) */
.article-card-media {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.article-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.article-card:hover .article-card-media img {
  transform: scale(1.05);
}

/* Fade Suave na Parte Inferior da Imagem */
.article-card-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to bottom, rgba(22, 26, 29, 0) 0%, #161a1d 100%);
  pointer-events: none;
}

/* Corpo de Texto sob Fundo Escuro */
.article-card-content {
  padding: 20px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background-color: #161a1d;
  z-index: 2;
}

.article-card-content .post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  margin-top: 0 !important; /* Limpa o margin-top de 96px */
  margin-bottom: 12px;
}

.article-card-content .post-category {
  color: var(--c-soft-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-card-content .post-date {
  color: rgba(255, 255, 255, 0.5);
}

.article-card-content .article-title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  line-height: 1.35;
  margin-bottom: 12px;
  font-weight: 600;
}

.article-card-content .article-title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-card-content .article-title a:hover {
  color: var(--c-soft-gold);
}

.article-card-content .article-excerpt {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card-content .article-link {
  margin-top: auto;
  color: var(--c-soft-gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: letter-spacing 0.2s ease;
}

.article-card-content .article-link:hover {
  letter-spacing: 0.03em;
}

/* Paginação */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.btn-page {
  background: var(--c-graphite);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--c-warm-white);
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-page:hover:not(:disabled) {
  background: var(--c-soft-gold);
  color: var(--c-deep-black);
}

.btn-page:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.page-numbers {
  font-size: 0.9rem;
  color: rgba(245, 245, 240, 0.6);
}

@media (max-width: 992px) {
  .articles-grid { grid-template-columns: 1fr; }
}

.content {
  margin-top: 96px;
}

/* ==========================================
   COMPONENTE DE COMPARTILHAMENTO (QUIET LUXURY)
=========================================== */
.renovo-share-container {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0 32px 0;
  position: relative;
}

.renovo-share-btn {
  background-color: var(--c-graphite, #242d31) !important;
  border: 1px solid rgba(230, 214, 166, 0.2) !important;
  color: var(--c-warm-white, #f5f4f0) !important;
  padding: 10px 20px !important;
  border-radius: 6px !important;
  font-family: var(--font-sans, "Inter", sans-serif) !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  outline: none !important;
  transition: all 0.3s ease !important;
  box-shadow: none !important;
}

.renovo-share-btn:hover {
  border-color: var(--c-soft-gold, #e6d6a6) !important;
  color: var(--c-soft-gold, #e6d6a6) !important;
  transform: translateY(-2px);
}

.renovo-share-btn svg {
  stroke: var(--c-soft-gold, #e6d6a6);
  transition: transform 0.3s ease;
}

.renovo-share-btn:hover svg {
  transform: scale(1.1);
}

/* Toast Oculto por Padrão */
.renovo-share-toast {
  display: none;
  font-size: 0.82rem;
  color: var(--c-soft-gold, #e6d6a6);
  background: rgba(36, 45, 49, 0.9);
  border: 1px solid rgba(230, 214, 166, 0.3);
  padding: 6px 14px;
  border-radius: 4px;
  animation: fadeInToast 0.3s ease;
}

.renovo-share-toast.show {
  display: inline-block;
}

@keyframes fadeInToast {
  from { opacity: 0; transform: translateX(-6px); }
  to { opacity: 1; transform: translateX(0); }
}