/* ==========================================================================
   CONSTRUTORA MONREAL - LUXURY INSTITUTIONAL DESIGN SYSTEM
   Brand Identity: White Predominance, Monreal Green (#7ba54e / #a6ce39), Graphite (#58595b)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Variables & Official Brand Tokens --- */
:root {
  /* Brand Official Colors */
  --color-monreal-green: #7ba54e;      /* Pantone 7489C */
  --color-monreal-lime: #a6ce39;       /* Pantone 375C */
  --color-monreal-graphite: #58595b;   /* Pantone Cool Gray 10C */
  --color-monreal-dark: #1e201b;       /* Dark Graphite for high contrast text */

  /* Background Palette - Predominantly White */
  --color-bg-light: #ffffff;
  --color-bg-subtle: #f8f9f6;
  --color-bg-alt: #f2f5ef;
  --color-bg-card: #ffffff;

  /* Typography Colors */
  --color-text-dark: #1e201b;
  --color-text-body: #42453f;
  --color-text-muted: #58595b;
  --color-text-light: #ffffff;
  --color-text-light-muted: #d0d5cc;

  /* Accent Mapping */
  --color-accent-primary: #7ba54e;
  --color-accent-hover: #a6ce39;
  --color-accent-subtle: rgba(123, 165, 78, 0.12);

  /* Fonts - 100% Sans-Serif */
  --font-editorial: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Glassmorphism Tokens (Light Aesthetic) */
  --glass-bg-light: rgba(255, 255, 255, 0.92);
  --glass-bg-card: rgba(255, 255, 255, 0.96);
  --glass-border-light: rgba(123, 165, 78, 0.2);
  --glass-blur: blur(20px);
  --glass-blur-sm: blur(10px);

  /* Shadows */
  --shadow-subtle: 0 10px 30px rgba(88, 89, 91, 0.05);
  --shadow-card: 0 15px 35px rgba(30, 32, 27, 0.06);
  --shadow-hover: 0 25px 50px rgba(123, 165, 78, 0.18);

  /* Transitions */
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
  background-color: var(--color-bg-light);
}

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

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

ul {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* --- Typography System --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-editorial);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-text-dark);
}

.heading-hero {
  font-size: clamp(2.5rem, 5vw + 1rem, 5.2rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--color-text-light);
}

.heading-section-lg {
  font-size: clamp(2.2rem, 4vw, 4rem);
  color: var(--color-text-dark);
}

.heading-subtitle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 700;
  color: var(--color-monreal-green);
  margin-bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.heading-subtitle::before {
  content: '';
  width: 24px;
  height: 2px;
  background-color: var(--color-monreal-green);
}

.text-lead {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--color-text-body);
  line-height: 1.8;
}

/* --- Container & Layout --- */
.container {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 7rem 0;
}

.section-padding-lg {
  padding: 10rem 0;
}

/* Section Themes - Predominantly White */
.bg-light {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
}

.bg-subtle {
  background-color: var(--color-bg-subtle);
  color: var(--color-text-dark);
}

.bg-alt {
  background-color: var(--color-bg-alt);
  color: var(--color-text-dark);
}

/* Subtle Dark accents reserved for contrast banners */
.bg-dark-accent {
  background-color: var(--color-monreal-dark);
  color: var(--color-text-light);
}

/* --- Ambient Kinetic Background Canvas --- */
#kinetic-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
  opacity: 0.25;
}

/* --- Header & Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 2rem 0;
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  padding: 1rem 0;
  background: var(--glass-bg-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border-light);
  box-shadow: 0 10px 30px rgba(88, 89, 91, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-logo img {
  height: 42px;
  width: auto;
  transition: var(--transition-smooth);
  object-fit: contain;
}

.site-header.scrolled .site-logo img {
  height: 36px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  padding: 0.4rem 0;
}

.site-header.scrolled .nav-link {
  color: var(--color-monreal-graphite);
}

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

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

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

/* Button System */
.btn-monreal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.95rem 2rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--color-monreal-green);
  color: #ffffff;
  border: 1px solid var(--color-monreal-green);
}

