/* ============================================
   POTENCIAL LAR E CONSTRUÇÃO
   Premium Construction Materials Website
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Primary Palette - Construction Orange */
  --primary-50: #fff7ed;
  --primary-100: #ffedd5;
  --primary-200: #fed7aa;
  --primary-300: #fdba74;
  --primary-400: #fb923c;
  --primary-500: #f97316;
  --primary-600: #ea580c;
  --primary-700: #c2410c;
  --primary-800: #9a3412;
  --primary-900: #7c2d12;

  /* Accent Yellow */
  --accent-400: #facc15;
  --accent-500: #eab308;
  --accent-600: #ca8a04;

  /* Neutrals - Dark Grays */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --gray-950: #0a0e17;

  /* WhatsApp Green */
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --whatsapp-hover: #20bd5a;

  /* Stars Gold */
  --star-gold: #fbbf24;

  /* Semantic */
  --success: #10b981;
  --info: #3b82f6;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow-orange: 0 0 40px rgba(249, 115, 22, 0.3);
  --shadow-glow-green: 0 0 30px rgba(37, 211, 102, 0.4);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --max-width: 1280px;
  --header-height: 80px;
}

.desktop-only {
  display: inline;
}
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background-color: var(--gray-50);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-500);
  margin-bottom: var(--space-md);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-500), var(--accent-400));
  border-radius: var(--radius-full);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
  color: var(--gray-900);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 640px;
  line-height: 1.7;
}

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

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-slow);
  background: linear-gradient(90deg, transparent 0%, transparent 35%, rgba(255, 255, 255, 0.85) 65%, rgba(255, 255, 255, 0.98) 100%);
}

.header.scrolled,
.header.header-solid {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.35rem;
  color: white;
  transition: color var(--transition-base);
  z-index: 1001;
}

.header.scrolled .logo,
.header.header-solid .logo {
  color: var(--gray-900);
}

.logo-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base);
  z-index: 1001;
}

.logo:hover .logo-icon {
  transform: scale(1.08);
}

.logo-icon svg,
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text span {
  color: white;
  transition: color var(--transition-base);
}

.header.scrolled .logo-text span,
.header.header-solid .logo-text span {
  color: var(--gray-900);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-800);
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.header.scrolled .nav-links a,
.header.header-solid .nav-links a {
  color: var(--gray-800);
}

.nav-links a:hover,
.header.scrolled .nav-links a:hover,
.header.header-solid .nav-links a:hover {
  color: var(--primary-500);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-500), var(--accent-400));
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.4rem;
  background: var(--whatsapp);
  color: white !important;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition-base);
  box-shadow: none;
}

.nav-cta:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: none;
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 8px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--gray-800);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.header.scrolled .hamburger span,
.header.header-solid .hamburger span {
  background: var(--gray-800);
}

.hamburger.active span {
  background: white !important;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gray-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(10, 14, 23, 0.78) 0%,
    rgba(10, 14, 23, 0.55) 45%,
    rgba(10, 14, 23, 0.30) 100%
  );
}

.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(to top, var(--gray-50), transparent);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--header-height) + var(--space-4xl)) var(--space-lg) var(--space-4xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.hero-text {
  animation: fadeInLeft 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.5rem 1.2rem;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-400);
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(10px);
}

.hero-badge svg {
  width: 18px;
  height: 18px;
  fill: var(--star-gold);
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  color: white;
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.hero-title .highlight {
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--accent-500);
  opacity: 0.85;
  border-radius: var(--radius-sm);
  z-index: -1;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 1rem 2.2rem;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  color: white;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg), var(--shadow-glow-orange);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl), 0 0 50px rgba(249, 115, 22, 0.4);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 1rem 2.2rem;
  background: var(--whatsapp);
  color: white;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg), var(--shadow-glow-green);
  border: none;
  cursor: pointer;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl), 0 0 50px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg,
.btn-primary svg {
  width: 22px;
  height: 22px;
}

.btn-map {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.8rem 1.8rem;
  background: var(--gray-900);
  color: white;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--space-md);
  cursor: pointer;
}

.btn-map:hover {
  background: var(--primary-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow-orange);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  animation: fadeInRight 0.8s ease-out 0.3s both;
}

