/* =============================================
   DESIGN TOKENS – Rodrigo Kamiya Brand
   ============================================= */
:root {
  --gold: #9e7a51;
  --gold-light: #c29e75;
  --gold-dark: #6e4e2c;
  --dark-900: #ffffff;
  --dark-800: #fcfaf7;
  --dark-700: #f5eee4;
  --dark-600: #ebe1d1;
  --dark-500: #dccdb6;
  --text-primary: #2b231d;
  --text-secondary: #5a5048;
  --text-muted: #8b827a;
  --brand-brown: #5a3c26;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --shadow-gold: 0 8px 32px rgba(158, 122, 81, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-margin-top: 100px;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--brand-brown);
  background-image: linear-gradient(135deg, #ffffff 0%, #e3d2ba 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  position: relative;
  display: flex;
  flex-direction: column;
}

body>main,
body>#main-content {
  flex: 1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 8rem 0;
  scroll-margin-top: 100px;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1,
h2,
h3 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-light {
  background: linear-gradient(135deg, var(--text-primary), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: #5a3c26;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(90, 60, 38, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.4);
  background: var(--gold-dark);
}

.btn-outline {
  background: transparent;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold-light);
}

.btn-outline:hover {
  background: rgba(158, 122, 81, 0.05);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

/* =============================================
   SECTION HELPERS
   ============================================= */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 0.3rem 1rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1rem;
}

.section-label.light {
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.08);
}

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

.section-header p {
  color: var(--text-secondary);
  margin-top: 1rem;
  font-size: 1.05rem;
}

.section-header.light h2 {
  color: var(--text-primary);
}

.section-header.light p {
  color: var(--text-secondary);
}

/* =============================================
   HEADER
   ============================================= */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.5rem 0;
  background: rgba(249, 245, 240, 0.8);
  backdrop-filter: blur(10px);
  color: #5a3c26;
  border-bottom: 1px solid rgba(90, 60, 38, 0.05);
}

#header.scrolled {
  background: var(--brand-brown);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 0.85rem 0;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo-with-icon {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-align: left;
}

.logo-icon-svg {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  color: inherit;
  transition: var(--transition);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: inherit;
  transition: var(--transition);
}

.logo-title {
  font-size: 0.7rem;
  color: var(--gold-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}

#header.scrolled .logo-title {
  color: var(--gold-light);
}

#main-nav {
  margin-left: auto;
}

#main-nav ul {
  display: flex;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: rgba(90, 60, 38, 0.7);
  transition: var(--transition);
}

#header.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.8);
}

.nav-link:hover,
.nav-link.active {
  color: #5a3c26;
  background: rgba(90, 60, 38, 0.05);
}

#header.scrolled .nav-link:hover,
#header.scrolled .nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.header-cta {
  margin-left: 1rem;
  padding: 0.65rem 1.75rem;
  font-size: 0.875rem;
  background: var(--brand-brown);
  color: #ffffff;
  border-radius: 100px;
  font-weight: 700;
  transition: var(--transition);
}

#header.scrolled .header-cta {
  background: var(--brand-brown);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.header-cta:hover {
  background: #462e1d;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease !important;
}


/* MOBILE MENU */
.mobile-menu {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: var(--brand-brown) !important;
  z-index: 998 !important;
  transform: translateY(-100%) !important;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25) !important;
  padding-top: 70px !important;
  height: auto !important;
  display: block !important;
}

.mobile-menu.open {
  transform: translateY(0) !important;
}

.mobile-menu ul {
  display: flex !important;
  flex-direction: column !important;
  padding: 1rem 1.5rem 1.5rem !important;
  gap: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.mobile-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  width: 100% !important;
}

.mobile-menu li:last-child {
  border-bottom: none !important;
}

.mob-link {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  display: block !important;
  padding: 0.9rem 0 !important;
  transition: color 0.2s, padding-left 0.2s !important;
  text-decoration: none !important;
  text-align: left !important;
}

.mob-link:hover {
  color: var(--gold-light) !important;
  padding-left: 0.4rem !important;
}

/* Botão CTA dentro do menu mobile */
.mobile-menu .btn,
.mobile-menu .mobile-menu-cta {
  display: flex !important;
  width: 100% !important;
  text-align: center !important;
  justify-content: center !important;
  font-size: 0.95rem !important;
  padding: 0.85rem 1.5rem !important;
  white-space: normal !important;
  border-radius: var(--radius-xl) !important;
  margin-top: 0.25rem !important;
  background: var(--gold) !important;
  color: #fff !important;
}

/* Hamburger animation matching exactly */
.hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg) !important;
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0 !important;
  transform: scaleX(0) !important;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg) !important;
}

/* Hamburger active state border (from your previous screenshot preference) */
.hamburger.is-active {
  border: 1px solid var(--gold) !important;
  border-radius: 4px !important;
  padding: 6px !important;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(158, 122, 81, 0.2), transparent);
  top: -150px;
  right: -150px;
  animation: pulse-slow 8s ease-in-out infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(227, 210, 186, 0.4), transparent);
  bottom: -100px;
  left: -100px;
  animation: pulse-slow 10s ease-in-out infinite reverse;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.2), transparent);
  top: 50%;
  left: 40%;
  animation: pulse-slow 6s ease-in-out infinite;
}

@keyframes pulse-slow {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.35;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.5;
  }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.08);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-title {
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

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

/* Hero Visual - floating cards */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-end;
}

.hero-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(158, 122, 81, 0.15);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  backdrop-filter: blur(10px);
  min-width: 260px;
  box-shadow: 0 8px 32px rgba(158, 122, 81, 0.12);
}

.hero-card-icon {
  font-size: 2rem;
}

.hero-card div {
  display: flex;
  flex-direction: column;
}

.hero-card strong {
  font-size: 1rem;
  font-weight: 700;
}

.hero-card span {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.floating {
  animation: float 5s ease-in-out infinite;
}

.delay-1 {
  animation-delay: 1.5s;
}

.delay-2 {
  animation-delay: 3s;
}

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-hint 2s ease-in-out infinite;
}