.btn-primary:hover {
  background-color: var(--color-monreal-lime);
  border-color: var(--color-monreal-lime);
  color: var(--color-monreal-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(166, 206, 57, 0.4);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-text-light);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: var(--glass-blur-sm);
}

.btn-outline-light:hover {
  background: #ffffff;
  color: var(--color-monreal-dark);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-monreal-graphite);
  border: 1px solid var(--color-monreal-graphite);
}

.btn-outline-dark:hover {
  background: var(--color-monreal-green);
  color: #ffffff;
  border-color: var(--color-monreal-green);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  cursor: pointer;
  z-index: 1010;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #ffffff;
  transition: var(--transition-fast);
}

.site-header.scrolled .menu-toggle span {
  background-color: var(--color-monreal-graphite);
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #11130f;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #11130f url('content/Hero.jpg') center/cover no-repeat;
}

.hero-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.05);
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
    rgba(17, 19, 15, 0.6) 0%, 
    rgba(17, 19, 15, 0.2) 50%, 
    rgba(17, 19, 15, 0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 860px;
  padding: 0 1.5rem;
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

/* Hero Center Bottom Tag */
.hero-bottom-center {
  position: absolute;
  bottom: 5.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.hero-center-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-center-tag .tag-diamond {
  font-size: 0.55rem;
  color: var(--color-monreal-lime);
}

/* Fixed Floating Pill Navigation (Bottom Center) */
.floating-pill-nav {
  position: fixed;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(18, 20, 18, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.55rem 1.6rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-pill-nav:hover {
  transform: translateX(-50%) scale(1.04);
  border-color: rgba(123, 165, 78, 0.6);
  box-shadow: 0 20px 45px rgba(123, 165, 78, 0.25);
}

.floating-pill-nav .pill-logo img {
  height: 22px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.floating-pill-nav .pill-current-page {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #ffffff;
  text-transform: uppercase;
  padding: 0 0.9rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.floating-pill-nav .pill-hamburger {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.floating-pill-nav:hover .pill-hamburger {
  color: var(--color-monreal-lime);
}

/* --- Popup Menu Modal --- */
.nav-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 17, 14, 0.94);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-popup-content {
  position: relative;
  width: 90%;
  max-width: 520px;
  background: rgba(28, 30, 26, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
  text-align: center;
  transform: scale(0.92) translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-popup-overlay.active .nav-popup-content {
  transform: scale(1) translateY(0);
}

.nav-popup-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.nav-popup-close:hover {
  background: var(--color-monreal-green);
  color: #ffffff;
}

.nav-popup-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.nav-popup-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-popup-subtitle {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-monreal-lime);
  font-weight: 600;
}

.nav-popup-links {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.nav-popup-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  transition: var(--transition-fast);
}

.nav-popup-links li a span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-monreal-lime);
}

.nav-popup-links li a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transform: translateX(4px);
}

.popup-cta-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 50px;
  background: rgba(123, 165, 78, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(166, 206, 57, 0.5);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.popup-cta-btn:hover {
  background: rgba(123, 165, 78, 0.65);
  border-color: rgba(166, 206, 57, 0.9);
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(123, 165, 78, 0.4);
  transform: translateY(-2px);
}

/* Hero Bottom Right Paragraph */
.hero-bottom-right {
  position: absolute;
  bottom: 5.8rem;
  right: 4rem;
  z-index: 3;
  max-width: 380px;
  text-align: left;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

@media (max-width: 1024px) {
  .hero-bottom-right {
    display: none;
  }
}

.scroll-line {
  width: 2px;
  height: 45px;
  background: linear-gradient(180deg, var(--color-monreal-lime) 0%, transparent 100%);
  animation: scrollLinePulse 2s infinite;
}

/* --- Section 2: Sobre a Monreal / Composição Editorial --- */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.editorial-image-wrapper {
  position: relative;
}

.editorial-img-main {
  width: 100%;
  height: auto;
  max-height: 660px;
  aspect-ratio: 682 / 874;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 2px;
  box-shadow: var(--shadow-card);
}

.editorial-img-badge {
  position: absolute;
  bottom: -2.5rem;
  right: -2rem;
  background: #ffffff;
  color: var(--color-text-dark);
  padding: 2.5rem;
  border-left: 4px solid var(--color-monreal-green);
  box-shadow: var(--shadow-hover);
  max-width: 320px;
}

.editorial-img-badge h4 {
  font-size: 2rem;
  color: var(--color-monreal-green);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.editorial-img-badge p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-monreal-graphite);
}

.editorial-content {
  padding-left: 1rem;
}

.editorial-quote {
  font-family: var(--font-editorial);
  font-size: 1.8rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--color-text-dark);
  margin: 2.5rem 0;
  padding-left: 1.8rem;
  border-left: 3px solid var(--color-monreal-green);
}

/* --- Section 3: Números & Diferenciais (White Theme) --- */
.metrics-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 4rem 0;
  border-top: 1px solid rgba(88, 89, 91, 0.12);
  border-bottom: 1px solid rgba(88, 89, 91, 0.12);
  margin-bottom: 6rem;
  background-color: var(--color-bg-light);
}

.metric-item {
  text-align: center;
  position: relative;
}

.metric-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(88, 89, 91, 0.15);
}

.metric-number {
  font-family: var(--font-editorial);
  font-size: 4.5rem;
  font-weight: 400;
  color: var(--color-monreal-green);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--color-monreal-graphite);
}

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

.differential-card {
  background: #ffffff;
  border: 1px solid rgba(123, 165, 78, 0.18);
  padding: 3.5rem 2.5rem;
  border-radius: 2px;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.differential-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-monreal-green);
  box-shadow: var(--shadow-hover);
}