.stats-card {
  width: 100%;
  max-width: 440px;
  background: rgba(10, 14, 23, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(59, 130, 246, 0.25);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.03);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(59, 130, 246, 0.25);
  transform: translateX(6px);
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.stat-icon.orange {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.stat-icon.green {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.stat-icon.gold {
  background: linear-gradient(135deg, var(--accent-400), var(--accent-600));
  box-shadow: 0 4px 15px rgba(234, 179, 8, 0.3);
}

.stat-icon.blue {
  background: linear-gradient(135deg, var(--info), #2563eb);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: white;
  margin-bottom: 2px;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0;
  line-height: 1.4;
}

/* ============================================
   DIFFERENTIALS SECTION
   ============================================ */
.differentials {
  background: var(--gray-50);
  position: relative;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.diff-card {
  background: white;
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-slow);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--accent-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.diff-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

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

.diff-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-lg);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  color: var(--primary-600);
  transition: all var(--transition-base);
}

.diff-card:hover .diff-icon {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  color: white;
  transform: scale(1.1);
  box-shadow: var(--shadow-glow-orange);
}

.diff-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.diff-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
  background: white;
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 0% 0%, rgba(249, 115, 22, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(234, 179, 8, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.product-card {
  background: var(--gray-50);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: all var(--transition-slow);
  border: 1px solid var(--gray-100);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-200);
}

.product-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-img img {
  transform: scale(1.08);
}

.product-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.04));
  pointer-events: none;
}

.product-info {
  padding: var(--space-lg) var(--space-xl);
}

.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
  font-weight: 700;
}

.product-info p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.7rem 1.4rem;
  background: var(--whatsapp);
  color: white;
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition-base);
  width: 100%;
  justify-content: center;
}

.product-cta:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), var(--shadow-glow-green);
}

.product-cta svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   NEIGHBORHOODS / BAIRROS SECTION
   ============================================ */
.neighborhoods {
  background: var(--gray-900);
  position: relative;
  overflow: hidden;
}

.neighborhoods::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.neighborhoods .section-title {
  color: white;
}

.neighborhoods .section-subtitle {
  color: var(--gray-400);
}

.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.neighborhood-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.neighborhood-card:hover {
  background: rgba(249, 115, 22, 0.08);
  border-color: rgba(249, 115, 22, 0.2);
  transform: translateY(-4px);
}

.neighborhood-pin {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.neighborhood-card h3 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: var(--space-xs);
  font-weight: 700;
}

.neighborhood-card p {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ============================================
   REVIEWS / AVALIAÇÕES SECTION
   ============================================ */
.reviews {
  background: var(--gray-50);
  position: relative;
}

.reviews-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}

.reviews-score {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
}

.reviews-score .big-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.reviews-score span:last-child {
  font-size: 1.5rem;
  color: var(--gray-400);
  font-weight: 600;
}

.stars {
  display: flex;
  gap: 4px;
}

.stars svg {
  width: 28px;
  height: 28px;
  fill: var(--star-gold);
  filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.reviews-count {
  font-size: 1rem;
  color: var(--gray-500);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.review-card {
  background: white;
  border-radius: var(--radius-2xl);
  padding: var(--space-xl);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
  position: relative;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: var(--space-md);
  right: var(--space-xl);
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--primary-100);
  line-height: 1;
}

.review-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.review-meta .review-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-800);
}

.review-meta .review-date {
  font-size: 0.82rem;
  color: var(--gray-400);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-md);
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--star-gold);
}

.review-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ============================================
   CONTACT / CTA SECTION
   ============================================ */
.contact {
  background: linear-gradient(135deg, var(--gray-900), var(--gray-950));
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.contact::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info .section-title {
  color: white;
}

.contact-info .section-subtitle {
  color: var(--gray-400);
  margin-bottom: var(--space-2xl);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  color: var(--gray-300);
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: rgba(249, 115, 22, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--primary-400);
}

.contact-item-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}

.contact-item-text p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.5;
}

.contact-item-text a {
  color: var(--primary-400);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-item-text a:hover {
  color: var(--primary-300);
}

.contact-cta-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  text-align: center;
  backdrop-filter: blur(10px);
}

.contact-cta-box h3 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: var(--space-md);
}

.contact-cta-box p {
  color: var(--gray-400);
  margin-bottom: var(--space-xl);
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-cta-box .btn-whatsapp {
  width: 100%;
  justify-content: center;
  padding: 1.1rem 2rem;
  font-size: 1.15rem;
}

.contact-phone {
  margin-top: var(--space-lg);
  font-size: 1.3rem;
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
}

.contact-phone a {
  color: var(--primary-400);
}

.contact-phone a:hover {
  color: var(--primary-300);
}

.map-container {
  margin-top: var(--space-3xl);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-950);
  padding: var(--space-3xl) 0 var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand .logo {
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: white;
  margin-bottom: var(--space-lg);
}

.footer-col ul li {
  margin-bottom: var(--space-sm);
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--gray-500);
  transition: all var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--primary-400);
  padding-left: 4px;
}