@keyframes scroll-hint {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

/* =============================================
   SOBRE
   ============================================= */
/* ── SOBRE — Opção 1: Glassmorphism Escuro ── */
.sobre {
  padding: 8rem 0;
  background: var(--dark-800);
  position: relative;
  overflow: hidden;
}

.sobre-glow {
  position: absolute;
  top: 50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05), transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.sobre-op1 {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.sobre-op1-foto-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1rem;
}

.sobre-op1-glow-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15), transparent 60%);
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}

.sobre-op1-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.sobre-op1-cred {
  position: absolute;
  bottom: 0;
  right: -1rem;
  z-index: 2;
  text-align: center;
  padding: 1.25rem 1.5rem;
  background: rgba(26, 16, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 32px rgba(0,0,0,0.3);
}

.sobre-op1-cred .sobre-cred-num {
  color: #e5b92d;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.sobre-op1-cred .sobre-cred-lbl {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  margin-top: 4px;
}

.sobre-op1-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.sobre-op1-content h2 {
  text-align: left;
  margin-bottom: 0;
}

.sobre-op1-content p {
  text-align: left;
  color: var(--text-secondary);
  line-height: 1.7;
}

.sobre-credenciais {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 1.5rem 0 2rem;
}

.sobre-cred-item {
  padding: 0 1.5rem;
  text-align: left;
}

.sobre-cred-item:first-child {
  padding-left: 0;
}

.sobre-cred-num {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--gold);
}

.sobre-cred-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.sobre-cred-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.sobre .pillar.glass-card {
  display: flex;
  gap: 0.85rem;
  align-items: center; /* Centraliza verticalmente o ícone com o texto */
  background: rgba(255, 255, 255, 0.7); /* Vidro fosco mais opaco para o fundo claro */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(158, 122, 81, 0.15); /* Borda sutil dourada/marrom */
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem; /* Mais condensado */
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(158, 122, 81, 0.04);
}

.sobre .pillar.glass-card:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-2px); /* Pequena elevação moderna */
}

.sobre .pillar.glass-card .pillar-icon {
  width: 42px; /* Ligeiramente menor para condensar */
  height: 42px;
  background: rgba(158, 122, 81, 0.08); /* Fundo sutil dourado */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  border: 1px solid rgba(158, 122, 81, 0.15);
}

.sobre .pillar.glass-card .pillar-icon svg {
  width: 18px; /* Ligeiramente menor */
  height: 18px;
  color: var(--gold-dark); /* Cor contrastante escura */
  transition: var(--transition);
}

.sobre .pillar.glass-card:hover .pillar-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.sobre .pillar.glass-card:hover .pillar-icon svg {
  color: #ffffff;
}

.sobre .pillar.glass-card strong {
  display: block;
  font-size: 0.95rem; /* Fonte elegante ajustada */
  margin-bottom: 0.1rem; /* Margem interna menor para condensar */
  font-weight: 700;
  color: var(--text-primary); /* Texto escuro legível */
  letter-spacing: -0.01em;
}

.sobre .pillar.glass-card p {
  font-size: 0.82rem; /* Texto descritivo mais compacto */
  color: var(--text-secondary); /* Cinza escuro legível */
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .sobre-op1 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .sobre-op1-foto-wrap {
    max-width: 400px;
    margin: 0 auto;
  }
  .sobre-op1-content {
    align-items: center;
    text-align: center;
  }
  .sobre-op1-content h2, .sobre-op1-content p {
    text-align: center;
  }
  .sobre-credenciais {
    justify-content: center;
  }
}

.sobre-pillars {
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* =============================================
   SOBRE 2 (ESTILO INSPIRADO NO MOCKUP)
   ============================================= */
.sobre-2 {
  padding: 8rem 0;
  background: var(--dark-900); /* Fundo branco para destacar o card creme flutuante */
  position: relative;
  overflow: hidden;
}

.sobre-2-container {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 750px;
  background: #fbf9f6; /* Fundo creme do mockup */
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(43, 35, 29, 0.04);
  border: 1px solid rgba(158, 122, 81, 0.12);
}

.sobre-2-foto-col {
  width: 100%;
  height: 100%;
  position: relative;
}

.sobre-2-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.sobre-2-content-col {
  background: #fbf9f6;
  padding: 64px 64px 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.sobre-2-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #9e7a51;
  background: #f4eee5;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  display: inline-block;
}

.sobre-2-content-col h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.25;
  color: #2b231d;
  margin-bottom: 16px;
  text-align: left;
}

.sobre-2-content-col h2 .gold-text {
  color: #9e7a51;
}

.sobre-2-divider {
  width: 40px;
  height: 2px;
  background: #9e7a51;
  margin-bottom: 24px;
}

.sobre-2-text {
  margin-bottom: 28px;
}

.sobre-2-text p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #5a5048;
  margin-bottom: 14px;
  text-align: left;
}

.sobre-2-text p strong {
  color: #2b231d;
}

/* Estatísticas */
.sobre-2-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.sobre-2-stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sobre-2-stat-item .stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #9e7a51;
  line-height: 1.2;
}

.sobre-2-stat-item .stat-label {
  font-size: 0.75rem;
  color: #8b827a;
  margin-top: 2px;
}

.sobre-2-stat-sep {
  width: 1px;
  height: 36px;
  background: #ebe1d1;
}

/* Pilares */
.sobre-2-pillars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 580px;
  margin-bottom: 36px;
}

.sobre-2-pillar-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center; /* Centralizado com os ícones exatamente como no print */
  gap: 16px;
  box-shadow: 0 4px 16px rgba(158, 122, 81, 0.03);
  border: 1px solid rgba(158, 122, 81, 0.05);
  transition: var(--transition);
}

.sobre-2-pillar-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(158, 122, 81, 0.06);
  border-color: rgba(158, 122, 81, 0.15);
}