.differential-icon {
  font-size: 2.2rem;
  color: var(--color-monreal-green);
  margin-bottom: 2rem;
}

.differential-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--color-text-dark);
}

.differential-card p {
  font-size: 0.92rem;
  color: var(--color-text-body);
  line-height: 1.7;
}

/* --- Section 4: Projetos em Destaque --- */
.portfolio-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.6rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--color-monreal-graphite);
  border-radius: 40px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
  color: #ffffff;
  border-color: var(--color-monreal-green);
  background-color: var(--color-monreal-green);
}

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

/* --- Projects Carousel Slider System --- */
.projects-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 1rem;
}

.projects-carousel-track-container {
  overflow: hidden;
  width: 100%;
  border-radius: 4px;
}

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

.projects-carousel-track .project-card {
  flex: 0 0 calc(50% - 1rem);
  min-width: calc(50% - 1rem);
}

@media (max-width: 992px) {
  .projects-carousel-track .project-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

.projects-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-bg-light);
  border: 1px solid rgba(123, 165, 78, 0.3);
  color: var(--color-monreal-dark);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(30, 32, 27, 0.15);
  transition: var(--transition-fast);
}

.projects-carousel-nav.prev {
  left: -20px;
}

.projects-carousel-nav.next {
  right: -20px;
}