.footer-schedule li {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  color: var(--gray-500);
}

.footer-schedule li span:first-child {
  color: var(--gray-300);
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--gray-600);
}

.footer-bottom .cnpj {
  font-size: 0.82rem;
  color: var(--gray-600);
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.whatsapp-float-tooltip {
  background: white;
  color: var(--gray-800);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-base);
  pointer-events: none;
}

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

.whatsapp-float-btn {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl), var(--shadow-glow-green);
  transition: all var(--transition-base);
  animation: pulse 2.5s infinite;
  border: none;
  cursor: pointer;
}

.whatsapp-float-btn:hover {
  background: var(--whatsapp-hover);
  transform: scale(1.1);
  animation: none;
}

.whatsapp-float-btn svg {
  width: 34px;
  height: 34px;
  fill: white;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin: 0 auto var(--space-2xl);
  }

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

  .hero-stats {
    max-width: 500px;
    margin: 0 auto;
  }

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

  .contact-content {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

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

  /* Mobile menu active header override to prevent containing block bug in WebKit/Blink */
  .header.menu-active {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
  }

  .header.menu-active .logo,
  .header.menu-active .logo-text span {
    color: white !important;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 23, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start; /* Align from the top to prevent logo overlap */
    align-items: center; /* Horizontally center links */
    text-align: center;
    padding-top: calc(var(--header-height) + var(--space-2xl)); /* Position below the header logo */
    gap: var(--space-xl); /* Slightly smaller gap to make room for all links */
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    z-index: 1000;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.25rem;
    color: white !important;
    padding: var(--space-xs) var(--space-md);
    transition: color var(--transition-fast);
  }

  .nav-links a:hover {
    color: var(--primary-400) !important;
  }

  .nav-links .nav-cta {
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    margin-top: var(--space-sm);
    width: 80%;
    max-width: 260px;
    text-align: center;
    background: var(--whatsapp) !important;
    border-radius: var(--radius-full);
    justify-content: center;
    color: white !important;
  }

  .nav-links .nav-cta:hover {
    background: var(--whatsapp-hover) !important;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span {
    background: white !important;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero-description {
    font-size: 1.05rem;
  }

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

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

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

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

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

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

  .reviews-score .big-number {
    font-size: 3rem;
  }

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

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

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float-tooltip {
    display: none;
  }

  .whatsapp-float-btn {
    width: 56px;
    height: 56px;
  }

  .whatsapp-float-btn svg {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .hero-content {
    padding-top: calc(var(--header-height) + var(--space-2xl));
    padding-bottom: var(--space-2xl);
  }

  .stat-item {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }

  .contact-cta-box {
    padding: var(--space-xl);
  }
}

}

/* ============================================
   BLOG STYLING (SEO LOCAL)
   ============================================ */
.blog-header {
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--gray-50) 100%);
  padding: calc(var(--header-height) + var(--space-md)) 0 var(--space-lg);
  text-align: left;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-200);
}

.blog-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 5.5vw, 2.2rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: var(--space-xs);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.blog-header .blog-subtitle {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 800px;
  margin: 0;
}

@media (min-width: 768px) {
  .blog-header {
    padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl);
  }
  
  .blog-header h1 {
    font-size: clamp(2.2rem, 3.8vw, 2.75rem);
    letter-spacing: -0.03em;
  }
  
  .blog-header .blog-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
  }
}

.blog-layout {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: var(--space-3xl);
  margin-top: var(--space-3xl);
}

.blog-main-content {
  min-width: 0;
}

.blog-sidebar {
  min-width: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.blog-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-200);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-category {
  display: inline-block;
  align-self: flex-start;
  padding: 0.25rem 0.75rem;
  background: var(--primary-50);
  color: var(--primary-600);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
  transition: color var(--transition-fast);
}

.blog-card:hover .blog-card-title {
  color: var(--primary-500);
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--gray-100);
  padding-top: var(--space-md);
  font-size: 0.8rem;
  color: var(--gray-400);
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.blog-cta-banner {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-xl);
  box-shadow: var(--shadow-xl), var(--shadow-glow-orange);
  margin: var(--space-xl) 0;
}