.sobre-2-pillar-icon {
  width: 42px;
  height: 42px;
  background: #fcfaf7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #ebe1d1;
  transition: var(--transition);
}

.sobre-2-pillar-icon svg {
  width: 18px;
  height: 18px;
  color: #9e7a51;
  transition: var(--transition);
}

.sobre-2-pillar-card:hover .sobre-2-pillar-icon {
  background: #9e7a51;
  border-color: #9e7a51;
}

.sobre-2-pillar-card:hover .sobre-2-pillar-icon svg {
  color: #ffffff;
}

.sobre-2-pillar-info {
  display: flex;
  flex-direction: column;
}

.sobre-2-pillar-info strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #2b231d;
  margin-bottom: 2px;
  text-align: left;
}

.sobre-2-pillar-info p {
  font-size: 0.82rem;
  color: #5a5048;
  margin: 0;
  line-height: 1.4;
  text-align: left;
}

#sobre-2-cta-btn {
  width: fit-content;
}

@media (max-width: 991px) {
  .sobre-2 {
    padding: 6rem 0;
  }
  .sobre-2-container {
    grid-template-columns: 1fr;
    min-height: auto;
    margin: 0 1.5rem; /* Margem lateral para parecer um lindo card flutuante no tablet/mobile */
  }
  .sobre-2-foto-col {
    height: 400px;
  }
  .sobre-2-content-col {
    padding: 48px 32px;
  }
}

@media (max-width: 576px) {
  .sobre-2 {
    padding: 4rem 0;
  }
  .sobre-2-container {
    margin: 0 1rem; /* Menos margem lateral em celulares muito pequenos */
  }
  .sobre-2-foto-col {
    height: 300px;
  }
  .sobre-2-content-col {
    padding: 32px 20px;
  }
  .sobre-2-content-col h2 {
    font-size: 1.8rem;
  }
  .sobre-2-stats {
    gap: 16px;
    margin-bottom: 24px;
  }
  .sobre-2-stat-item .stat-num {
    font-size: 1.5rem;
  }
  .sobre-2-pillars {
    margin-bottom: 28px;
  }
  .sobre-2-pillar-card {
    padding: 12px 16px;
    gap: 12px;
  }
  .sobre-2-pillar-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .sobre-2-pillar-icon svg {
    width: 16px;
    height: 16px;
  }
}

.pillar {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid rgba(158, 122, 81, 0.1);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(158, 122, 81, 0.05);
}

.pillar:hover {
  border-color: rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.04);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  background: #f0e8da;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.pillar-icon svg {
  width: 20px;
  height: 20px;
  color: #5c3d1e;
  transition: var(--transition);
}

.pillar:hover .pillar-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.pillar:hover .pillar-icon svg {
  color: #fff;
}

.pillar strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.pillar p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* =============================================
   SERVIÇOS
   ============================================= */
.servicos {
  padding: 8rem 0;
  background: var(--dark-900);
  position: relative;
}

.servicos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.servico-card {
  flex: 1 1 350px;
  max-width: 380px;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(158, 122, 81, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(158, 122, 81, 0.05);
}

.servico-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.servico-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), var(--shadow-gold);
}

.servico-card:hover::after {
  transform: scaleX(1);
}

.servico-icon {
  width: 48px;
  height: 48px;
  background: #f0e8da;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.servico-icon svg {
  width: 22px;
  height: 22px;
  color: #5c3d1e;
  transition: var(--transition);
}

.servico-card:hover .servico-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.servico-card:hover .servico-icon svg {
  color: #fff;
}

.servico-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.servico-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =============================================
   NÚMEROS
   ============================================= */
.numeros {
  padding: 8rem 0;
  background: linear-gradient(160deg, var(--dark-800) 0%, var(--dark-700) 100%);
  position: relative;
  overflow: hidden;
}

.numeros::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.08), transparent 70%);
  pointer-events: none;
}

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.numero-card {
  background: #ffffff;
  border: 1px solid rgba(158, 122, 81, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(158, 122, 81, 0.08);
}

.numero-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.numero-card:hover .numero-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
}


.numero-icon {
  width: 48px;
  height: 48px;
  background: #f0e8da;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  color: #5c3d1e;
  font-size: 1.4rem;
  transition: var(--transition);
}


.numero-value {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.numero-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.numero-source {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: italic;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.75rem;
}

/* =============================================
   QUOTE
   ============================================= */
.quote-section {
  padding: 10rem 0;
  background: #ffffff;
  text-align: center;
  position: relative;
}

.quote-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem;
  position: relative;
  border: 1px solid rgba(158, 122, 81, 0.15);
  border-radius: var(--radius-md);
}

.quote-inner::before,
.quote-inner::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid var(--gold);
}

.quote-inner::before {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
}

.quote-inner::after {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
}

blockquote {
  font-family: 'Lora', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 500;
  color: #5a3c26;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
  font-style: italic;
}

.quote-marks {
  color: var(--gold);
  font-size: 1.5em;
  line-height: 0;
  vertical-align: -0.3em;
}

cite {
  color: var(--gold);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* =============================================
   CONTATO
   ============================================= */
.contato {
  padding: 8rem 0;
  background: var(--dark-800);
}

.contato-pill-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto 5rem;
  position: relative;
  perspective: 1000px;
}

.contato-pill-photo {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  left: 0;
  z-index: 2;
  border: 10px solid #ffffff;
  box-shadow: 0 20px 50px rgba(158, 122, 81, 0.2);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-20px);
  /* Initial slightly offset */
}

.reveal-active .contato-pill-photo {
  transform: translateX(0);
}

.contato-pill-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  filter: brightness(1.02) contrast(1.05) saturate(1.02);
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
}