.projects-carousel-nav:hover {
  background: var(--color-monreal-green);
  color: #ffffff;
  border-color: var(--color-monreal-green);
  box-shadow: 0 14px 32px rgba(123, 165, 78, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.projects-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.2rem;
}

.projects-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(88, 89, 91, 0.25);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.projects-carousel-dot.active {
  width: 32px;
  border-radius: 10px;
  background: var(--color-monreal-green);
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background-color: #ffffff;
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.project-media {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(30, 32, 27, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  transition: var(--transition-smooth);
}

.project-category {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-monreal-lime);
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.project-title {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.project-location {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.project-meta-glass {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  border: 1px solid var(--glass-border-light);
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--color-monreal-dark);
  opacity: 0;
  transform: translateY(-10px);
  transition: var(--transition-smooth);
}

.project-card:hover .project-meta-glass {
  opacity: 1;
  transform: translateY(0);
}

/* --- Section 5: Processo Construtivo --- */
.process-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.process-tabs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-tab-item {
  padding: 2rem;
  border-left: 3px solid rgba(88, 89, 91, 0.2);
  background: #ffffff;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.process-tab-item.active {
  border-left-color: var(--color-monreal-green);
  background: var(--color-bg-subtle);
  box-shadow: var(--shadow-subtle);
}

.process-tab-num {
  font-family: var(--font-editorial);
  font-size: 1.2rem;
  color: var(--color-monreal-green);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.process-tab-title {
  font-size: 1.4rem;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.process-tab-desc {
  font-size: 0.88rem;
  color: var(--color-text-body);
  line-height: 1.6;
}

.process-media-display {
  position: relative;
  height: 580px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.process-media-display img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

/* --- Section 6: Galeria Premium (Revista / Asymmetrical) --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  box-shadow: var(--shadow-subtle);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item.col-8 { grid-column: span 8; height: 480px; }
.gallery-item.col-4 { grid-column: span 4; height: 480px; }
.gallery-item.col-5 { grid-column: span 5; height: 520px; }
.gallery-item.col-7 { grid-column: span 7; height: 520px; }

/* --- Section 7: Linha do Tempo / Trajetória Monreal --- */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
}

.timeline-card {
  background: #ffffff;
  border: 1px solid rgba(123, 165, 78, 0.2);
  padding: 2.2rem 1.6rem;
  border-radius: 12px;
  position: relative;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-monreal-green);
  border-radius: 12px 12px 0 0;
  opacity: 0.6;
  transition: var(--transition-fast);
}

.timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(123, 165, 78, 0.15);
  border-color: var(--color-monreal-green);
}

.timeline-card:hover::before {
  opacity: 1;
  background: var(--color-monreal-lime);
}

.timeline-year {
  font-family: var(--font-sans);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-monreal-green);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.timeline-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--color-text-dark);
}

.timeline-desc {
  font-size: 0.88rem;
  color: var(--color-text-body);
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .timeline-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .timeline-grid {
    grid-template-columns: repeat(1, 1fr);
    max-width: 440px;
    margin: 0 auto;
  }
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--color-text-body);
  line-height: 1.7;
}

/* --- Section 8: Casa Vogue & Imprensa (White Editorial Card) --- */
.vogue-editorial-banner {
  background: #ffffff;
  border: 1px solid rgba(123, 165, 78, 0.25);
  padding: 5rem;
  border-radius: 2px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  box-shadow: var(--shadow-card);
}

.vogue-badge-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.vogue-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  color: var(--color-monreal-green);
  font-weight: 700;
  text-transform: uppercase;
}

.vogue-quote {
  font-family: var(--font-editorial);
  font-size: 2.2rem;
  line-height: 1.3;
  color: var(--color-text-dark);
  margin-bottom: 2rem;
}

.vogue-img-side {
  height: 460px;
  width: 100%;
  object-fit: cover;
  object-position: center 85%;
  border-radius: 2px;
  box-shadow: var(--shadow-subtle);
}

/* --- Section 9: Depoimentos Exclusivos --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.testimonial-card {
  background: var(--color-bg-light);
  border: 1px solid rgba(123, 165, 78, 0.18);
  padding: 3.5rem 2.5rem;
  box-shadow: var(--shadow-subtle);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-monreal-green);
}

.testimonial-quote {
  font-family: var(--font-editorial);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--color-text-dark);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-monreal-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid var(--color-monreal-green);
}

.author-info h5 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.author-info p {
  font-size: 0.75rem;
  color: var(--color-monreal-graphite);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- Section 10: Mapa de Atuação em Curitiba (Google Maps) --- */
.gmaps-interactive-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gmaps-nav-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.gmaps-nav-btn {
  background: #ffffff;
  color: var(--color-text-dark);
  border: 1px solid rgba(123, 165, 78, 0.3);
  padding: 0.65rem 1.4rem;
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-subtle);
  outline: none;
}

.gmaps-nav-btn i {
  color: var(--color-monreal-green);
  transition: color 0.3s ease;
}