.blog-cta-banner h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  max-width: 600px;
  line-height: 1.3;
}

.blog-cta-banner .btn-white {
  background: white;
  color: var(--primary-600);
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-weight: 700;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.blog-cta-banner .btn-white:hover {
  background: var(--primary-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Sidebar Styling */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.sidebar-widget {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--primary-100);
}

.sidebar-widget h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-500);
}

.sidebar-schedule li {
  display: flex;
  justify-content: space-between;
  padding: var(--space-xs) 0;
  border-bottom: 1px dashed var(--gray-100);
  font-size: 0.9rem;
  color: var(--gray-600);
}

.sidebar-schedule li:last-child {
  border-bottom: none;
}

.sidebar-schedule li span:first-child {
  font-weight: 600;
  color: var(--gray-800);
}

.sidebar-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  margin-top: var(--space-md);
}

.sidebar-map iframe {
  width: 100%;
  height: 220px;
  display: block;
}

/* Post Interno */
.post-container {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-sm);
}

.post-meta-top {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.post-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.25;
  margin-bottom: var(--space-lg);
}

/* Layout Safety and Responsiveness Resets */
.blog-layout,
.blog-main-content,
.post-container,
.post-content {
  max-width: 100%;
  min-width: 0;
}

/* Table wrapper responsive enforcement */
.post-content > div {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: auto !important;
  display: block !important;
  -webkit-overflow-scrolling: touch;
}

.post-content table {
  width: 100% !important;
  min-width: 580px; /* Ensure columns don't squeeze below 580px, enabling smooth scrolling */
}

.post-featured-img {
  width: 100%;
  max-height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-2xl);
}

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

.post-content {
  color: var(--gray-700);
  font-size: 1.05rem;
  line-height: 1.8;
}

.post-content p {
  margin-bottom: var(--space-lg);
}

.post-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.post-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.post-content ul, .post-content ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.post-content ul {
  list-style-type: disc;
}

.post-content ol {
  list-style-type: decimal;
}

.post-content li {
  margin-bottom: var(--space-xs);
}

.post-content blockquote {
  margin: var(--space-xl) 0;
  padding: var(--space-md) var(--space-xl);
  border-left: 4px solid var(--primary-500);
  background: var(--primary-50);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-style: italic;
  color: var(--gray-800);
}

.post-content blockquote p {
  margin-bottom: 0;
}

.post-content a {
  color: var(--primary-600);
  font-weight: 600;
  border-bottom: 1px dashed var(--primary-400);
  transition: all var(--transition-fast);
}

.post-content a:hover {
  color: var(--primary-500);
  border-bottom-style: solid;
}

.post-footer {
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.post-tags {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.post-tag {
  font-size: 0.8rem;
  color: var(--gray-500);
  background: var(--gray-100);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-weight: 500;
}

.post-tag:hover {
  background: var(--primary-50);
  color: var(--primary-600);
}

.post-author-box {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-top: var(--space-2xl);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  border: 1px solid var(--gray-100);
}

.post-author-avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  flex-shrink: 0;
}

.post-author-info h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.post-author-info p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.neighborhood-links-container {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: var(--space-lg);
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.neighborhood-links-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--gray-400);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.neighborhood-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.neighborhood-links a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  transition: color var(--transition-fast);
}

.neighborhood-links a:hover {
  color: var(--primary-400);
}

@media (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .blog-cta-banner {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: var(--space-xl);
  }
  
  .blog-cta-banner .btn-white {
    width: 100%;
    justify-content: center;
  }
  
  .post-container {
    padding: var(--space-md) 0;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .post-featured-img {
    max-height: 280px;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
  }

  .post-content {
    font-size: 1rem;
    line-height: 1.75;
  }

  .post-content h2 {
    font-size: 1.45rem;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-xs);
  }

  .post-content h3 {
    font-size: 1.25rem;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-xs);
  }

  .blog-header {
    padding: calc(var(--header-height) + var(--space-xl) + var(--space-xs)) 0 var(--space-md) !important;
  }

  .blog-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-lg);
  }
}

/* --- Print Styles --- */
@media print {
  .header,
  .whatsapp-float,
  .btn-whatsapp,
  .product-cta {
    display: none !important;
  }

  body {
    color: black;
    background: white;
  }

  .hero {
    min-height: auto;
    background: white;
  }

  .hero-title,
  .section-title {
    color: black !important;
  }
}