.contato-pill-content {
  background: var(--dark-700);
  padding: 5rem 5rem 5rem 240px;
  border-radius: 200px;
  text-align: left;
  flex: 1;
  margin-left: 100px;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 1s ease;
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.reveal-active .contato-pill-content {
  transform: scaleX(1);
  opacity: 1;
}

.contato-pill-content p {
  font-size: 1.4rem;
  color: var(--brand-brown);
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.8s ease 0.6s;
  /* Delayed appearance */
}

.reveal-active .contato-pill-content p {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 900px) {
  .contato-pill-wrap {
    flex-direction: column;
    margin-top: 6rem;
  }

  .contato-pill-photo {
    position: relative;
    width: 240px;
    height: 240px;
    margin-bottom: -60px;
    left: auto;
    border-width: 6px;
  }

  .contato-pill-content {
    margin-left: 0;
    padding: 6rem 2rem 3rem;
    border-radius: 40px;
    text-align: center;
  }

  .contato-pill-content p {
    font-size: 1.15rem;
  }
}

.contato-cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.contato-card {
  background: #ffffff;
  border: 1px solid rgba(158, 122, 81, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(158, 122, 81, 0.08);
  min-width: 200px;
}


.hero {
  min-height: 100vh;
  padding: 160px 0 100px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #f5eee4;
  /* Base color from model */
}

.hero-inner-model {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 5;
}

.hero-content-model {
  text-align: left;
}

.hero-content-model h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.hero-desc-model {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 3rem;
}

.hero-actions-model {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.btn-pill-dark {
  background: var(--brand-brown);
  color: #ffffff;
  padding: 1.25rem 2.5rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
}

.btn-pill-dark:hover {
  background: #462e1d;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-text-hint {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-text-hint:hover {
  color: var(--gold);
  transform: translateY(2px);
}

/* Right side visuals */
.hero-visual-model {
  position: relative;
  height: 600px;
}

.hero-circles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border: 1px solid rgba(158, 122, 81, 0.15);
  border-radius: 50%;
}

.hero-circles::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  border: 1px solid rgba(158, 122, 81, 0.1);
  border-radius: 50%;
}

.hero-stat-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 10;
  min-width: 200px;
  transition: var(--transition);
}

.hero-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.hero-stat-card .stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
}

.hero-stat-card .stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.card-top {
  top: 20%;
  right: 10%;
}

.card-bottom {
  bottom: 15%;
  right: -5%;
}

@media (max-width: 1100px) {
  .hero-inner-model {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 5rem;
  }

  .hero-content-model {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-desc-model {
    margin: 0 auto 3rem;
  }

  .card-bottom {
    right: 5%;
  }
}

.contato-card:hover {
  background: var(--brand-brown);
  border-color: var(--brand-brown);
  box-shadow: 0 8px 28px rgba(90, 60, 38, 0.2);
  transform: translateY(-4px);
}

.contato-card:hover .contato-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.contato-card:hover strong {
  color: #ffffff;
}

.contato-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(158, 122, 81, 0.1);
  border-radius: 50%;
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: var(--transition);
}

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

.whatsapp-icon,
.email-icon,
.insta-icon,
.linkedin-icon {
  color: var(--gold-dark);
}

.contato-card strong {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--brand-brown);
  border-top: 1px solid var(--gold-dark);
  padding: 4rem 0 2rem;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

/* Garante que o footer cubra qualquer gap no final da página no mobile */
.footer::after {
  content: none;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.5rem;
}

.footer-brand .logo-with-icon {
  justify-content: center;
}

.footer .logo-name {
  color: #ffffff;
}

.footer .logo-title {
  color: var(--gold-light);
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.footer-social-link {
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.footer-social-link:hover {
  color: var(--gold-light);
  transform: translateY(-3px);
  background: rgba(201, 168, 76, 0.15);
  border-color: rgba(230, 210, 158, 0.4);
}

.footer-bottom a:hover {
  color: #ffffff;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
}


/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* Antecipa o menu mobile para Tablets na vertical */
  #main-nav {
    display: none !important;
  }
  
  /* Empurra o botão para a direita, colando ele no hambúrguer */
  .header-cta, #header-cta-btn {
    margin-left: auto !important; 
    padding: 0.5rem 1.2rem !important;
    font-size: 0.85rem !important;
  }

  .hamburger {
    display: flex !important;
    margin-left: 0 !important; /* Remove o auto daqui, pois o botão já está empurrando tudo */
  }

  .header-inner {
    gap: 1.5rem !important; /* Espaço elegante entre a Logo, Botão e Hambúrguer */
  }
}

@media (max-width: 768px) {

  /* Fix background-attachment: fixed que causa área extra no mobile (Safari/iOS) */
  body {
    background-attachment: scroll;
  }

  /* Header: hide nav only */
  #main-nav {
    display: none;
  }

  /* Garantir que o botão CTA desktop NÃO apareça no mobile */
  .header-cta,
  .header-cta-desktop {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }

  /* Hero: stack content vertically, center everything */
  .hero {
    min-height: auto;
    height: auto;
    padding: 130px 0 60px;
    overflow: hidden;
  }

  .hero-inner-model {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-content-model {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-content-model h1 {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }

  .hero-desc-model {
    margin: 0 auto 2rem;
    max-width: 100%;
  }

  .hero-actions-model {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
  }

  .btn-pill-dark {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Hide decorative circles on mobile to avoid horizontal scroll */
  .hero-circles {
    display: none !important;
  }

  /* Hero stat cards: remove absolute positioning, stack them */
  .hero-visual-model {
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    width: 100%;
    overflow: hidden;
  }

  .hero-stat-card {
    position: static !important;
    flex: 1 1 140px;
    min-width: 140px;
    max-width: 200px;
    padding: 1.25rem;
  }

  /* Old hero (non-model) */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-card {
    min-width: auto;
    flex: 1;
    min-width: 200px;
  }

  /* Sections */
  .sobre-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .sobre-image-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 1.5rem;
  }

  .sobre-image-placeholder {
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-lg);
    aspect-ratio: 4/5;
  }

  .sobre-badge-card {
    right: 0.75rem;
    bottom: 0;
  }

  .sobre-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    overflow: hidden;
  }

  .sobre-content h2 {
    text-align: center;
    width: 100%;
    word-break: break-word;
  }

  .sobre-content>p {
    text-align: center;
    width: 100%;
    word-break: break-word;
  }

  .sobre-pillars {
    width: 100%;
    text-align: left;
  }

  .pillar {
    text-align: left;
  }

  #sobre-cta-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }



  .servicos-grid {
    grid-template-columns: 1fr;
  }

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

  .contato-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .contato-card {
    min-width: unset;
    padding: 1rem 1.25rem;
    gap: 0.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .numeros-grid {
    grid-template-columns: 1fr;
  }

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


  .hero-card {
    min-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* =============================================
   BLOG & POSTS
   ============================================= */
.blog-header {
  padding: 120px 0 60px;
  background: var(--dark-800);
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 0;
}


.post-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-10px);
}