.gmaps-nav-btn:hover, .gmaps-nav-btn.active {
  background: var(--color-monreal-green);
  color: #ffffff;
  border-color: var(--color-monreal-lime);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(123, 165, 78, 0.3);
}

.gmaps-nav-btn:hover i, .gmaps-nav-btn.active i {
  color: #ffffff;
}

.gmaps-frame-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(30, 32, 27, 0.12);
  border: 1px solid rgba(123, 165, 78, 0.25);
  background: #e5e3df;
}

.gmaps-frame-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.gmaps-detail-panel {
  background: #ffffff;
  border: 1px solid rgba(123, 165, 78, 0.25);
  border-radius: 8px;
  padding: 1.8rem 2.2rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: var(--transition-smooth);
}

.gmaps-panel-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.gmaps-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-monreal-green);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.gmaps-panel-header h3 {
  font-family: var(--font-editorial);
  font-size: 1.6rem;
  color: var(--color-text-dark);
}

.gmaps-detail-panel p {
  font-size: 0.95rem;
  color: var(--color-text-body);
  line-height: 1.65;
  margin: 0;
}

.btn-gmaps-open {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-monreal-green);
  margin-top: 0.5rem;
  transition: var(--transition-fast);
}

.btn-gmaps-open:hover {
  color: var(--color-monreal-lime);
  gap: 0.8rem;
}
  transition: all 0.3s ease;
  pointer-events: none;
}

/* --- Section 11: Contato --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
}

.contact-form-container {
  background: #ffffff;
  border: 1px solid rgba(123, 165, 78, 0.2);
  padding: 4rem 3.5rem;
  border-radius: 2px;
  box-shadow: var(--shadow-card);
}

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

.form-group label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--color-monreal-graphite);
  margin-bottom: 0.6rem;
}

.form-control {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--color-bg-subtle);
  border: 1px solid rgba(88, 89, 91, 0.2);
  border-radius: 2px;
  color: var(--color-text-dark);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-monreal-green);
  background: #ffffff;
}

/* --- Floating Concierge WhatsApp --- */
.floating-whatsapp {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--color-monreal-green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 30px rgba(123, 165, 78, 0.4);
  transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  background: var(--color-monreal-lime);
  color: var(--color-monreal-dark);
}

/* --- Footer --- */
.site-footer {
  background-color: var(--color-bg-subtle);
  color: var(--color-text-dark);
  padding: 6rem 0 3rem 0;
  border-top: 1px solid rgba(123, 165, 78, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 2rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--color-text-body);
  max-width: 320px;
  line-height: 1.7;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--color-monreal-green);
  margin-bottom: 1.8rem;
}

.footer-links li {
  margin-bottom: 0.9rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--color-monreal-graphite);
}

.footer-links a:hover {
  color: var(--color-monreal-green);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(88, 89, 91, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--color-monreal-graphite);
}

/* --- Quick View Modal & Lightbox --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 32, 27, 0.88);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: #ffffff;
  border: 1px solid var(--color-monreal-green);
  width: 90%;
  max-width: 960px;
  border-radius: 2px;
  padding: 3.5rem;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.8rem;
  color: var(--color-text-dark);
  cursor: pointer;
}

/* --- Keyframe Animations --- */
@keyframes scrollLinePulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes pulsePin {
  0% { box-shadow: 0 0 0 0 rgba(123, 165, 78, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(123, 165, 78, 0); }
  100% { box-shadow: 0 0 0 0 rgba(123, 165, 78, 0); }
}

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

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .editorial-grid, .process-wrapper, .vogue-editorial-banner, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .metric-item:nth-child(2)::after { display: none; }
  .differentials-grid, .portfolio-grid, .testimonials-grid { grid-template-columns: 1fr; }

  .gallery-item.col-8, .gallery-item.col-4, .gallery-item.col-5, .gallery-item.col-7 {
    grid-column: span 12;
    height: 380px;
  }

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

@media (max-width: 768px) {
  .nav-links, .header-actions { display: none; }
  .menu-toggle { display: flex; }
  .heading-hero { font-size: 2.4rem; }
  .metrics-banner { grid-template-columns: 1fr; }
  .metric-item::after { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* --- Project Repository Gallery Modal --- */
.project-card {
  cursor: pointer;
}

.project-view-btn {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.2rem;
  background: rgba(123, 165, 78, 0.9);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 40px;
  backdrop-filter: blur(8px);
  transition: var(--transition-fast);
}

.project-card:hover .project-view-btn {
  background: var(--color-monreal-lime);
  color: var(--color-monreal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(166, 206, 57, 0.4);
}

.project-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20, 22, 18, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  padding: 2rem;
}

.project-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.project-modal-dialog {
  background: #ffffff;
  width: 100%;
  max-width: 1100px;
  border-radius: 4px;
  padding: 2.5rem 3rem;
  position: relative;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(123, 165, 78, 0.3);
}

.project-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--color-text-dark);
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition-fast);
  z-index: 10;
}