.post-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.post-card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.post-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.post-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.post-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Single Post Styles */
.post-hero {
  padding: 140px 0 60px;
  background: var(--dark-800);
}

.post-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.post-title-main {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.post-subtitle-main {
  font-size: 1.4rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-weight: 400;
  line-height: 1.4;
}

.post-featured-img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 4rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.post-content-body {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.post-content-body p {
  margin-bottom: 2rem;
}

.post-content-body h2 {
  font-size: 1.8rem;
  margin: 3rem 0 1.5rem;
}

/* Post Actions */
.post-actions-bar {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--dark-600);
  border-bottom: 1px solid var(--dark-600);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.rating-system {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
}

.star {
  cursor: pointer;
  font-size: 1.8rem;
  color: #d1d1d1;
  transition: all 0.3s ease;
  margin: 0 2px;
}

.star:hover,
.star:hover~.star {
  color: #ffc107;
  transform: scale(1.1);
}

.star.active {
  color: #ffc107;
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.4);
}

.share-buttons {
  display: flex;
  gap: 1rem;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-500);
  color: var(--brand-brown);
  transition: var(--transition);
}

.share-btn:hover {
  background: var(--gold);
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.3);
}

/* Old sections removed to avoid conflicts */



.rating-system,
.share-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-primary);
}

.rating-system strong,
.share-buttons strong {
  color: var(--gold-dark);
  font-weight: 700;
}

.share-btn-group {
  display: flex;
  gap: 0.6rem;
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark-500);
  color: var(--brand-brown) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1rem;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.share-btn.facebook:hover {
  background: #1877f2;
}

.share-btn.linkedin:hover {
  background: #0a66c2;
}

.share-btn.whatsapp:hover {
  background: #25d366;
}

.stars {
  display: flex;
  gap: 0.2rem;
  font-size: 1.2rem;
  color: var(--dark-500);
  cursor: pointer;
}

.star.active {
  color: var(--gold);
  text-shadow: 0 0 15px rgba(201, 168, 76, 0.5);
}

.comment-form {
  background: transparent;
  padding: 0;
  margin-bottom: 2.5rem;
}

.comment-form-group {
  margin-bottom: 1.25rem;
}

.comment-form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #555;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.comment-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.comment-form textarea,
.comment-form input {
  width: 100%;
  padding: 0.85rem;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.comment-form textarea {
  min-height: 150px;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--gold);
  background: white;
  outline: none;
}

.comment-instructions {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

/* Old button removed */

/* Recent Posts Section */
.recent-posts-section {
  border-top: 1px solid var(--dark-600);
  padding-top: 2rem !important;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.section-header-row h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.view-all-link {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
}

.recent-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .recent-posts-grid {
    grid-template-columns: 1fr;
  }
}

.recent-post-card {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.recent-post-card:hover {
  transform: translateY(-5px);
}

.recent-post-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.recent-post-card h5 {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Comments Refinement */
.comments-header {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--dark-600);
  margin-bottom: 1.5rem;
}

.comments-header h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

/* Featured Post */
.featured-post-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 4rem;
  transition: var(--transition);
}

.featured-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.featured-post-img-wrap {
  width: 100%;
  aspect-ratio: 21/9;
  overflow: hidden;
}

@media (max-width: 768px) {
  .featured-post-img-wrap {
    aspect-ratio: 16/9;
  }
}

.featured-post-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-post-info {
  padding: 3rem;
}

@media (max-width: 768px) {
  .featured-post-info {
    padding: 1.5rem;
  }
}

.featured-post-info h2 {
  font-size: 2.2rem;
  margin: 1rem 0;
  line-height: 1.2;
}

.section-divider {
  border-bottom: 1px solid var(--dark-600);
  margin: 4rem 0 3rem;
  padding-bottom: 1rem;
}

.divider-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}


.nav-link-post {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 45%;
}

.nav-link-post.next {
  text-align: right;
}

.nav-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.nav-title {
  font-weight: 700;
  font-size: 1rem;
}


/* =============================================
   ADMIN PANEL
   ============================================= */
.admin-section {
  padding: 140px 0 80px;
  background: var(--dark-900);
  min-height: 100vh;
}

.admin-form-card {
  background: #ffffff;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold);
  max-width: 900px;
  margin: 0 auto;
}

.admin-form-group {
  margin-bottom: 2rem;
}

.admin-form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.admin-form-group input,
.admin-form-group select,
.admin-form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--dark-600);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
}

.admin-form-group textarea {
  min-height: 300px;
  line-height: 1.6;
}

.admin-btn {
  background: var(--brand-brown);
  color: #ffffff;
  padding: 1rem 3rem;
  border: none;
  border-radius: 100px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.admin-btn:hover {
  background: #462e1d;
  transform: translateY(-2px);
}

/* ── HERO DO ARTIGO ── */
.art-hero {
  background: var(--brand-brown);
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
}

.art-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.art-hero::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.art-hero .container {
  position: relative;
  z-index: 1;
  padding-bottom: 52px;
  max-width: 860px;
}

.art-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}

.art-breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.art-breadcrumb a:hover {
  color: var(--gold-light);
}

.art-breadcrumb span {
  color: rgba(255, 255, 255, 0.18);
}

.art-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(230, 210, 158, 0.35);
  padding: 0.3rem 1rem;
  border-radius: var(--radius-xl);
  margin-bottom: 20px;
}

.art-h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 28px;
}

.art-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.art-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.art-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(230, 210, 158, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-light);
}

.art-author-name {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.art-author-role {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.meta-sep {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.12);
}

.meta-item {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.meta-item strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ── CORPO DO ARTIGO ── */
.art-body-wrap {
  padding: 56px 0 0;
}

.art-body-wrap .container {
  max-width: 860px;
}

.art-body p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.art-body h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 3rem 0 1.25rem;
  letter-spacing: -0.01em;
}

.art-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin: 2rem 0 0.75rem;
}

/* Pull quote */
.pullquote {
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.75rem;
  margin: 2.5rem 0;
  background: rgba(201, 168, 76, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.pullquote p {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.55;
  margin: 0 !important;
}

.pullquote cite {
  display: block;
  margin-top: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-style: normal;
  font-weight: 600;
}

/* Caixa de destaque */
.highlight-box {
  background: var(--dark-800);
  border: 1px solid var(--dark-600);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}

.highlight-box .box-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
  display: block;
}

.highlight-box ol {
  padding-left: 1.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.highlight-box ol li {
  margin-bottom: 0.5rem;
}

.highlight-box ol li strong {
  color: var(--text-primary);
  font-weight: 600;
}

.art-divider {
  height: 1px;
  background: var(--dark-600);
  margin: 3rem 0;
}

/* TAGS */
.tags-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.tags-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 4px;
}

.tag-pill {
  font-size: 0.8rem;
  color: var(--text-secondary);
  border: 1px solid var(--dark-600);
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  cursor: pointer;
}

.tag-pill:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(201, 168, 76, 0.05);
}

/* ── AVALIAÇÃO ── */
.rating-card {
  background: var(--dark-800);
  border: 1px solid var(--dark-600);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: var(--shadow-gold);
}

.rating-left {
  flex-shrink: 0;
}

.rating-action-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 12px;
}

/* estrelas CSS puro — row-reverse trick */
.stars-input {
  display: flex;
  flex-direction: row-reverse;
  gap: 4px;
}

.stars-input input {
  display: none;
}

.stars-input label {
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--dark-500);
  transition: color 0.2s, transform 0.2s;
  line-height: 1;
}

.stars-input label:hover,
.stars-input label:hover~label,
.stars-input input:checked~label {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(201, 168, 76, 0.4);
}

.rating-summary {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-left: 2rem;
  border-left: 1px solid var(--dark-600);
}

.rating-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-dark);
  line-height: 1;
}

.rating-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rating-stars-static {
  display: flex;
  gap: 3px;
}

.rating-stars-static span {
  font-size: 1rem;
  color: var(--gold);
}

.rating-stars-static span.empty {
  color: var(--dark-500);
}

.rating-count {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.rating-msg {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── COMPARTILHAMENTO ── */
.share-card {
  background: var(--dark-800);
  border: 1px solid var(--dark-600);
  border-radius: var(--radius-md);
  padding: 1.25rem 2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.share-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.share-sep {
  width: 1px;
  height: 20px;
  background: var(--dark-600);
}

.share-quote {
  flex: 1;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.4;
}

.share-icons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.share-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dark-500);
  color: var(--brand-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.share-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.share-btn.linkedin:hover {
  background: #0a66c2;
  color: #fff;
}

.share-btn.whatsapp:hover {
  background: #25d366;
  color: #fff;
}

.share-btn.copylink:hover {
  background: var(--gold);
  color: #fff;
}

/* ── BIO AUTOR ── */
.author-bio-card {
  background: var(--brand-brown);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.author-bio-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.15);
  border: 1.5px solid rgba(230, 210, 158, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold-light);
}

.author-bio-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 4px;
}

.author-bio-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.author-bio-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ── POSTS RECENTES ── */
.recent-section {
  margin-bottom: 1rem;
}

.section-header-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--dark-600);
}

.section-header-row h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
}

.view-all-link {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  transition: color 0.2s;
}

.view-all-link:hover {
  color: var(--gold-dark);
}

.recent-posts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.recent-post-card {
  background: var(--dark-800);
  border: 1px solid var(--dark-600);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.recent-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201, 168, 76, 0.3);
}

.recent-post-thumb {
  height: 150px;
  background: var(--brand-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.recent-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(201, 168, 76, 0.15) 0%, transparent 60%);
}

.recent-thumb-tag {
  position: absolute;
  top: 8px;
  left: 10px;
  z-index: 2;
  font-family: 'Outfit', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(230, 210, 158, 0.3);
  background: rgba(90, 60, 38, 0.5);
  padding: 2px 8px;
  border-radius: var(--radius-xl);
}

.recent-thumb-num {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 2;
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

.recent-post-body {
  padding: 1rem 1.1rem;
}

.recent-post-meta {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.recent-post-card h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  font-family: 'Outfit', sans-serif;
}

/* ── COMENTÁRIOS ── */
.comments-section {
  background: var(--dark-800);
  border: 1px solid var(--dark-600);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  margin-bottom: 5rem;
}

.comments-header {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--dark-600);
  margin-bottom: 1.75rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 0.3rem 1rem;
  border-radius: var(--radius-xl);
  margin-bottom: 0.75rem;
}

.comments-header h4 {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}

/* formulário */
.comment-form {
  margin-bottom: 2.25rem;
}

.comment-form-group {
  margin-bottom: 1.1rem;
}

.comment-form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 6px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
}

.comment-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"] {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--dark-700);
  border: 1px solid var(--dark-600);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.comment-form textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