.project-modal-close:hover {
  color: var(--color-monreal-green);
  transform: scale(1.1);
}

.project-modal-header {
  margin-bottom: 1.8rem;
}

.project-modal-tags {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.project-modal-badge {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--color-monreal-green);
  background: rgba(123, 165, 78, 0.12);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.project-modal-photos-count {
  font-size: 0.75rem;
  color: var(--color-monreal-graphite);
  font-weight: 600;
}

.project-modal-title {
  font-family: var(--font-editorial);
  font-size: 2.2rem;
  color: var(--color-text-dark);
  line-height: 1.2;
}

.project-modal-location {
  font-size: 0.88rem;
  color: var(--color-monreal-graphite);
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.project-modal-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow: hidden;
}

.project-viewer-container {
  position: relative;
  width: 100%;
  height: 520px;
  background: var(--color-bg-subtle);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(123, 165, 78, 0.15);
}

.project-main-photo-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-main-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  transition: opacity 0.3s ease;
}

.project-photo-counter-tag {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  background: rgba(30, 32, 27, 0.85);
  color: #ffffff;
  padding: 0.4rem 1.1rem;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.project-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-text-dark);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 5;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.project-nav-btn.prev { left: 1.2rem; }
.project-nav-btn.next { right: 1.2rem; }

.project-nav-btn:hover {
  background: var(--color-monreal-green);
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.project-thumbs-container {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.project-thumbs-track {
  display: flex;
  gap: 0.8rem;
}

.project-thumb-item {
  width: 84px;
  height: 60px;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.55;
  flex-shrink: 0;
  border: 2px solid transparent;
  transition: var(--transition-fast);
}

.project-thumb-item.active, .project-thumb-item:hover {
  opacity: 1;
  border-color: var(--color-monreal-green);
  transform: translateY(-2px);
}

.project-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .project-modal-dialog { padding: 1.8rem; }
  .project-viewer-container { height: 320px; }
  .project-modal-title { font-size: 1.5rem; }
}

/* --- Blog & Media Section System --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  background: var(--color-bg-card);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(88, 89, 91, 0.08);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-monreal-green);
}

.blog-media {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--color-monreal-dark);
}

.blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.blog-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  backdrop-filter: blur(8px);
}

.badge-youtube {
  background: rgba(225, 29, 72, 0.9);
}

.badge-archdaily {
  background: rgba(30, 41, 59, 0.9);
}

.badge-vogue {
  background: rgba(123, 165, 78, 0.9);
}

.blog-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-monreal-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: var(--transition-fast);
  z-index: 2;
  cursor: pointer;
}

.blog-card:hover .blog-play-btn {
  background: var(--color-monreal-green);
  color: #ffffff;
  transform: translate(-50%, -50%) scale(1.15);
}

.blog-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-title {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-text-dark);
  line-height: 1.35;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
  color: var(--color-monreal-green);
}

.blog-excerpt {
  font-size: 0.92rem;
  color: var(--color-text-body);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-monreal-green);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.blog-link:hover {
  color: var(--color-monreal-lime);
  gap: 0.8rem;
}

/* --- Video Lightbox Modal --- */
.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18, 20, 16, 0.95);
  backdrop-filter: blur(15px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.video-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-container {
  position: relative;
  width: 90%;
  max-width: 960px;
  background: #000000;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  border: 1px solid rgba(123, 165, 78, 0.3);
}

.video-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: #ffffff;
  font-size: 2.2rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition-fast);
  z-index: 10;
}