.comment-form input::placeholder,
.comment-form textarea::placeholder {
  color: var(--dark-500);
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.comment-instructions {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

#btn-publish-comment {
  width: 100%;
  padding: 1rem;
  background: var(--brand-brown);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

#btn-publish-comment:hover {
  background: #462e1d;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.25);
  transform: translateY(-1px);
}

#btn-publish-comment svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* lista comentários */
.comments-list-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.comments-div {
  height: 1px;
  background: var(--dark-600);
  margin: 1.75rem 0;
}

.comment {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--dark-600);
}

.comment:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.comment-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.comment-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--dark-700);
  border: 1px solid var(--dark-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.comment-author {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.comment-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.comment-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 10px;
  padding-left: 50px;
}

.comment-reply-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: none;
  border: none;
  cursor: pointer;
  padding-left: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.comment-reply-btn:hover {
  color: var(--gold);
}

.comment-reply-btn svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
}

.comment-replies {
  margin-top: 14px;
  padding-left: 50px;
  border-left: 2px solid var(--dark-600);
}

.reply {
  padding: 12px 0 12px 16px;
  border-bottom: 1px solid var(--dark-600);
}

.reply:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.reply-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.reply-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
}

.reply-author {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
}

.reply-date {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.reply-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── ANIMAÇÕES ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.art-hero .container>* {
  animation: fadeUp 0.5s ease both;
}

.art-breadcrumb {
  animation-delay: 0.05s;
}

.art-tag-pill {
  animation-delay: 0.12s;
}

.art-h1 {
  animation-delay: 0.2s;
}

.art-meta {
  animation-delay: 0.3s;
}

@media (max-width: 768px) {
  .art-h1 {
    font-size: 1.7rem;
  }

  .art-meta {
    gap: 10px;
  }

  .rating-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .rating-summary {
    border-left: none;
    border-top: 1px solid var(--dark-600);
    padding-left: 0;
    padding-top: 1.25rem;
    width: 100%;
  }

  .share-card {
    flex-wrap: wrap;
  }

  .share-quote {
    display: none;
  }

  .recent-posts-grid {
    grid-template-columns: 1fr;
  }

  .comment-row {
    grid-template-columns: 1fr;
  }

  .author-bio-card {
    flex-direction: column;
  }

  .comment-text,
  .comment-reply-btn {
    padding-left: 0;
  }

  .comment-replies {
    padding-left: 16px;
  }
}

/* =============================================
   BLOG PAGE – HERO & FILTER BAR
   ============================================= */

.blog-hero {
  background-color: #4a3020;
  padding: 140px 0 30px;
  /* Reduzido de 60px para aproximar o filtro */
  text-align: center;
  position: relative;
  overflow: hidden;
}


.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(201, 168, 110, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.blog-hero-label {
  display: inline-block;
  background: rgba(201, 168, 110, 0.15);
  border: 1px solid rgba(201, 168, 110, 0.35);
  color: #c9a86e;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}

.blog-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.blog-hero-highlight {
  color: #c9a86e;
}

.blog-hero-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Filter Bar */
.blog-filter-bar {
  background: #f5ede0;
  border-bottom: 1px solid #e8d9c5;
  padding: 0.85rem 0;
  position: sticky;
  top: 72px;
  z-index: 90;
  margin-bottom: 1rem;
  /* Dobrado para 16px */
}





.blog-filter-inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.blog-filter-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.blog-filter-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  flex: 1;
}

.blog-search-wrap {
  margin-left: auto;
  flex-shrink: 0;
}

.filter-pill {
  background: transparent;
  border: 1.5px solid #d4c0a8;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.filter-pill:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.filter-pill.active {
  background: #4a3020;
  border-color: #4a3020;
  color: #fff;
}

/* Blog List Content */
.blog-list {
  padding-top: 1rem !important;
  /* Dobrado para 16px */
}





/* Hide posts that don't match filter */
.post-card.hidden {
  display: none;
}

/* Featured Section Label & Line */
.featured-section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.featured-section-label span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.label-line {
  flex-grow: 1;
  height: 1px;
  background: #e8d9c5;
}

/* Post Meta Top/Bottom */
.post-meta-top,
.post-meta-bottom {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.post-meta-bottom {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.meta-dot {
  width: 3px;
  height: 3px;
  background: var(--text-muted);
  border-radius: 50%;
  opacity: 0.5;
}

/* Post Card Category Pill */
.post-category-pill {
  display: inline-block;
  background: #fdf8f0;
  border: 1px solid #e8d9c5;
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Post Card Layout Adjustments */
.post-card,
.featured-post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s var(--transition), box-shadow 0.3s var(--transition);
  height: 100%;
}

.featured-post-card {
  flex-direction: row;
  min-height: 400px;
}

@media (max-width: 992px) {
  .featured-post-card {
    flex-direction: column;
  }
}

.post-card:hover,
.featured-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.featured-post-img-wrap {
  flex: 1;
  overflow: hidden;
}

.featured-post-info {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .featured-post-info {
    padding: 1.5rem;
  }
}

.featured-post-info h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.post-card-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}


.post-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition);
}

.post-card:hover .post-card-img {
  transform: scale(1.05);
}

.post-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-card-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
  line-height: 1.4;
}

.post-card-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