.video-modal-close:hover {
  color: var(--color-monreal-lime);
  transform: scale(1.2);
}

.video-iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --- Individual SEO Article Page System --- */
.article-page-header {
  padding-top: 9rem;
  padding-bottom: 3.5rem;
  background: var(--color-bg-subtle);
  border-bottom: 1px solid rgba(88,89,91,0.08);
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.article-breadcrumb a {
  color: var(--color-monreal-green);
}

.article-breadcrumb a:hover {
  color: var(--color-monreal-lime);
}

.article-main-wrapper {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.article-title-single {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}

.article-meta-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(88,89,91,0.12);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-hero-media {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-card);
}

.article-hero-media img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.article-body-content {
  font-size: 1.12rem;
  line-height: 1.85;
  color: var(--color-text-body);
}

.article-body-content p {
  margin-bottom: 1.8rem;
}

.article-body-content h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-text-dark);
}

.article-body-content h3 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: var(--color-text-dark);
}

.article-quote-box {
  background: var(--color-bg-subtle);
  border-left: 4px solid var(--color-monreal-green);
  padding: 2rem;
  margin: 2.5rem 0;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--color-text-dark);
  border-radius: 0 4px 4px 0;
}

.article-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 4px;
  margin: 2.5rem 0;
  box-shadow: var(--shadow-card);
}

.article-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.article-cta-box {
  background: linear-gradient(135deg, #1e201b 0%, #2d3029 100%);
  color: #ffffff;
  padding: 3rem 2.5rem;
  border-radius: 4px;
  margin-top: 4rem;
  text-align: center;
}

.article-cta-box h3 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.article-cta-box p {
  color: var(--color-text-light-muted);
  max-width: 600px;
  margin: 0 auto 2rem auto;
  font-size: 1.05rem;
}

/* --- FAQ Accordion Section --- */
.faq-grid {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid rgba(88, 89, 91, 0.12);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--color-monreal-green);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 1.8rem;
  text-align: left;
  font-family: var(--font-editorial);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
}

.faq-question i {
  color: var(--color-monreal-green);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.8rem;
  color: var(--color-text-body);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.8rem 1.5rem 1.8rem;
}

/* Accessibility Skip Link */
.skip-to-content-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--color-monreal-green);
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  z-index: 100000;
  font-weight: 700;
  border-radius: 4px;
  transition: top 0.3s ease;
}

.skip-to-content-link:focus {
  top: 1rem;
}

/* --- Reconhecimento Internacional / A' Design Award --- */
.badge-award {
  background: linear-gradient(135deg, #2c3028 0%, #1e201b 100%);
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.award-highlight-section {
  background: linear-gradient(135deg, #181a17 0%, #232721 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(123, 165, 78, 0.2);
  border-bottom: 1px solid rgba(123, 165, 78, 0.2);
}

.award-highlight-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(123, 165, 78, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.award-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.award-media-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.award-media-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.award-media-wrapper:hover img {
  transform: scale(1.03);
}

.award-seal-floating {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(24, 26, 23, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.award-seal-floating img {
  width: 65px;
  height: auto;
}

.award-seal-info {
  display: flex;
  flex-direction: column;
}

.award-seal-title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4af37;
}

.award-seal-sub {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
}

.award-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.12);
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 1.5rem;
}

.award-content h2 {
  color: #ffffff;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.award-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.award-location-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.4rem;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #d4af37;
  border-radius: 0 4px 4px 0;
  margin-bottom: 2.2rem;
}

.award-location-pill i {
  color: #d4af37;
  font-size: 1.2rem;
}

.award-location-pill span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {
  .award-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .award-content h2 {
    font-size: 2rem;
  }
}

/* --- Destaque Casa Vogue / Imprensa Nacional --- */
.vogue-highlight-section {
  background: var(--color-bg-light);
  border-top: 1px solid rgba(123, 165, 78, 0.15);
  border-bottom: 1px solid rgba(123, 165, 78, 0.15);
  position: relative;
}

.vogue-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.vogue-media-container {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.vogue-media-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.vogue-media-container:hover img {
  transform: scale(1.025);
}

.vogue-floating-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(30, 32, 27, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.7rem 1.3rem;
  border-radius: 4px;
  border: 1px solid rgba(123, 165, 78, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.vogue-floating-badge i {
  color: var(--color-monreal-lime);
  font-size: 1.1rem;
}

.vogue-floating-badge span {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.badge-vogue-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(123, 165, 78, 0.12);
  color: var(--color-monreal-green);
  border: 1px solid rgba(123, 165, 78, 0.3);
  margin-bottom: 1.5rem;
}

.vogue-stats-pill {
  display: flex;
  gap: 2rem;
  padding: 1.2rem 1.8rem;
  background: var(--color-bg-subtle);
  border-radius: 4px;
  border: 1px solid rgba(88, 89, 91, 0.12);
  margin-bottom: 2rem;
}

.vogue-stat-item h4 {
  font-family: var(--font-editorial);
  font-size: 1.6rem;
  color: var(--color-text-dark);
  margin-bottom: 0.2rem;
}

.vogue-stat-item p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-monreal-graphite);
  margin: 0;
}

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

/* ==========================================
   SECTION: DEPOIMENTOS DE ARQUITETOS
   ========================================== */
.testimonials-section {
  position: relative;
}

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

.testimonial-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(88, 89, 91, 0.12);
  border-radius: 8px;
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-subtle);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: rgba(123, 165, 78, 0.35);
}

.testimonial-quote-icon {
  font-size: 2rem;
  color: var(--color-monreal-green);
  opacity: 0.35;
  margin-bottom: 1.2rem;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--color-text-body);
  font-style: italic;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.testimonial-author-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(88, 89, 91, 0.1);
}

.testimonial-avatar-initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(123, 165, 78, 0.12);
  color: var(--color-monreal-green);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(123, 165, 78, 0.25);
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
}

.testimonial-author-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text-dark);
  line-height: 1.3;
}

.testimonial-author-role {
  font-size: 0.82rem;
  color: var(--color-monreal-graphite);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}

/* --- Leaflet Map Pins & Popups Styling --- */
.custom-monreal-pin-wrapper {
  background: transparent !important;
  border: none !important;
}

.custom-monreal-pin {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-monreal-pin .pin-body {
  background: var(--color-monreal-dark, #1e201b);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  border: 2px solid var(--color-monreal-green, #7ba54e);
  white-space: nowrap;
  transition: all 0.25s ease;
  cursor: pointer;
}

.custom-monreal-pin .pin-body i {
  color: var(--color-monreal-lime, #a6ce39);
  font-size: 0.9rem;
}

.custom-monreal-pin:hover .pin-body {
  transform: translateY(-3px) scale(1.08);
  background: var(--color-monreal-green, #7ba54e);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(123, 165, 78, 0.4);
}

.custom-monreal-pin:hover .pin-body i {
  color: #ffffff;
}

.leaflet-popup-content-wrapper {
  background: var(--color-monreal-dark, #1e201b) !important;
  color: #ffffff !important;
  border-radius: 12px !important;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35) !important;
  padding: 8px 12px !important;
  border: 1px solid rgba(123, 165, 78, 0.3);
}

.leaflet-popup-tip {
  background: var(--color-monreal-dark, #1e201b) !important;
}

.monreal-map-popup-title {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-monreal-lime, #a6ce39);
  margin-bottom: 4px;
}

.monreal-map-popup-sub {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: #d0d5cc;
  line-height: 1.4;
}