/* Card Footer (Comments & Link) */
.post-card-footer {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.post-comments-count {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.post-views-count {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.post-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.post-comments-count svg,
.post-views-count svg {
  opacity: 0.7;
}

/* Featured Post Specific Meta (Overrides removed since card is white now) */
.featured-post-info .post-meta-bottom {
  color: var(--text-muted);
}

.featured-post-info .post-card-footer {
  border-top-color: #eee;
}



/* Search Input */
.blog-search-input-field {
  background: #fff;
  border: 1.5px solid #d4c0a8;
  color: var(--text-primary);
  font-size: 0.85rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  width: 220px;
  outline: none;
  transition: all 0.2s;
}


.blog-search-input-field:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(158, 122, 81, 0.1);
}

.divider-link {
  color: var(--gold-dark);
  text-decoration: none !important;
  font-weight: 700;
  transition: all 0.2s;
  display: inline-block;
  font-size: 0.75rem;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}


.divider-link:hover {
  color: var(--gold);
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .blog-filter-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .blog-filter-pills {
    flex: unset;
    width: 100%;
  }

  .blog-search-wrap {
    margin-left: 0;
    width: 100%;
  }

  .blog-search-input-field {
    width: 100%;
  }
}

/* =============================================
   MOBILE HEADER FIX
   ============================================= */

/* Desktop: hide mobile WhatsApp icon */
.header-whatsapp-mobile {
  display: none;
}

@media (max-width: 768px) {

  /* ── Header container ── */
  #header {
    padding: 0.6rem 0 !important;
    height: auto !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  .header-inner {
    display: grid !important;
    grid-template-columns: 1fr 36px 36px !important;
    align-items: center !important;
    padding: 0 1rem !important;
    gap: 0.4rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* ── Logo — ocupa coluna 1, não ultrapassa ── */
  .logo {
    min-width: 0 !important;
    overflow: hidden !important;
    grid-column: 1 !important;
  }

  .logo-with-icon {
    display: flex !important;
    align-items: center !important;
    gap: 0.45rem !important;
    flex-wrap: nowrap !important;
    min-width: 0 !important;
  }

  .logo-icon-svg {
    width: 28px !important;
    height: 28px !important;
    flex-shrink: 0 !important;
  }

  .logo-text {
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .logo-name {
    font-size: 0.9rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: block !important;
  }

  .logo-title {
    font-size: 0.58rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: block !important;
    letter-spacing: 0.06em !important;
  }

  /* ── Esconder nav e CTA desktop ── */
  .header-inner .header-cta-desktop,
  #main-nav {
    display: none !important;
  }

  /* ── Ícone WhatsApp mobile — coluna 2 ── */
  .header-whatsapp-mobile {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    flex-shrink: 0 !important;
    background: transparent !important;
    border-radius: 8px !important;
    padding: 0.3rem !important;
    grid-column: 2 !important;
    transition: color 0.2s, background 0.2s !important;
  }

  .header-whatsapp-mobile svg {
    width: 22px !important;
    height: 22px !important;
    display: block !important;
  }

  /* ── Hamburger — coluna 3 ── */
  .hamburger {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 5px !important;
    width: 36px !important;
    height: 36px !important;
    flex-shrink: 0 !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0.3rem !important;
    grid-column: 3 !important;
    z-index: 1100 !important;
  }

  .hamburger span {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    border-radius: 2px !important;
    transition: background 0.2s !important;
  }

  /* ══════════════════════════════════
     Cores: index no topo (fundo creme)
     ══════════════════════════════════ */
  #header:not(.scrolled) {
    background: rgba(249, 245, 240, 0.97) !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(90, 60, 38, 0.08) !important;
  }

  #header:not(.scrolled) .logo-name,
  #header:not(.scrolled) .logo-icon-svg {
    color: var(--brand-brown) !important;
  }

  #header:not(.scrolled) .logo-title {
    color: var(--gold-dark) !important;
  }

  #header:not(.scrolled) .header-whatsapp-mobile {
    color: var(--brand-brown) !important;
  }

  #header:not(.scrolled) .hamburger span {
    background: var(--brand-brown) !important;
  }

  /* ══════════════════════════════════
     Cores: após rolar / páginas blog (fundo marrom)
     ══════════════════════════════════ */
  #header.scrolled {
    background: var(--brand-brown) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  }

  #header.scrolled .logo-name,
  #header.scrolled .logo-icon-svg {
    color: #fff !important;
  }

  #header.scrolled .logo-title {
    color: var(--gold-light) !important;
  }

  #header.scrolled .header-whatsapp-mobile {
    color: rgba(255, 255, 255, 0.85) !important;
  }

  #header.scrolled .header-whatsapp-mobile:hover {
    color: #25d366 !important;
    background: rgba(37, 211, 102, 0.12) !important;
  }

  #header.scrolled .hamburger span {
    background: rgba(255, 255, 255, 0.85) !important;
  }
}

/* =============================================
   BLOG CONSOLIDATED FIX (REF: PHOTO)
   ============================================= */

/* Desktop - Enforce Grid and Featured Post */
@media (min-width: 769px) {
  .blog-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2.5rem !important;
    margin-top: 0 !important;
  }

  .featured-post-card {
    display: flex !important;
    flex-direction: row !important;
    background: #fff !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    margin-bottom: 4rem !important;
    text-decoration: none !important;
    color: inherit !important;
    width: 100% !important;
    align-items: stretch !important;
    height: 400px !important;
  }


  .featured-post-img-link {
    flex: 1 !important;
    display: block !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .featured-post-img-wrap {
    width: 100% !important;
    height: 100% !important;
  }


  .featured-post-img-wrap img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .featured-post-info {
    flex: 1 !important;
    padding: 3rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-width: 0 !important;
    /* Prevents flex items from overflowing */
  }


  .featured-post-info h2 {
    font-size: 2.2rem !important;
    margin: 1rem 0 !important;
  }
}

/* Tablet/Mobile Adjustments */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .featured-post-card {
    flex-direction: column !important;
    margin-bottom: 2.5rem !important;
    height: auto !important;
  }

  .featured-post-img-wrap {
    width: 100% !important;
    height: 220px !important;
    min-height: auto !important;
  }

  .featured-post-info {
    padding: 1.5rem !important;
  }
}

/* Category Pill Fix */
.post-category-pill {
  width: fit-content !important;
  display: inline-block !important;
}


/* General Header/Hero Fixes */
.blog-hero {
  background-color: #4a3020 !important;
}

#header.scrolled {
  background: var(--brand-brown) !important;
}

.bg-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

/* Faixa de credenciais hero */
.hero-visual-model > div:last-child {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hero-visual-model img {
  flex: 1;
  min-height: 0;
  border-radius: 16px !important;
  object-fit: cover;
  object-position: center top;
}

.hero-faixa {
  flex-shrink: 0;
}
